what is meant by infinity loop.
Answers
Explanation:
An infinite loop is a sequence of instructions in a computer program which loops endlessly, either due to the loop having no terminating condition, having one that can never be met, or one that causes the loop to start over.
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.
A loop becomes infinite loop if a condition never becomes FALSE.
This results in a loop that never ends.
Such a loop is called an infinite loop.
An infinite loop might be useful in client/server programming where the server needs to run continuously so that client programs can communicate with it as and when required.
PLEASE MARK BRAINIEST