MCQ Single Best Answer Not Set

QWhat will be the output of the following statements?
x = 1
y = 4
while x * y <= 10:
    print(x, end='')
    x += 1
    y += 1

ID: #3513 Python While Loop MCQ 322 views
Question Info
#3513Q ID
Not SetDifficulty
Python While Loop MCQTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A 4
  • B 48
  • C 14
  • D 12
Correct Answer: Option D

Explanation

12

Share This Question

Challenge a friend or share with your study group.