Karel Programming

Karel Programming

9th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

Problem Solving

Problem Solving

9th - 12th Grade

11 Qs

Javascript Part 1

Javascript Part 1

10th Grade

10 Qs

Gogga Gogga on the Grid

Gogga Gogga on the Grid

10th Grade

7 Qs

Coding Review

Coding Review

9th - 10th Grade

10 Qs

Unit 2 Knowledge Test Make Up

Unit 2 Knowledge Test Make Up

9th - 12th Grade

11 Qs

AP CSP Worksheet 2

AP CSP Worksheet 2

9th - 12th Grade

10 Qs

AP CSP Worksheet 1

AP CSP Worksheet 1

9th - 12th Grade

10 Qs

untitled

untitled

9th - 12th Grade

11 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?
/
//
///
////