IBM Exam Questions

What is the correct way to invoke this procedure from the command line processor (CLP)?

A stored procedure has been created with the following statement:
CREATE PROCEDURE proc1 (IN var1 VARCHAR(10), OUT rc INTEGER)
SPECIFIC myproc LANGUAGE SQL …
What is the correct way to invoke this procedure from the command line processor (CLP)?

A.
CALL proc1 (‘SALES’, ?)

B.
CALLmyproc (‘SALES’, ?)

C.
CALL proc1 (SALES, ?)

D.
RUN proc1 (SALES, ?)