IBM AS400 Interview Questions Explanations
IBM AS400 Interview Questions Explanations
Which of the CL command can be used to determine which logical files are dependent on
a specific file?
Ans:DSPDBR
Which CL command can be used at program execution to redirect the file named in an
RPG program?
Ans:OVRDBF
What is Procedure ?
Ans:A procedure is the set of self contained high level language statements that can perform a
particular task and then returns to a caller.
1
What is Procedure Prototype and Procedure Interface.
Ans:
Procedure Prototype
In this section we specify the name of the procedure along with PR.
D PROC1 PR
Procedure Interface
It is section where we define all the parameter which are receiving or returning some values.
D PROC1 PI 5 0
D PARMA 5 0
D PARMB 5 0