OD
(Choose 1 answer)
For the following code,
ifx<2:
print('Below 2')
elif x >= 2
A. This code will never print 'Something else'regardless of the value for 'x'
print('Two or more')
B. x = -22
else:print('Something else')
C. x = 2.0
What value of 'x' will cause 'Something else' to print out?
D. x = -2.0
Exit 32