left(270)
How many total times does Karel place a ball?

6
What type of error is caused by a misspelled key word?
syntax error
3
What three things are required in the comment in front of every function definition.
Description, Precondition, Postcondition
What shape will this function draw?
circle(50,360,5)
Pentagon
Defining a turn_right() function as three consecutive left turns is an example of which concept? Hint: This concept describes the amount of detail in a given statement.
Decomposition
NOT Abstraction!
What type of error might this code cause?

Infinite Loop
How many unique values can be represented with 7 binary digits?
128
What is the word we use to describe inputs to a function?
Parameter
This code is designed to draw a triangle. Identify and fix the logic error

Line 5 should be right(120), not right(60)
How many spaces forward from the original spot does Karel end after this code?

3
This code is designed to paint the entire row red. Describe what happens when it is run.

The first square is not painted.
Which number is greater?
10002 or 910
910. The other number is equivalent to 810
What was Python named after?
It's not the snake! It's actually Monty Python, the British comedy series
How many lines will be drawn on the screen when this code finishes running?

0
What direction will Karel face after this code is run?

East
Is a syntax error considered a Compile Time error or a Run Time error?
Compile Time - It happens when the code is compiling, before it starts running.
Convert the following number to decimal. Mental math only!
000110102
000110102 = 2610
What year was python first introduced? (within 2 years earns half credit)
1991 - The same year Mr. Elman was born