Physics, asked by Anonymous, 2 months ago

which features should be provided as a part of a loop decision ?​

Answers

Answered by ItzMissLegend
2

Similar to a While loop, a For loop consists of three parts: the keyword For that starts the loop, the condition being tested, and the EndFor keyword that terminates the loop. JAWS performs all statements found in the boundaries of the loop as long as the loop condition is true.

Answered by VivaciousDork
4

Similar to a While loop, a For loop consists of three parts: the keyword For that starts the loop, the condition being tested, and the EndFor keyword that terminates the loop. JAWS performs all statements found in the boundaries of the loop as long as the loop condition is true.

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.

Hope this helps you ❤️⬇️☑️

Similar questions