Which two programming constructs can be grouped within a package? (Choose two)
A.
Cursor
B.
Constant
C.
Trigger
D.
Sequence
E.
View
Explanation:
The constructs that can be grouped within a package include:
Procedures and Functions
Cursors, Variables and Constants
Composite data types, such as TABLE or RECORD
Exceptions
Comments
PRAGMAs
Incorrect Answers:
C: Triggers are objects that we create are created on the tables.
D: Sequences can’t be grouped inside the packages, but we can reference then inside the
package.
E: Views are created and they are database objects, and they can’t be grouped inside the
packages.