Some statements will be skipped in __________.
Answers
Answered by
0
a loop if continue statement is used
Answered by
0
"Some statements will be skipped in loop"
More about Loop Statements:
In computer programming, a loop is a sequence of instructions that is repeated until a particular condition is reached.
An operation 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 ordered number.
Counter not Reached: If the counter has not reached the exact number, the next instruction in the sequence returns to the first instruction in the sequence and repeat it.
Counter reached: If the condition has been reached, the upcoming instruction “falls through” to the next sequential instruction or branches outward the loop.
Similar questions