Which of the following is TRUE while using PL/SQL Exit Loop?

A)  Variables in the loop are incremented.
B)  The loop body should be initialized with a variable
C)  When you are ready to exit the loop, you should use the EXIT WHEN statement.
D)  All of the above

Correct Answer :   All of the above


Explanation :

While using PL/SQL Exit Loop :
 
The loop body should be initialized with a variable
Variables in the loop are incremented.
When you are ready to exit the loop, you should use the EXIT WHEN statement.