Computer Science, asked by gautamkumarr4145, 1 year ago

Define infinite loop.

Answers

Answered by Anonymous
8

An infinite loop is a sequence of instructions in a computer program which loops endlessly...

This could be due to the following reasons:

~ The loop having no terminating condition                                        

~ The loop having a condition that can never be met

~ The loop having a condition that causes the loop to start over.

Answered by guruprasadjena78
2

An infinite loop is a unconditional transfer of control,from where there is no exit.In such a case,the execution of the program is forcefully terminated by pressing the Ctrl+Pause break keys simultaneously.

Similar questions