Find the order of following format?
-
JOB,EXEC,DD
-
EXEC,DD,JOB
-
DD,JOB,EXEC
-
EXEC,JOB
A
Correct answer
Explanation
In JCL (Job Control Language) for mainframe systems, the standard hierarchical order is: JOB statement first (identifies the job), followed by EXEC statements (define program execution steps), then DD statements (define data inputs/outputs). This order is mandatory for proper job execution.