Multiple choice technology mainframe

What is correct?

  1. A REGION parameter on an EXEC statement, overrides the REGION parameter on the JOB

  2. A REGION parameter on an EXEC statement, limits the space available for that step, but

  3. A REGION parameter on an EXEC statement, is only taken into consideration if there is no

  4. The sum of all REGION parameters on EXEC statements, must be equal to the REGION

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

A REGION parameter on an EXEC statement is considered only when there is no REGION parameter specified on the JOB statement. If the JOB statement has a REGION parameter, EXEC-level REGION parameters are ignored. This is because the job-level REGION establishes the overall memory allocation for the entire job, and individual steps cannot override it. Option A is incorrect because EXEC doesn't override JOB. Option B incorrectly suggests EXEC can always limit space. Option D is incorrect because EXEC REGION values don't sum to anything - they're simply ignored if a JOB REGION exists.