Data

Data

9th Grade - University

11 Qs

quiz-placeholder

Similar activities

Week 3

Week 3

University

11 Qs

Kapasitas Kanal Komunikasi

Kapasitas Kanal Komunikasi

1st - 10th Grade

13 Qs

Principles of Networking

Principles of Networking

11th Grade

10 Qs

Spreadsheet Window Basics

Spreadsheet Window Basics

10th Grade

13 Qs

Test- zaj. komp - klasa 4

Test- zaj. komp - klasa 4

KG - University

14 Qs

Testing Software

Testing Software

9th - 12th Grade

9 Qs

Subnetting Kelas 11

Subnetting Kelas 11

11th Grade

10 Qs

MODULE 8 PRE TEST

MODULE 8 PRE TEST

10th Grade

10 Qs

Data

Data

Assessment

Quiz

Computers

9th Grade - University

Hard

Created by

Thomas Martinez

FREE Resource

11 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A school is developing a program to keep track of information about students and their class schedules. In which of the following instances would a data abstraction be most helpful?

The program includes individual variables to store the names of each student rather than a single list of students.

A program includes repeated code that could be moved inside a function.

A program includes multiple comments that could be combined into a single comment

A program includes repeated programming statements that could be moved inside a loop

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What will be displayed when this program finishes running?

var numbersList = [20, 10, 5]

appendItem(numbersList, 50)

appendItem(numbersList,100)

removeItem(numbersList,1)

insertItem(numbersList, 0, 30)

console.log(numbersList.length)

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What will be displayed after the program?

for(var i = 0; i < 4; i++){

console.log(i);

}

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What will the following program display in the console?

var sum = 0;

for(var i = 0; i < 5; i++){

sum = sum + i;

}

console.log(sum);

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image
Media Image
Media Image
Media Image
Media Image

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

A program is designed to determine the minimum value in a list of positive numbers called numList. The following program was written

var minimum = <MISSING CODE>

for(var i = 0; i < numList.length; i++){

if (numList[i] < minimum){

minimum = numList[i];

}

}

console.log("The minimum is" + minimum);

Fill in the missing code

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

A restaurant knows from historical data that 60 out of 100 of its customers purchase a full meal while 40 out of 100 only order a side dish. The program below is intended to simulate the orders of 1000 customers.

fullMeal 0

sideDish 0

REPEAT 1000 TIMES{

IF (<MISSING CODE>)

{ fullMeal fullMeal + 1}

ELSE { sideDish sideDish + 1 }}

DISPLAY (fullMeal)

DISPLAY ("full meals were ordered,")

DISPLAY (sideDish)

DISPLAY ("side dishes were ordered.")

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?