The statement used to check conditions
What is an 'if' statement?
This operator "glues" two strings together.
What is the concatenation (+) operator?
9* 2/ 3 +6
What is 12 ?
The part of code that repeats code statements.
What is al oop?
Identify the letter printed from these lines of code: words = "GISRules!" print words[4]
What is 'u'?
The integer result of 9 / 5 without rounding up
What is 1?
The function used to store user input in variables.
What is input()?
What is the value of 'x' after the following Python code has completed executing?
x = 100
for n in range(1,5):
print(x)
What is
100
100
100
100?
This is a list that can not be changed
What is a tuple?
Identify the letters printed from these lines of code: words = "GIS Rules!" print words[2]
What is 'S'?
These characters have the highest order of operation in Python.
What are parenthesis?
Output:
n = 10
while n<100:
print n
What is 10 infinitely?
The keyword used to take in user input
What is input()?
The following Python code loops forever. The statement this code is missing
n = 10
while n<100:
print n
What is a increment statement/ break?
The output of this code segment
print("Apple"+5)
What is Apple5