🎴 Flashcard Mode
Programming in PL/SQL (Basic Concepts)
Card1 / 25
Mastered0
Review0
QuestionClick to flip
How many sections or parts are there in a PL/SQL program?
AnswerClick to flip back
A
3
💡 Explanation:
There are three parts in a PL/SQL program. They are - declaration section (where the variables are declared), begin section (where executable code is written) and exception section (where the exceptions are handled). The declaration and exception sections are optional but the begin part is compulsory. A PL/SQL program ends with an 'end' statement.