Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Quale delle seguenti condizioni può portare a un loop infinito?
for i in range(10): print(i)
i = 10while i != 0: i = i - 1 print(i)
x = 5while x > 0: x = x + 1 print(x)
i = 1while True: print(i)
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!