What are the horizontal pathways called in a Karel world?
Rows
What can be used to teach Karel to turn right?
Functions
What are the vertical pathways called in a Karel world?
columns
True or false:
This function will teach Karel how to spin in a circle one time?
function spin() {
turnLeft();
turnLeft();
turnLeft();
turnLeft();
}
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
How many times should the main function be defined in a program?
1
If Karel is facing North and the code
turnLeft();
turnLeft();
South
How many times should you call the main function in a program?
1
How many times should Karel turn left in order to turn right?
3
How many years did Mr. Newsome serve in the United States Air Force?
6