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
A Correct answer
Explanation

The REGION parameter controls memory allocation. Option A is correct because an EXEC statement's REGION parameter overrides the JOB-level REGION for that specific step only - this is standard JCL parameter precedence. Option B is incorrect because it cuts off mid-sentence and misstates the override behavior. Option C is incorrect because EXEC REGION is always applied if specified - it doesn't depend on absence of JOB REGION. Option D is incorrect because REGION parameters are not additive - each step uses either its own REGION or the JOB's REGION, not a sum. The most specific (EXEC) parameter always takes precedence.