Practice Test Geeks home

Python Control Flow: Conditional Statements 4

What is the output of the following nested conditional?
x, y = 3, 7

if x 5:

print('A')

else:

print('B')

else:

print('C')

Select your answer