Multiple choice technology programming languages

Which statement is used to mark the beginning of a job and assign a name to the job?

  1. JOB

  2. EXEC

  3. STEP

  4. PROC

  5. None of the above

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

To solve this question, the user needs to know the basics of JCL (Job Control Language) used in Mainframe systems.

The statement used to mark the beginning of a job and assign a name to the job is the JOB statement.

A. JOB: This option is correct. The JOB statement is used to mark the beginning of a job and assign a name to the job.

B. EXEC: The EXEC statement is used to execute a program or procedure within a job, not to mark the beginning of the job.

C. STEP: The STEP statement is used to define a unit of work within a job, not to mark the beginning of the job.

D. PROC: The PROC statement is used to define a procedure, which can be called from within a job using the EXEC statement, but it is not used to mark the beginning of the job.

E. None of the above: This option is incorrect because the correct answer is A.

Therefore, the answer is: A. JOB