InterviewSolution
Saved Bookmarks
| 1. |
What is an infinite loop?Explain with suitable example. |
|
Answer» An infinite loop (SOMETIMES called an endless loop ) is a piece of coding that LACKS a functional exit so that it repeats INDEFINITELY. ... Usually, an infinite loop results from a PROGRAMMING error - for example, where the conditions for exit are incorrectly written. |
|