Multiple choice technology mainframe

//MYJOB JOB (1234,,2,1),'TEST',COND=(4,GT)is coded in the job card of a JCL. The job has 10 steps and the job will execute all the steps if first step of the job gives a RC=8.

  1. True

  2. False

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

The COND parameter COND=(4,GT) means the step will execute if the return code of a previous step is NOT greater than 4. If the first step gives RC=8, then 8 is greater than 4, so the condition evaluates to true and subsequent steps will be bypassed, not executed.