Exam 3: Handling Data In PL/SQL Blocks
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 UPDATE statement is sometimes called a jumping control because it instructs the program to "jump to" some specific area of the code. _________________________
(True/False)
4.9/5
(32)
A variable declared with a record type can hold one row of data consisting of a number of column values.
(True/False)
4.8/5
(35)
A(n) _________________ data type is quite similar to the structure of a row in a database table.
(Short Answer)
4.9/5
(39)
DECLARE TYPE type_basket IS RECORD(
Basket bb_basket.idBasket%TYPE,
Created bb_basket.dtcreated%TYPE,
Total bb_basket.cost%TYPE,
Qty bb_basket.quantity%TYPE,
Sub bb_basket.subtotal%TYPE);
Rec_basket type_basket;
BEGIN
--- executable code ---
END;
According to the code fragment above, which variable is declared using the type_basket data type?
(Multiple Choice)
4.9/5
(31)
A(n) ____ is a variable that can store and handle multiple values of the same data type as one unit.
(Multiple Choice)
4.8/5
(33)
A(n) ____ is a variable that can handle many rows of data but only one field.
(Multiple Choice)
4.9/5
(27)
Which of the following code fragments correctly creates a record data type that will hold four variables?
(Multiple Choice)
4.8/5
(40)
A scalar variable can hold multiple values whereas a composite variable can hold only a single value.
(True/False)
4.9/5
(44)
One major advantage of using collections as part of the physical database is being able to retrieve multiple values with a query of a single column.
(True/False)
4.9/5
(33)
Showing 41 - 51 of 51
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)