Which ITERATIVE control construct in PL/SQL is also called as INFINITE LOOP?
-
Cursor For Loop
-
Numeric For Loop
-
While Loop
-
Simple Loop
D
Correct answer
Explanation
Simple Loop is called an infinite loop because it has no built-in termination condition. It continues indefinitely until explicitly exited using an EXIT or EXIT WHEN statement. Unlike For Loops (with counter limits) or While Loops (with conditions), Simple Loop relies entirely on manual exit logic.