CodeHS Intro to Programming - Karel Review

CodeHS Intro to Programming - Karel Review

7th Grade

10 Qs

quiz-placeholder

Similar activities

Edison robot

Edison robot

6th - 7th Grade

15 Qs

JavaScript with CodeCombat

JavaScript with CodeCombat

7th - 8th Grade

12 Qs

Code Combat JavaScript Quiz

Code Combat JavaScript Quiz

4th - 8th Grade

13 Qs

CodeMonkey 0-35 Review

CodeMonkey 0-35 Review

5th - 8th Grade

14 Qs

CodeHS Lesson 1

CodeHS Lesson 1

6th - 7th Grade

15 Qs

Forloops Drill

Forloops Drill

6th - 8th Grade

7 Qs

If statements

If statements

6th - 8th Grade

7 Qs

SCRATCH

SCRATCH

4th - 8th Grade

10 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?