Exam 1z0-149 All QuestionsBrowse all questions from this exam
Question 36

Which is true about EXIT and CONTINUE statements?

    Correct Answer: A

    EXIT and CONTINUE statements can indeed be used in any type of loop, such as FOR, WHILE, or DO-WHILE loops. The EXIT statement is used to terminate the loop early, while the CONTINUE statement skips the rest of the loop body and proceeds with the next iteration. They do not necessarily need a WHEN condition or labels to function, and they do not have the same effect on loop execution.

Discussion
egznrdOption: A

A is correct

thranduylOption: A

A is correct