CodeHS Intro to Programming - Karel Review

CodeHS Intro to Programming - Karel Review

7th Grade

10 Qs

quiz-placeholder

Similar activities

Functions

Functions

6th - 8th Grade

11 Qs

Unit 3 AppLab

Unit 3 AppLab

7th - 12th Grade

9 Qs

Sequencing & Iteration

Sequencing & Iteration

4th - 8th Grade

13 Qs

Interactive Animations and Games from code.org

Interactive Animations and Games from code.org

7th - 12th Grade

14 Qs

MineCraft

MineCraft

7th Grade

10 Qs

Karel Unit 2 Review

Karel Unit 2 Review

7th - 9th Grade

10 Qs

Karel Review 1.1-1.4

Karel Review 1.1-1.4

6th - 7th Grade

10 Qs

Programming with Karel the Dog 2

Programming with Karel the Dog 2

6th - 9th Grade

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