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 USER_OBJECTS data dictionary view allows us to view the source code of packages. _________________________
(True/False)
4.9/5
(26)
All of the following represent restrictions on functions, except ____.
(Multiple Choice)
4.9/5
(27)
The term ____________________ in packages refers to the ability to use the same name on multiple program units within the same package.
(Short Answer)
4.7/5
(35)
When compiling objects that call packaged program units, only the package specification or program unit header is used for verification.
(True/False)
4.9/5
(44)
When compiling objects that call packaged program units, only the ____________________ is used for verification.
(Essay)
4.8/5
(44)
The ____________________ directive needs to be included in the package specification to clearly state the purity levels applicable to the function.
(Short Answer)
4.9/5
(32)
Packages can be created in local libraries, as can procedures and functions.
(True/False)
4.8/5
(31)
CREATE OR REPLACE PACKAGE product_info_pkg IS PROCEDURE prod_search_pp
(p_id IN bb_product.idproduct%TYPE,
P_sale OUT bb_product.saleprice%TYPE,
P_price OUT bb_product.price%TYPE);
PROCEDURE prod_search_pp
(p_id IN bb_product.productname%TYPE,
P_sale OUT bb_product.saleprice%TYPE,
P_price OUT bb_product.price%TYPE);
END;
The code fragment above is an example of a(n) ____.
(Multiple Choice)
4.9/5
(31)
Showing 61 - 68 of 68
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)