Coding Karel 1

Coding Karel 1

KG - University

6 Qs

quiz-placeholder

Similar activities

CS Day 40

CS Day 40

KG - University

10 Qs

Karel Review 1.1-1.4

Karel Review 1.1-1.4

6th - 7th Grade

10 Qs

Unit 2 Knowledge Test Make Up

Unit 2 Knowledge Test Make Up

9th - 12th Grade

11 Qs

Karel If Statement

Karel If Statement

9th - 12th Grade

11 Qs

If Then Statements

If Then Statements

9th - 12th Grade

11 Qs

Functions

Functions

6th - 8th Grade

11 Qs

CSF 2.2

CSF 2.2

9th Grade - University

8 Qs

Coding Review

Coding Review

9th - 10th 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