dash is used to terminate the loop Extension and control transfer to the end of loop
Answers
Answer:
hi
Explanation:
The EXIT statement transfers control to the end of a loop. The CONTINUE statement exits the current iteration of a loop and transfers control to the next iteration.
Answer:
The kinds of control flow statements supported by different languages vary, but can be categorized by their effect:
Continuation at a different statement (unconditional branch or jump)
Executing a set of statements only if some condition is met (choice - i.e., conditional branch)
Executing a set of statements zero or more times, until some condition is met (i.e., loop - the same as conditional branch)
Executing a set of distant statements, after which the flow of control usually returns (subroutines, coroutines, and continuations)
Stopping the program, preventing a