CBSE Class 12 Computer Science
Question 79 of 105
Python Revision Tour — Question 5
Back to all questionsThis is an endless (infinite) loop that will keep printing 45 continuously.
As the loop control variable x is not updated inside the loop neither there is any break statement inside the loop so it becomes an infinite loop.