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?")
  1. Am I here?
  2. Or here?
  3. Am I here? Or here?
  4. Or here? Or over here? ✓
  5. Am I here? Or over here?
Answer