Coding Karel 1

Coding Karel 1

KG - University

6 Qs

quiz-placeholder

Similar activities

If statements DRILL

If statements DRILL

8th Grade

5 Qs

AP CSP Worksheet 1

AP CSP Worksheet 1

9th - 12th Grade

10 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

Karel Programming

Karel Programming

9th - 12th Grade

6 Qs

untitled

untitled

9th - 12th Grade

11 Qs

Робот Карел 01

Робот Карел 01

6th - 7th Grade

10 Qs

Coding Karel 1

Coding Karel 1

Assessment

Quiz

Computers

KG - University

Medium

Used 31+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What command will place a ball down in a spot?
placeBall();
Putball();
putball():
putBall();

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a street in a Karel world??
A row.
A column.
A single point.
Karel's position.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an avenue in a Karel world ?
A row.
Karel's position.
A column.
A single point. 

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If Karel is facing North and the code
turnLeft(); 
turnLeft();
turnLeft();
runs; which direction is Karel facing now?
North
East
South
West