πŸ“Š Python
Q. What will be the output of the following Python code?
Code:
i = 1
while True:
    if i%3 == 0:
        break
    print(i)
 
    i + = 1
  • (A) 1 2
  • (B) 1 2 3
  • (C) error
  • (D) none of the mentioned
πŸ’¬ Discuss
βœ… Correct Answer: (C) error

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
311
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Vaibhav Shukla
Publisher
πŸ“ˆ
86%
Success Rate