Python Practice Test
Python Control Flow: Conditional Statements 2
What does the following code print?
x = 10
if x > 5:
print('A')
elif x > 8:
print('B')
else:
print('C')
Select your answer
A
A
B
B
C
C
D
A and B
Hint
✨ Remove Ads & Unlock Every Exam
— From $1.49
🃏 PYTHON Flashcards — Study This Quiz as Flip Cards →
📚 Want to go deeper? Read the Full PYTHON Study Guide →