which statement is used to break a loop in pl/sql
A
Correct answer
Explanation
In Oracle PL/SQL, the EXIT statement (or EXIT WHEN) is the standard syntax used to break out of a loop. The keyword break is used in languages like C/Java, stop is not a PL/SQL loop control statement, and continue skips the rest of the current iteration instead of breaking the loop.