(Choose 1 answer)
For the following code
x = 1
B if x < 2:
print('Below 2')
C elif x >= 2:
print('Two or more')
else:
print('Something else')
What is the output?
A. x = 2.0
B. x = -2.0
C. It will print out "Below 2"
D. x = -22
E. This code will never print 'Something else' regardless of the value for 'x'
Osh
Q: 44