Provide the Correct Sequence of JCL statements.
-
JOB, EXEC, DD
-
DD,JOB, EXEC
-
JOB, DD, EXEC
-
EXEC, JOB ,DD
A
Correct answer
Explanation
JCL statements must appear in a specific hierarchical order: JOB (identifies the job and sets parameters), then EXEC (defines execution steps/programs), then DD (defines data sets used by each step). This nesting structure reflects that jobs contain steps, and steps use data resources.