Multiple choice technology mainframe

What is the key word which is used to pass value from COBOL code to JCL?

  1. DD NAME

  2. SYSIN Parameter

  3. PARAM

  4. RETURN CODE

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

RETURN CODE is the standard mechanism for passing completion status back from COBOL programs to JCL. While DD NAME and SYSIN pass data the other way (JCL to program), RETURN CODE specifically passes values from the executing program back to JCL for conditional job control.