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
Subchapter
Python While Loop MCQ
Action
Choose one option below