PL/SQL packages are schema objects that group logically related PL/SQL types, variables and subprograms
Q. PL/SQL packages are schema objects that group logically related PL/SQL types, variables and subprograms.- Published on 03 Jul 15a. True
b. False
ANSWER: True
A package is divided into 2 parts a specification and a body. The specification is an interface to the package and it declares the types,variables,subprograms etc. which can be referenced from outside the package. The body consists of queries for the cursor and the code for subprograms.