Programming with Karel Quiz

Programming with Karel Quiz

9th - 12th Grade

23 Qs

quiz-placeholder

Similar activities

Karel Programming

Karel Programming

6th - 9th Grade

25 Qs

Karel the Dog Code Quiz

Karel the Dog Code Quiz

9th - 12th Grade

25 Qs

Code HS 3.19 Intro to Programming w/Karel

Code HS 3.19 Intro to Programming w/Karel

9th - 12th Grade

25 Qs

AP CSP Standard 1 Review

AP CSP Standard 1 Review

12th Grade

26 Qs

CodeHS unit 1 Quiz

CodeHS unit 1 Quiz

10th Grade

25 Qs

Karel CodeHS Top Down Design

Karel CodeHS Top Down Design

7th - 12th Grade

25 Qs

Programming with Karel Quiz

Programming with Karel Quiz

6th - 9th Grade

25 Qs

Karel the Dog Review

Karel the Dog Review

9th - 12th Grade

20 Qs

Programming with Karel Quiz

Programming with Karel Quiz

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Bethany Thomas

Used 18+ times

FREE Resource

23 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following commands is a valid Karel command?

move

move;

move();

move()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why is the following command an invalid Karel command?

turnleft();

It should end in a colon rather than a semicolon

The l should be a capital L

It should start with a capital T

This command is correct

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 the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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();

Row 3, Column 1, Facing North

Row 1, Column 4, Facing North

Row 1, Column 3, Facing South

Row 1, Column 3, Facing North

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Karel starts at Row 1 and Column 1, facing East. After calling the stairStep function twice, where will Karel be and what direction will Karel be facing? (assume this is a SuperKarel program and the world is 10x10 in size)

function stairStep() {

move();

turnLeft();

move();

turnRight();

}

Row 2, Column 2, Facing North

Row 3, Column 3, Facing East

Row 3, Column 3, Facing West

Row 4, Column 4, Facing East

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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();

Called 1 time, defined 1 time

Called 1 time, defined 3 times

Called 3 times, defined 1 time

Called 3 times, defined 3 times

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?