Data Types
What will this output?
Numeric Operators
Loops
Logical Operators
100

Examples: 1, 10, 25

What is an integer?

100

print(3+4)

What is 7?

100

4+5

What is 9?

100

This kind of loop only loops a certain number of times

What is a for loop?

100

a > b

What is a is greater than b?

200

1.2, 3.8, 10.7

What is a float?

200

print("3+4")

What is 3+4

200

3*4

What is 12?

200

What kind of loop continues always (for the length of the game)?

What is a while loop or forever loop?

200

a == b

What is a equals b?

300

Examples: "Name", "Hello world!", and "Today is Tuesday"

What is a String?

300

print("3"+"4")

What is 34?

300

12/4

What is 3?

300
Example: if(x > 6)

What is a conditional?

300

a != b

What is a is not equal to b?
400

x = ["apple", "banana", "cherry"]

What is an Array or List?

400

print("3"+4)

What is a syntax error?

400

12%5

What is 2?

400

for x in fruits:
  print(x)

What is a for loop that prints each fruit?

400

a >= b

What is a is greater than or equal to b?

500

True or False

Boolean

500

# print(3+4)

What is nothing (a comment)?

500

3**2

What is 9?
500

i = 1
while i < 6:
  print(i)
  i += 1

What is a while loop that prints 1 to 5?

500

a > b or d < c

What is a is greater than b or d is less than c?

M
e
n
u