When defining a dataset in JCL, what parameters can be specified in the DD statement?

  • Access method
  • All of the above
  • Data format
  • File organization
The DD statement in JCL is used to define dataset parameters, including file organization, data format, and access method

The EXIT statement in JCL allows you to specify a user-defined _______.

  • action
  • condition
  • parameter
  • program
The EXIT statement in JCL allows you to specify a user-defined action.

You have a JCL job with multiple steps, and you want to ensure that Step 2 executes only if Step 1 fails. How would you achieve this using the EXEC statement?

  • Add the COND parameter to Step 2 with a value of 'ONLY IF STEP1 RC > 0'.
  • Set the RETURN-CODE attribute in the EXEC statement of Step 1 to influence Step 2 execution.
  • Use the IF/THEN/ELSE construct in the JCL job to conditionally execute Step 2.
  • Utilize the DEPEND parameter in Step 2, specifying Step 1 as a dependency.
By adding the COND parameter to Step 2, you conditionally execute it based on Step 1's return code, achieving the desired behavior.

In the context of JCL, what does the term "abend" refer to?

  • Abend is a specific JCL command
  • Abend is not related to JCL
  • Abnormal Ending
  • Absolute Ending
"Abend" in JCL refers to Abnormal Ending, indicating an unexpected termination of a job step

Which JCL statement is used to specify an abend code condition for a job step?

  • ABEND
  • COND
  • ERROR
  • IF
The COND parameter is used to specify abend code conditions

A conditional abend code in JCL allows you to handle specific __________ during job execution.

  • Abends
  • Conditions
  • Errors
  • Steps
A conditional abend code in JCL allows you to handle specific abends during job execution.

When defining a conditional abend code, the value "NOT" can be used to specify _______.

  • Abnormal termination
  • None of the above
  • Normal completion
  • Successful completion
When "NOT" is used, it specifies actions based on successful completion.

The JOB statement can include a _______ parameter to specify the accounting information for the job.

  • ACCOUNT
  • ACCOUNTING
  • ACCT
  • ACCT-INFO
The ACCOUNTING parameter is used to specify accounting information.

The _______ parameter in JCL is used to specify the name of the recipient for job completion notifications.

  • ACKNOWLEDGE
  • ALERT
  • NOTIFY
  • RECEIVER
The NOTIFY parameter is used to specify the name of the recipient for job completion notifications.

In JCL, the _______ statement is used to define the actions to be taken when the IF condition is met.

  • ACTION
  • DO
  • ELSE
  • THEN
The ELSE statement is used to define actions when the IF condition is not met