Computer Science, asked by nsanju655, 1 month ago

:) Enumerate looping. Explain looping statements, types and their methods.​

Answers

Answered by hiitsarnav
0

Answer:

loops are something that repeats

loop is a sequence of instruction s that is continually repeated until a certain condition is reached.

There are mainly two types of loops:

Entry Controlled loops: In this type of loops the test condition is tested before entering the loop body. For Loop and While Loop are entry controlled loops.

Exit Controlled Loops: In this type of loops the test condition is tested or evaluated at the end of loop body.

Similar questions