Exam 7: PL/SQL Packages
Exam 1: Introduction To PL/SQL54 Questions
Exam 2: Basic PL/SQL Block Structures81 Questions
Exam 3: Handling Data In PL/SQL Blocks51 Questions
Exam 4: Cursors and Exception Handling65 Questions
Exam 5: Procedures75 Questions
Exam 6: Functions51 Questions
Exam 7: PL/SQL Packages68 Questions
Exam 8: Program Unit Dependencies61 Questions
Exam 9: Database Triggers54 Questions
Exam 10: Oracle-Supplied Packages, Dynamic SQL, and Hiding Source Code85 Questions
Select questions type
The ____________________ serves as a map to what program units are available in the package and the parameters of the program unit.
(Short Answer)
4.8/5
(31)
Which of the following correctly sets the default purity level for a packaged function?
(Multiple Choice)
4.8/5
(27)
The ____ packaged function purity level does not modify packaged variables.
(Multiple Choice)
4.9/5
(35)
Using the same name on multiple program units within the same package is referred to as ____.
(Multiple Choice)
4.9/5
(27)
The ____ defines the type of data structures the function reads or modifies.
(Multiple Choice)
4.7/5
(34)
Package elements that can be referenced from outside the package are considered ____.
(Multiple Choice)
4.8/5
(27)
A(n) ____________________ is a declaration of a program unit in a package body by placing the header code at the top of the package body code.
(Short Answer)
4.8/5
(31)
Functions written in other languages such as JAVA can also be called from Oracle programs.
(True/False)
4.8/5
(32)
The statement ____ would successfully remove the package specification and body.
(Multiple Choice)
4.9/5
(35)
Functions that have not been declared in a package specification are considered public.
(True/False)
4.8/5
(30)
Items declared in the package body and not in the specification can be used only by other procedures and functions within this same package body.
(True/False)
4.8/5
(43)
The term ____ refers to the range of visibility for a particular element or construct contained in a package.
(Multiple Choice)
4.8/5
(34)
CREATE OR REPLACE PACKAGE ordering_pkg IS
Pv_total_num NUMBER(3,2);
PROCEDURE order_total_pp
(p_bsktid IN NUMBER,
P_sub OUT NUMBER);
FUNCTION ship_calc_pf
(p_qty IN NUMBER)
RETURN NUMBER;
END;
The code fragment above is an example of a(n) ____.
(Multiple Choice)
4.8/5
(35)
Package code is not cached, nor is package data such as variables and cursors.
(True/False)
4.8/5
(46)
A one time only procedure is included in a package body as an anonymous PL/SQL block at the end of the body code.
(True/False)
4.9/5
(35)
A(n) program declaration is a declaration of a program unit in a package body by placing the header code at the top of the package body code. _________________________
(True/False)
4.7/5
(35)
Forcing the user to use his or her own privileges for a program unit, and not that of the owner is called ____.
(Multiple Choice)
4.9/5
(26)
Package elements are considered ____ if they can be called only from other program units within the same package.
(Multiple Choice)
5.0/5
(36)
Elements declared in a package are considered ____________________ if they can be called only from other program units within the same package.
(Short Answer)
4.9/5
(33)
The USER_SOURCE data dictionary view is useful to identify what packages exist on the system. _________________________
(True/False)
4.8/5
(26)
Showing 21 - 40 of 68
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)