MCQ Practice Single Best Answer Topic: Python While Loop MCQ

Q What will be the output after the following statements?
x = 25
y = 10
while x < 26 and y < 11:
    print(x,y)
    x = x + 1
    y = y + 1

Question ID
#3909
Subchapter
Python While Loop MCQ
Action
Choose one option below

Choose Your Answer

Click an option to check whether your answer is correct.

  • A 26 11 b. c. d.
  • B 25 11
  • C 25 10
  • D 26 10
Correct Answer: C

Explanation

25 10

Share This Question

Share this MCQ with your friends or study group.