NEW
Font size
WorksheetsP.2 Odd Man Out Quiz
Total questions: 14
Worksheet time: 7mins
Which one is the odd man out?
name = "Sasuke"
print("Hello!")
5 = x
Which one is the odd man out?
if True:
if 5 > 2:
if = True:
Which one is the odd man out?
age = 16
16 == age
age == 16
Which one is the odd man out?
print("Result:", x)
print("Score" x)
print("Hello!")
Which one is the odd man out?
is_ninja = True
is_ninja == True
True = is_ninja
Which one is the odd man out?
x = 5 + 3
y = 10 - 2
z == 4 * 2
Which one is the odd man out?
ready = False
False = ready
passed_test = True
Which one is the odd man out?
5 + 2
10 - 3
7 = 5 + 2
Which one is the odd man out?
print("Sum:", 3 + 4)
print("Product:", 2 * 2)
print("Divide" 8 / 2)
Which one is the odd man out?
is_ready = True
is_ready = true
is_ready = False
Which one is the odd man out?
if False:
if x == 5
if 3 > 2:
Which one is the odd man out?
5 ** 2
10 // 3
8 // 0
Which one is the odd man out?
level = "Genin"
rank = "Chunin"
= "Jonin"
Which one is the odd man out?
print("Yes")
print("No")
print = "Maybe"
