Programming with Karel Flashcard

Programming with Karel Flashcard

Assessment

Flashcard

Computers

9th - 12th Grade

Practice Problem

Hard

Created by

r norman

Used 1+ times

FREE Resource

Student preview

quiz-placeholder

23 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Which of the following commands is a valid Karel command? Options: move, move;, move();, move()

Back

move();

2.

FLASHCARD QUESTION

Front

Why is the following command an invalid Karel command? turnleft();

Back

The l should be a capital L

3.

FLASHCARD QUESTION

Front

What is the correct way to define a turnRight function in Karel?

Back

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

4.

FLASHCARD QUESTION

Front

Why do we use functions in Karel programs?

Back

All of the above

5.

FLASHCARD QUESTION

Front

If Karel starts at Row 1 and Column 1, facing East, where will Karel be, and what direction will Karel be facing after running the following code? (Assume the world is 10x10 in size) move(); turnLeft(); putBall(); turnLeft(); turnLeft(); turnLeft(); move(); turnLeft();

Back

Row 1, Column 3, Facing North

6.

FLASHCARD QUESTION

Front

Karel starts at Row 1, Column 1, facing East. After calling the stairStep function twice, where will Karel be and what direction will Karel be facing?

Back

Row 3, Column 3, Facing East

7.

FLASHCARD QUESTION

Front

In this code, how many times is the dance function called and how many times is it defined? function main() { move(); dance(); move(); move(); turnLeft(); dance(); dance(); } function dance() { turnLeft(); move(); turnLeft(); turnLeft(); move(); turnLeft(); } main();

Back

Called 3 times, defined 1 time

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?