A high-level programming language
Name the two types of loops we use in python
For and While
If will either do something or not do it.
If/Else will do one of two different things.
Who is this man?
![]()
Alan Turing
Why do we indent python code?
To determine where blocks of code such as functions or loops begin and end.
How many spaces forward from the original spot does Karel end after this code?

3
Assume Karel starts in the bottom left corner of a 10x10 world. What will this code do?

Which current Math teacher at DePaul used to teach Computer Science?
Mr. Maseman

What is the symbol used for a single line comment called?
What type of error might this code cause?

Explain why we don't use While/Else.
Else can only ever follow an "if" statement. The code after a while loop will always run, once the while loop is finished. While/Else is meaningless, since the "else" part always runs after the while is done looping.
What is Python named for?
The British comedy series "Monty Python"
What do we call the error that we get if we have a typo? For example, spelling it 'pirnt'
Syntax Error
How many total balls will Karel put down when this code is run?

8
Describe the problem with this code:

Else statements should not contain a conditional. It's just "else:" and is related to the conditional above it - in this case front_is_clear()
Karel wasn't always a dog. What character was Karel when it first debuted?
What is the the vocab word that describes "inputs into a funtion"
Parameter
What direction will Karel face after this code is run?

East (or right)
Describe what this code does.

Moves the entire stack of tennis balls one square over.
What year was python first introduced? You'll earn credit for being within 2 years.
1991