Oracle PL/SQL Programming

Covers PL/SQL stored procedures, functions, packages, triggers, exception handling, and cursors in Oracle databases

20 Questions Published

Questions

Question 1 Multiple Choice (Single Answer)

Implicit cursors are declared for

  1. Some DML,PL/SQL statements
  2. All DML,PL/SQL statements
  3. Only PL/SQL statements
  4. None of the Above
Question 2 Multiple Choice (Single Answer)

Which is the procedure used to issue User-Defined error messages from stored Sub-Programs?

  1. Raise Application procedure
  2. Raise Application Error procedure
  3. Application Error procedure
  4. None of the Above
Question 3 Multiple Choice (Single Answer)

How do you handle an Exception?

  1. Trap it with a Handler
  2. Propagate it to the Calling Environment
  3. a & then b
  4. b & then a
Question 4 Multiple Choice (Single Answer)

Examine this procedure: CREATE OR REPLACE PROCEDURE DELETE_PLAYER(V_IDIN NUMBER) IS BEGIN DELETE FROM PLAYER WHERE ID = V_ID EXCEPTION WHEN STATS_EXIST_EXCEPTION THEN DBMS_OUTPUT.PUT_LINE(Cannotdeletethisplayer, childrecordsexistin PLAYER_BAT_STAT table); END; What prevents this procedure from being created successfully?

  1. A comma has been left after the STATS_EXIST_EXCEPTION exception.
  2. The STATS_EXIST_EXCEPTION has not been declared as a number.
  3. The STATS_EXIST_EXCEPTION has not been declared as an exception.
  4. None
Question 5 Multiple Choice (Multiple Answers)

Under which two circumstances do you design database triggers? (Choose two)

  1. To duplicate the functionality of other triggers.
  2. To replicate built-in constraints in the Oracle server such as primary key and foreign key.
  3. To guarantee that when a specific operation is performed, related actions are performed.
  4. For centralized, global operations that should be fired for the triggering statement, regardless of which user or application issues the statement.
Question 6 Multiple Choice (Multiple Answers)

Which two statements about the overloading feature of packages are true? (Choose two)

  1. Only local or packaged sub programs can be overloaded.
  2. Overloading allows different functions with the same name that differ only in their return types.
  3. Overloading allows different subprograms with the same number, type and order of the parameter.
  4. Overloading allows different subprograms with the same name and same number or type of the parameters.
  5. Overloading allows different subprograms with the same name but different in either number or type or order of parameter.
Question 7 Multiple Choice (Single Answer)

What does “REPLACE” indicate in creating procedures?

  1. An existing will be dropped and it will be replaced by the new version.
  2. An existing will be dropped and it will not be replaced by the new version.
  3. No change will occur
  4. There is no such option available in creating procedures.
Question 8 Multiple Choice (Multiple Answers)

Which two statements about packages are true? (Choose two)

  1. Packages can be nested.
  2. You can pass parameters to packages.
  3. A package is loaded into memory each time it is invoked.
  4. The contents of packages can be shared by many applications.
  5. You can achieve information hiding by making package constructs private.
Question 9 True/False

A function must return zero or more values to its calling environment, whereas a procedure returns a value to the calling environment.

  1. True
  2. False
Question 10 Multiple Choice (Single Answer)

Which of the following statements is false with respect to packages?

  1. The package itself cannot be called, parameterized, or nested.
  2. The format of a package is similar to that of a subprogram.
  3. The contents can be shared by many applications once written.
  4. None of the above.
Question 11 True/False

Identifiers defined only in the package body are public constructs. These are visible outside the package body

  1. True
  2. False
Question 12 True/False

Private constructs in the package body are hidden and inaccessible.This is an advantage of a package

  1. True
  2. False
Question 13 Multiple Choice (Single Answer)

This statement fails when executed: CREATE OR REPLACE TRI GGER CALC_TEAM_AVG AFTER I NSERT ON PLAYER BEGIN INSERT INTO PLAYER_BATSTAT ( PLAYER_I D, SEASON_YEAR, AT_BATS, HI TS) VALUES ( : NEW. I D, 1 997, 0, 0) ; END; To which type must you convert the trigger to correct the error?

  1. Row
  2. Statement
  3. ORACLE FORM trigger
  4. Before
Question 14 Multiple Choice (Multiple Answers)

