Flow of Control1
Flow of Control1
a. False
True
b. True
True
c. false
d. none
10. If the user inputs : 2<ENTER>, what does the following code snippet
print?
x = float(input())
if(x==1):
print(“Yes”)
elif (x >= 2):
print(“Maybe”)
else:
print (“No”)
a.Yes b.No c.Maybe d.Nothing is
printed