Kizspy | Question: 45
(Choose 1 answer)
What will the following code print out?
x = 0 if x < 2:
print('Small')
elif x < 10:print('Medium')else:
print('LARGE')print('All done')
A. LARGE All done
B. Small
C. Small All done
D. Small Medium LARGE All done
FUOVERFI