CBSE Class 11 Computer Science
Question 29 of 161
Flow of Control — Question 11
Back to all questions 11
Question Question 11
What does the following Python program display ?
x = 3
if x == 0:
print ("Am I here?", end = ' ')
elif x == 3:
print("Or here?", end = ' ')
else :
pass
print ("Or over here?")- Am I here?
- Or here?
- Am I here? Or here?
- Or here? Or over here? ✓
- Am I here? Or over here?