When using the IF statement in JCL, you can specify both _______ and _______ conditions.

  • Logical
  • Multiple
  • Sequential
  • Single
The IF statement in JCL allows specifying both multiple and logical conditions

In JCL, what is the function of the PEND statement?

  • Marks the end of a dataset
  • Marks the end of a job
  • Marks the end of a job step
  • Marks the end of a procedure
The PEND statement marks the end of a job step

Which part of a JCL job does the PEND statement mark the end of?

  • Marks the end of a job
  • Marks the end of a job card
  • Marks the end of a job step
  • Marks the end of a procedure
The PEND statement marks the end of the entire JCL job (job stream)

What is the difference between SORT and MERGE operations in the JCL SORT utility?

  • MERGE is used for merging sorted files
  • MERGE is used for removing duplicates during sorting
  • SORT is used for arranging data in ascending order
  • SORT is used for sorting numerical data
SORT is for sorting, while MERGE is specifically for merging sorted files and not for sorting individual datasets

To keep a data set available for read-only access but prevent further updates, you can use DISP=_______.

  • MOD
  • NEW
  • OLD
  • SHR
DISP=SHR keeps a data set available for read-only access.

The REGION parameter specifies the _______ that is allocated for the job step.

  • Memory
  • Size
  • Space
  • Storage
The REGION parameter in JCL specifies the storage allocated

How can you allocate a dataset with DISP=(MOD,CATLG) in the DD statement?

  • MOD,CATLG
  • NEW,CATLG
  • OLD,CATLG
  • SHR,CATLG
To allocate a dataset with DISP=(MOD,CATLG), specify MOD,CATLG in the DISP parameter of the DD statement

When multiple data sets are concatenated, DISP=_______ indicates that the data set will not be modified.

  • MOD
  • NEW
  • OLD
  • SHR
DISP=SHR is used to indicate that the data set will not be modified when multiple data sets are concatenated.

What is the difference between the NOTIFY and MSGLEVEL parameters

  • MSGLEVEL controls job logging level
  • MSGLEVEL specifies the message level
  • NOTIFY is used for job prioritization
  • NOTIFY notifies a user about job
NOTIFY parameter notifies a user about job completion, while MSGLEVEL controls the message logging level.

In the context of JCL, what does the term "step name" refer to when used in the EXEC statement?

  • Name of the dataset
  • Name of the job
  • Name of the job step
  • Name of the program
The "step name" refers to the name of the job step in the EXEC statement