Practice Test Geeks home

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