Dec 9- What's wrong with this code?

Dec 9- What's wrong with this code?

Assessment

Quiz

Created by

Stephanie Kimbrough

Computers

6th - 8th Grade

7 plays

Medium

Student preview

quiz-placeholder

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is wrong with the program?


function start()}

move();

buildTower();

comeDown();

move();

move();

buildTower();

move();

turnRight();

}

The curly bracket is turned the

The m in move should be capitolized.

The t in tower should be lower case

The word function spelled wrong.

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What's wrong with this program?


// Has karel come down from the top of the tower.

Precondition: Karel is facing north

// Postcondition: Karel is facing east at the bottom of the tower

function comeDown(){

turnAround();

move();

move();

turnLeft();

}

The d comeDown in down should be lower case.

The comment doesn't have the back slashes.

The a in turnAround should be lower case.

The m in move should be upper case.

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What type of program is this?


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

move();

}

If Statement

If/Else Statement

Loop

While True Loops

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

"This is not correct syntax or syntax error," means what?

The solution is not correct.

The number(s) used are inccorect.

The symbol(s) used are incorrect.

The word(s) used are incorrect.

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

This function should have Karel in both worlds facing...


function start() {

if (facingNorth()) {

makeRightSquare();

} else {

makeLeftSquare();

}

}


function makeRightSquare() {

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

putBall();

move();

turnRight();

}

}


function makeLeftSquare() {

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

putBall();

move();

turnLeft();

}

}

North

Right

Left

The same direction.