Karel Programming

Karel Programming

9th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

Programming with Karel

Programming with Karel

9th - 12th Grade

9 Qs

Karel Adventures

Karel Adventures

9th - 12th Grade

10 Qs

Karel Commands

Karel Commands

9th - 12th Grade

10 Qs

Karel Quiz Review

Karel Quiz Review

9th - 12th Grade

8 Qs

Karel Quiz Week 10/16

Karel Quiz Week 10/16

10th - 12th Grade

10 Qs

Karel commands

Karel commands

10th Grade

11 Qs

CodeHS 2.11 If Statements

CodeHS 2.11 If Statements

9th - 12th Grade

10 Qs

Karel Quizzes 1-5 (Command - Start)

Karel Quizzes 1-5 (Command - Start)

9th - 12th Grade

10 Qs

Karel Programming

Karel Programming

Assessment

Quiz

Computers

9th - 12th Grade

Easy

Used 45+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of these is a valid Java Karel command?
move();
move;
move()
move(1);

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

If Karel starts at Street 1 and Avenue 3 facing East, what row and column will Karel be on after this code runs?
move();
move();
move();
turnLeft();
move();
Street 2 and Avenue 6
Street 2 and Avenue 4
Street 3 and Avenue 3
Street 1 and Avenue 3

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

If Karel is facing North and the code
turnLeft();
turnLeft();
turnLeft();
turnLeft();
turnLeft();
West
East
North
South

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the run method in a Java program with Karel?
A method that always makes Karel move in a square.
The method that is called just before the program ends.
The method that is called to start a Karel program.
The method that is called in order to move Karel one space forward or backward.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why can't we use
turnRight();
for Karel to turn right immediately?
She does not know the command.
It should be turnright();
It should be TurnRight();

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following can be used to comment in the code?
/
//
///
////