"True" or "False"
Movie Synonyms
Flow Control
General Python
String Operations
100

AT A TRACK MEET, IT HAPPENS WHEN A RUNNER JUMPS THE GUN

What is A FALSE START ?

100

Scarlet Sunrise

What is a Red Dawn?

100
This often used statement checks the validity of a statement before creating a branch.
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 "glues" two strings together.
What is the concatenation (+) operator?
200

IT’S A CALL TO THE FIRE DEPARTMENT WHEN THERE TRULY IS NO FIRE

What is A FALSE ALARM?

200

The Stony Terror
Movie Exhibition

What is The Rocky Horror Picture Show?

200
This flow control statement loops through a set of statements if a test statement continues to evaluate to True.
What is a for or while loop?
200
This commonly used Python data structure contains a collection of items referenced by a numeric index.
What is a list?
200
Identify the letter printed from these lines of code: words = "GIS Rules!" print words[4]
What is 'R'?
300

THE SENDER OF GIFTS IN “THE TWELVE DAYS OF CHRISTMAS”

Who is MY TRUE LOVE?

300

The Swift and the Livid

What is The Fast and the Furious?

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
In Python, this is the smallest element of a program that can be executed.
What is a statement?
300
Identify the letters printed from these lines of code: words = "GIS Rules!" print words[:-1]
What is 'GIS Rules'?
400

IT’S A HIGH-PITCHED SINGING VOICE FOR MEN        

What is A FALSETTO?

400

Terrible Supervisors

What are quotes?

400
This type of operators allow you to string together tests in an 'if' statement.
What is a Boolean operator?
400
Python will warn on a logic error, but it will warn (and possibly error) on this type of error.
What is a syntax error?
400
This function returns a string with leading and trailing white spaces removed.
What is strip()?
500

RHYMING PHRASE THAT DESCRIBES A LOYAL PERSON, NOT ONE WHO’S HOLDING HIS BREATH        

What is TRUE-BLUE?

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 built-in Python function returns the length of many objects, including Lists.
What is len()?
500
This string operator declares that the following character should be literally interpreted.
What is the escape character (\)?
M
e
n
u