CodeHS Intro to Programming - Karel Review

CodeHS Intro to Programming - Karel Review

7th Grade

10 Qs

quiz-placeholder

Similar activities

FOR LOOPS and Angles with Tracy (PYTHON)

FOR LOOPS and Angles with Tracy (PYTHON)

7th - 8th Grade

10 Qs

Code.org Quiz

Code.org Quiz

7th Grade

10 Qs

1.1 Creating a Sprite, making it function

1.1 Creating a Sprite, making it function

7th Grade

12 Qs

Robotics Fall Semester Test

Robotics Fall Semester Test

6th - 8th Grade

10 Qs

Activity 23: Conditionals Quiz

Activity 23: Conditionals Quiz

6th - 8th Grade

12 Qs

S1 code.org Assessment

S1 code.org Assessment

7th Grade

12 Qs

Робот Карел 01

Робот Карел 01

6th - 7th Grade

10 Qs

Karel Unit 1 & 2 Review

Karel Unit 1 & 2 Review

6th - 8th Grade

15 Qs

CodeHS Intro to Programming - Karel Review

CodeHS Intro to Programming - Karel Review

Assessment

Quiz

Computers

7th Grade

Medium

Created by

Stacy Bennett

Used 6+ 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?