PL/SQL Section 8 Quiz

 1. Suppose you set up a parameter with an explicit IN mode. What is true about that parameter?


(1) Point

2. A procedure is invoked by this command:

myproc('Smith',salary=>5000);

What is the method of passing parameters used here?


(1) Point

3. Procedure SOMEPROC has five parameters named A, B, C, D, E in that order. The procedure was called as follows:

SOMEPROC(10,20,30,D=>50,E=>60);

How was parameter D referenced?


(1) Point

4. Which parameter mode is the default?

(1) Point

5. Three IN parameters for procedure ADD_EMPLOYEE are defined as:
(p_name VARCHAR2 ,
p_salary NUMBER := 1000,
p_hired DATE DEFAULT SYSDATE)

The procedure is invoked by:

    add_employee('Jones');

What is the value of P_SALARY when the procedure starts to execute?


(1) Point

Komentar

Postingan populer dari blog ini

PL/SQL Section 15 Quiz

PL/SQL Section 13 Quiz

PL/SQL Section 14 Quiz