Computer Science, asked by skhanny3191, 10 months ago

After the loop is terminated, the statement immediately following the loop body is executed.

Answers

Answered by heroboy53
4

Answer:

Break Statement is a loop control statement which is used to terminate the loop. As soon as the break statement is encountered from within a loop, the loop iterations stops there and control returns from the loop immediately to the first statement after the loop.

Answered by Anonymous
1

while loop is executed once before the condition is checked. Its syntax is: do { // body of loop; } while (condition); ... If the condition evaluates to true , the body of the loop inside the do statement is executed again.

Similar questions