Which two program declarations are correct for a stored program unit? (Choose two)

  1. CREATE OR REPLACE FUNCTION tax_amt (p_id NUMBER) RETURN NUMBER
  2. CREATE OR REPLACE PROCEDURE tax_amt (p_id NUMBER) RETURN NUMBER
  3. CREATE OR REPLACE PROCEDURE tax_amt (p_id NUMBER, p_amount OUT NUMBER)
  4. CREATE OR REPLACE FUNCTION tax_amt (p_id NUMBER) RETURN NUMBER(10,2)
  5. CREATE OR REPLACE PROCEDURE tax_amt (p_id NUMBER, p_amount OUT NUMBER(10, 2))
Question 15 Multiple Choice (Single Answer)

What is true about stored procedures?

  1. A stored procedure uses the DELCLARE keyword in the procedure specification to declare formal parameters.
  2. A stored procedure is named PL/SQL block with at least one parameter declaration in the procedure specification.
  3. A stored procedure must have at least one executable statement in the procedure body.
  4. A stored procedure uses the DECLARE keyword in the procedure body to declare formal parameters.
Question 16 Multiple Choice (Multiple Answers)

Examine this procedure: CREATE OR REPLACE PROCEDURE UPD_BAT_STAT (V_ID IN NUMBER DEFAULT 10, V_AB IN NUMBER DEFAULT 4) IS BEGIN UPDATE PLAYER_BAT_STAT SET AT_BATS = AT_BATS + V_AB WHERE PLAYER_ID = V_ID; COMMIT; END; Which two statements will successfully invoke this procedure in SQL *Plus? (Choose two)

  1. EXECUTE UPD_BAT_STAT;
  2. EXECUTE UPD_BAT_STAT(V_AB=>10, V_ID=>31);
  3. EXECUTE UPD_BAT_STAT(31, 'FOUR', 'TWO');
  4. UPD_BAT_STAT(V_AB=>10, V_ID=>31);
  5. RUN UPD_BAT_STAT;
Question 17 Multiple Choice (Single Answer)

Examine this code: CREATE OR REPLACE FUNCTION gen_email_name (p_first_name VARCHAR2, p_last_name VARCHAR2, p_id NUMBER) RETURN VARCHAR2 IS v_email_name VARCHAR2(19); BEGIN v_email_name := SUBSTR(p_first_name, 1, 1) || SUBSTR(p_last_name, 1, 7) || [email protected] .; UPDATE employees SET email = v_email_name WHERE employee_id = p_id; RETURN v_email_name; END; Examine this code: CREATE OR REPLACE PACKAGE comm_package IS g_comm NUMBER := 10; PROCEDURE reset_comm(p_comm IN NUMBER); END comm_package; / User Jones executes the following code at 9:01am: EXECUTE comm_package.g_comm := 15 User Smith executes the following code at 9:05am: EXECUTE comm_paclage.g_comm := 20 Which statement is true?

  1. g_comm has a value of 15 at 9:06am for Smith.
  2. g_comm has a value of 15 at 9:06am for Jones.
  3. g_comm has a value of 20 at 9:06am for both Jones and Smith.
  4. g_comm has a value of 15 at 9:03 am for both Jones and Smith.
  5. g_comm has a value of 10 at 9:06am for both Jones and Smith.
  6. g_comm has a value of 10 at 9:03am for both Jones and Smith.
Question 18 Multiple Choice (Multiple Answers)

Which three are valid ways to minimize dependency failure? (Choose three)

  1. Querying with the SELECT * notification.
  2. Declaring variables with the %TYPE attribute.
  3. Specifying schema names when referencing objects.
  4. Declaring records by using the %ROWTYPE attribute.
  5. Specifying package.procedure notation while executing procedures.
Question 19 Multiple Choice (Multiple Answers)

Which two describe a stored procedure? (Choose two)

  1. A stored procedure is typically written in SQL.
  2. A stored procedure is a named PL/SQL block that can accept parameters.
  3. A stored procedure is a type of PL/SQL subprogram that performs an action.
  4. A stored procedure has three parts: the specification, the body, and the exception handler part.
  5. The executable section of a stored procedure contains statements that assigns values, control execution, and return values to the calling environment.
Question 20 Multiple Choice (Single Answer)

A CALL statement inside the trigger body enables you to call ______.

  1. A package.
  2. A stored function.
  3. A stored procedure.
  4. Another database trigger.