Science, asked by kuriyavarc, 8 months ago

Which things are used in loops?​

Answers

Answered by ellisr2026
0

Answer:

Loop statements usually have four components: initialization (usually of a loop control variable), continuation test on whether to do another iteration, an update step, and a loop body.

Explanation:

Answered by rohit7564
1

Answer:

In computer science, a for-loop (or simply for loop) is a control flow statement for specifying iteration, which allows code to be executed repeatedly. Various keywords are used to specify this statement: descendants of ALGOL use "for", while descendants of Fortran use "do". There are other possibilities, for example COBOL which uses "PERFORM VARYING".

Similar questions