Computer Science, asked by ashokvdo143, 16 days ago

which loop is used for indefinite number of repetition?​

Answers

Answered by theswaggirl0786
3

Answer:

A sentinel controlled loop is also called an indefinite repetition loop because the number of iterations is not known before the loop starts executing ...

Answered by asharusingh764
1

Answer:

The important thing to take note of here is that somewhere in the while loop's block, there must be some instructions that cause condition 1 to be false. Otherwise, the while loop becomes an infinite loop (a loop that repeats forever).

Similar questions