Search Header Logo

Unit 5 quiz code.org

Authored by HANNAH CHU

Computers

9th Grade - University

Used 104+ times

Unit 5 quiz code.org
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

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)

(a)  

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);

}

(a)  

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);

(a)  

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

(a)  

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.")

(a)  

Access all questions and much more by creating a free account

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

Already have an account?