Dec 9- What's wrong with this code?

Dec 9- What's wrong with this code?

6th - 8th Grade

5 Qs

quiz-placeholder

Similar activities

Karel and JavaScript Drill

Karel and JavaScript Drill

8th Grade

5 Qs

CS Day 39

CS Day 39

6th Grade - University

10 Qs

Vex VR Unit 3

Vex VR Unit 3

5th - 8th Grade

10 Qs

More Basic Karel

More Basic Karel

6th Grade

10 Qs

Forloops Drill

Forloops Drill

6th - 8th Grade

7 Qs

Karel Commands: Mastering the Basics

Karel Commands: Mastering the Basics

8th Grade

3 Qs

Karel and JavaScript Basics Quiz

Karel and JavaScript Basics Quiz

8th Grade - University

1 Qs

Algorithms

Algorithms

7th - 8th Grade

10 Qs

Dec 9- What's wrong with this code?

Dec 9- What's wrong with this code?

Assessment

Quiz

Computers

6th - 8th Grade

Medium

Created by

Stephanie Kimbrough

Used 7+ times

FREE Resource

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.