106k views
2 votes
The continue statement _________.

A)Disables the loop
B)Skips the loop
C)Transfer control to another code segment in the loop
D)Terminates the loop

1 Answer

5 votes

Answer: C) Transfer control to another code

Explanation: Continue statement is a type of statement for the controlling of the loop. It has the main function of execution of the next or another iteration. If the continue statement is executed inside a loop then the current execution of the statement will stop and jump on the next statement immediately and will transfer the loop there.

User BeccaP
by
5.3k points