Which answer best describes the purpose of the "continue" statement?

Responses

Immediately causes the next loop iteration to start, skipping any remaining statements in the loop
Immediately causes the next loop iteration to start, skipping any remaining statements in the loop

Immediately cause the loop to stop and program flow to continue after the loop body
Immediately cause the loop to stop and program flow to continue after the loop body

Any of these can be true, depending on where "continue" is used
Any of these can be true, depending on where "continue" is used

Immediately causes the program to exit the entire program

Immediately causes the next loop iteration to start, skipping any remaining statements in the loop