🎴 Flashcard Mode
Oracle PL/SQL Programming
Card1 / 18
Mastered0
Review0
QuestionClick to flip
Which ITERATIVE control construct in PL/SQL is also called as INFINITE LOOP?
AnswerClick to flip back
A
Simple Loop
💡 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.