Learn with Yasir

Learn Python, Microsoft 365 and Google Workspace

Home

Share Your Feedback

Python Control Flow Statements: Loop Control Statements (break, continue, pass) (MCQs)

  1. What is the output of the following code snippet in Python? [Python Quiz #5]
    for i in range(5):
     if i == 3:
         continue
     print(i)
    
    • A) 0 1 2 3
    • B) 0 1 2 4
    • C) SyntaxError: invalid syntax
    • D) IndentationError: expected an indented block

Watch this video for answer: https://youtube.com/shorts/x7CIxqoqccY

  1. What is the output of the following code snippet in Python? [Python Quiz #6]
    for i in range(5):
     if i == 3:
         break
     print(i)
    
    • A) 0 1 2
    • B) 0 1 2 3
    • C) 1 2 3
    • D) 0 1 2 3 4

Watch this video for answer: https://youtube.com/shorts/XNLL6j-P61A

youtube@yasirbhutta

  1. What is the output of the following code?
i = 0
while i < 5:
    i += 1
    if i == 3:
        break
    print(i)
else:
    print("Loop completed")
- A) 1 2
- B) 1 2 Loop completed
- C) 1 2 3
- D) 1 2 3 Loop completed