(Choose 1 answer)
For the following code
if x < 2:
print('Below 2')
elif x >= 2:
print('Two or more')
else:
print('Something else')
A. x = -2.0
B. This code will never print 'Something else' regardless of the value for 'x'
C. x = 2.0
D. x = -22
Finish
Exit 38