Basic Math
Variables
Flow Control
General Python
String Operations
100
This character denotes the division operator.
What is the forward slash (/) ?
100
This common variable type stores letters, numbers, and symbols.
What is a string?
100
A conditional statement that runs when a condition is true 

What is an 'if' statement?

100
To comment a line in Python, you use this/these character(s).
What is a pound sign (#) ?
100

This operator combines two strings together.

What is the concatenation (+) operator?

200
These characters have the highest order of operation in Python.
What are parenthesis?
200
This variable type stores decimal numbers.
What is a float?
200

a loop that will run as long as a condition is true

What is a for or while loop?

200

This function is used to output information on the screen

What is a print()?

200

The symbol used to multiply values in Python

What is an asterisk?

300
The result of 9 / 5
What is 1?
300
This function allows user input text to be assigned to a variable.
What is raw_input()?
300
What is the value of 'x' after the following Python code has completed executing?
x = 100
for n in range(1,5):
x = x*n print x
What is 2400?
300

These are used instead of spaces when naming something in Python

What is a underscore?

300

What is the value of the following expression?

"cat" * 3

What is catcatcat?

400
To raise the number 5 to the power of 8, you must use the power operator. This/These symbol(s) denote the power operator.
What are two asterisks (**) ?
400
Data stored as a string is surrounded by these.
What are quotes?
400
A data type that can be either true or false

What is a Boolean?

400

An error that causes the program not to run

What is a syntax error?

400

This function will allow the user to enter in text.

what is the input() function?

500

What is the symbol used to determine the remainder of the quotient?

What is the modulus/percent sign?

500
To determine the variable type of a variable, you would use this function.
What is type()?
500
The following Python code loops forever. What is it missing?
n = 10
while n<100:
print n
What is a increment statement?
500

This function will convert a str to a positive or negative whole number

what is the int() function

500
How can you make text go to a newline using an escape character?

What is the escape character \n?