CodeHS Lessons 1-5

CodeHS Lessons 1-5

10th - 12th Grade

20 Qs

quiz-placeholder

Similar activities

Karel Commands

Karel Commands

9th - 12th Grade

25 Qs

CodeHS Karel Unit

CodeHS Karel Unit

9th - 12th Grade

25 Qs

Karel Quiz

Karel Quiz

8th - 12th Grade

22 Qs

CodeHS Karel Python

CodeHS Karel Python

9th - 12th Grade

16 Qs

CodeHS Programming with Karel

CodeHS Programming with Karel

9th - 12th Grade

20 Qs

Karel the Dog Study Test

Karel the Dog Study Test

9th - 12th Grade

16 Qs

CodeHS Unit 1 Karel Test (Corgi edition)

CodeHS Unit 1 Karel Test (Corgi edition)

10th Grade

25 Qs

CodeHS CompSci Final Exam

CodeHS CompSci Final Exam

8th Grade - University

25 Qs

CodeHS Lessons 1-5

CodeHS Lessons 1-5

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Created by

Tamra Davis

Used 12+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is a valid Karel command?

move();

move

move()

MOVE

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the Karel world, a street is a row.

True

False

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the Karel world, a column is an avenue.

True

False

4.

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 Avenue 3

Street 3 Avenue 1

Street 6 Avenue 2

Street 2 Avenue 6

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If Karel is facing North and the code

turnLeft();

turnLeft();

runs; which direction is Karel facing now?

West

East

South

North

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times should Karel turn left in order to turn right?

4

3

2

1

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following will teach Karel how to spin in a circle one time?

private void spin()

{

move();

move();

move();

move();

}

private void spin()

{

turnLeft();

turnLeft();

}

private void spin()

{

turnLeft();

turnLeft();

turnLeft();

turnLeft();

}

private void spin()

{

turnRight();

}

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?