Multiple Choice
The following code is an example of a(n) ____.
DECLARE
Lv_name_txt VARCHAR2(35) ;
Lv_id_num NUMBER(4) := 25;
Lv_first_txt VARCHAR2(15) := 'Scott';
Lv_last_txt VARCHAR2(20) := 'David';
BEGIN
Lv_name_txt := memfmt1_sf(lv_id_num,lv_first_txt, lv_last_txt) ;
DBMS_OUTPUT.PUT_LINE(lv_name_txt) ;
END;
A) procedure
B) function
C) parameter
D) anonymous block
Correct Answer:

Verified
Correct Answer:
Verified
Q21: How many input values does the following
Q22: _ refer to the arguments that are
Q23: The following is a correct example of
Q24: A(n) <u>procedure</u> is part of an expression
Q25: It is possible to reference a data
Q27: Formal parameters including the RETURN data type
Q28: The term "passed by value" means that
Q29: The term <u>passed by value</u> implies that
Q30: Procedures can be used in SQL statements.
Q31: All of the following are purity level