What are the three major types of JCL statements?
-
JOB,TIME, PARM
-
EXEC,TIME,PARM
-
JOB, EXEC, DD
-
DD,TIME,PARM
Reveal answer
Fill a bubble to check yourself
C
Correct answer
Explanation
The three fundamental JCL statement types are: JOB (marks beginning of a job), EXEC (executes a program or procedure), and DD (Data Definition, defines input/output resources). TIME and PARM are parameters, not statement types.
AI explanation
JCL (Job Control Language) is built from three fundamental statement types: the JOB statement (identifies the job and its accounting/priority info), the EXEC statement (specifies the program or procedure to run), and the DD (Data Definition) statement (defines the datasets/resources used). Together these three statement types describe everything needed to submit and run a batch job on a mainframe.