Multiple choice technology mainframe

What are the three major types of JCL statements?

  1. JOB,TIME, PARM

  2. EXEC,TIME,PARM

  3. JOB, EXEC, DD

  4. 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.