Karel
Functions
100

What are the horizontal pathways called in a Karel world?

Rows

100

What can be used to teach Karel to turn right?

Functions

200

What are the vertical pathways called in a Karel world?

columns

200

True or false:

This function will teach Karel how to spin in a circle one time?

function spin() {
    turnLeft();
    turnLeft();
    turnLeft();
    turnLeft();
}

300

If Karel starts facing East in the first row, third column, what row and column will Karel be on after this code runs?

move();
move();
move();
turnLeft();
move();

Row 2 and Column 6

300

How many times should the main function be defined in a program?

1

400

If Karel is facing North and the code 

turnLeft();
turnLeft();

South

400

How many times should you call the main function in a program?

1

500

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

3

500

How many years did Mr. Newsome serve in the United States Air Force? 

6