Advertisements
Advertisements
Questions
Give an example of an infinite loop.
Give one example of an infinite loop.
Answer in Brief
Solution
num = 20
while num > 10;
print(num)
num = num + 1
The above statement will create an infinite loop as the value of 'num' initially is 20, and each subsequent loop increases the value of num by 1, thus making the test condition num > 10 always true.
shaalaa.com
Is there an error in this question or solution?