3. Which loop cannot be terminated using the EXIT statement?
a) DO loop
b) FOR loop
c) WHILE loop
Answers
Answered by
1
Answer:
option (C) is the correct answer
Answered by
2
Answer:
DO loop
Explanation:
The EXIT statement can be used only inside a loop; you cannot exit from a block directly. PL/SQL lets you code an infinite loop. For example, the following loop will never terminate normally so you must use an EXIT statement to exit the loop.
Similar questions