Home »
PL/SQL MCQs
What is the correct syntax of WHILE Loop?
48. What is the correct syntax of WHILE Loop?
WHILE <condition>
LOOP statements;
END LOOP;
LOOP statements;
WHILE <condition>
END LOOP;
END LOOP;
WHILE <condition>
LOOP statements;
- None of the above
Answer: A)
WHILE <condition>
LOOP statements;
END LOOP;
Explanation:
The correct syntax of WHILE Loop is –
WHILE <condition>
LOOP statements;
END LOOP;