Learn with Yasir

Learn Python, Microsoft 365 and Google Workspace

Home

Share Your Feedback

Python: while loop (MCQs)

  1. What is the output of the following code snippet in Python? Python Quiz #7
i = 1
while i < 10:
    print(i)
    i += 2
- A) 1 2 3 4 5 6 7 8 9
- B) 1 3 5 7 9
- C) 0
- D) IndentationError: expected an indented block

Watch the video for answer: https://youtube.com/shorts/zdLNmwO1u8Y

  1. What is the output of the following code snippet in Python? Python Quiz #4
i = 0
while i < 5:
    print(i)
    i += 1
else:
    print("Done")
- A) 0 1 2 3 4 Done
- B) 0 1 2 3 Done
- C) SyntaxError: invalid syntax
- D) IndentationError: expected an indented block

Watch this video for the answer: https://youtube.com/shorts/9Zw-LuNX9h0

  1. What is the output of the following code? Python Quzi #38
x = 10
while x > 0:
    print(x)
    x -= 2
- A) 9 7 5 3 1
- B) 10 8 6 4 2
- C) 10 9 8 7 6
- D) The code will run indefinitely.

Watch this video for the answer: https://bit.ly/3AdTqka

What is the output of the following code?

count = 0
while count < 3:
    print(count)
    count += 1
- A) 0 1 2
- B) 0 1
- C) 1 2 3
- D) The code will run indefinitely.