CodeHS Intro to Programming - Karel Review

CodeHS Intro to Programming - Karel Review

7th Grade

10 Qs

quiz-placeholder

Similar activities

CodeHS Lesson 1

CodeHS Lesson 1

6th - 7th Grade

15 Qs

Java year 7 (Karel the dog)

Java year 7 (Karel the dog)

7th - 8th Grade

10 Qs

Hour of Code ESL

Hour of Code ESL

6th - 8th Grade

14 Qs

CodeHS - Java - Karel (Sec 1-3)

CodeHS - Java - Karel (Sec 1-3)

7th - 10th Grade

15 Qs

Code.org: Express Course -> Lesson 1 and 2

Code.org: Express Course -> Lesson 1 and 2

5th - 7th Grade

13 Qs

CodeMonkey Coding Vocabulary

CodeMonkey Coding Vocabulary

3rd - 7th Grade

12 Qs

CodeHS Quiz

CodeHS Quiz

7th Grade

15 Qs

If statements

If statements

6th - 8th Grade

7 Qs

CodeHS Intro to Programming - Karel Review

CodeHS Intro to Programming - Karel Review

Assessment

Quiz

Computers

7th Grade

Easy

Created by

Stacy Bennett

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following commands is a valid Karel command?

turnLeft

turnLeft;

turnLeft();

turnLeft()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What makes this command invalid (incorrect)?

Move();

This command is correct.

It has a capital M.

It has ()

It should be a colon : not a semi colon ;

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to define a turnRight function in Karel?

function turnRight() { turnLeft(); turnLeft(); turnLeft();

}

function turnRight() { turnRight(); turnRight(); turnRight();

}

function turnRight { turnLeft(); turnLeft(); turnLeft();

}

turnRight function() { turnLeft(); turnLeft(); turnLeft();

}

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why do we use functions in Karel programs?

Break down our program into smaller parts

Avoid repeating code

Make our program more readable

All of these!

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many total times will Karel move in this program?

function start() { move(); for (var i = 0; i < 5; i++) { move(); putBall(); } }

1

5

6

7

6.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

What is wrong with this for loop?

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

The for loop uses commas instead of semicolons

It should say i++ instead of i + 1

Nothing is wrong with this loop

The "var" should not be there.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can we teach Karel new commands?

For loop

While loop

Define a new function

The start function

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?