Computer Science, asked by aditichauhan87, 1 year ago

define looping statement..

Answers

Answered by Ansh123721
9

a loop is a sequence of instruction s that is continually repeated until a certain condition is reached. Typically, a certain process is done, such as getting an item of data and changing it, and then some condition is checked such as whether a counter has reached a prescribed number.

hope this answer useful to you


Ansh123721: make me brainlist answer pls
aditichauhan87: ok
Ansh123721: thank you
aditichauhan87: wello
Ansh123721: mention not
aditichauhan87: u too
Ansh123721: ya
aditichauhan87: hmm
Answered by khushipatel2108
5

In computer programming, a loop is a sequence of instruction s that is continually repeated until a certain condition is reached. Typically, a certain process is done, such as getting an item of data and changing it, and then some condition is checked such as whether a counter has reached a prescribed number. If it hasn't, the next instruction in the sequence is an instruction to return to the first instruction in the sequence and repeat the sequence. If the condition has been reached, the next instruction "falls through" to the next sequential instruction or branches outside the loop. A loop is a fundamental programming idea that is commonly used in writing programs.

Similar questions