Which JCL statement is used to specify the job class for a job?

  • CLASS
  • JOBCLASS
  • JOBCLASSIFY
  • JOBTYPE
The CLASS statement in JCL is used to specify the job class for a job, indicating its priority in scheduling.

To skip a step if the return code of the previous step is 4, you would use the COND=_______ syntax.

  • CODE
  • RC
  • RET
  • RETURN
To skip a step based on the return code, you use the COND=RC, where RC is followed by the code to test

When performing complex sorts using JCL, the ____ statement is used to define custom comparison criteria.

  • COMPARE
  • CUSTOMSORT
  • ORDERBY
  • SORTBY
The SORTBY statement in JCL is used to define custom comparison criteria for complex sorts

Explain the significance of the INCLUDE and OMIT statements in a SORT step of the JCL SORT utility.

  • Comparison criteria
  • Filtering criteria
  • Include criteria
  • Sorting criteria
INCLUDE and OMIT statements in a SORT step are used to define filtering criteria for including or excluding specific records

The IEBGENER utility can be used for _______ purposes in JCL.

  • Compilation
  • Copying
  • Execution
  • Sorting
IEBGENER is commonly used for copying datasets.

A common way to handle job dependencies is by using a _______ system, which automates and manages the execution order of jobs.

  • Compiler
  • Debugger
  • Loader
  • Scheduler
A scheduler system automates and manages job execution order

What are some potential use cases for the IEBDG utility in a mainframe environment?

  • Compiling COBOL programs
  • Generating test data
  • Printing reports
  • Sorting records
IEBDG is commonly used for generating test data in a mainframe environment

The NOTIFY parameter in the EXEC statement specifies the _______ that should be notified upon step completion.

  • Completion Code
  • Job Name
  • Operator
  • User ID
The NOTIFY parameter in the EXEC statement specifies the operator to be notified

In JCL, a conditional abend code is used to control the _______ of a job step.

  • Completion
  • Deletion
  • Execution
  • Start
A conditional abend code in JCL is used to control the execution of a job step.

The COND parameter can be used to set _______ codes for a job step in JCL.

  • Completion
  • Error
  • Exit
  • Return
The COND parameter can set return codes, affecting the completion status of a step