Multiple choice technology mainframe

Complete correctly: When I want a jobstep to be executed only if the previous jobstep has a return code of strictly less than 8, I should add...

  1. COND=(8,LE)

  2. COND=(8,GE)

  3. COND=(8,LT)

  4. COND=(8,GT)

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

The COND parameter tests if a condition is TRUE to SKIP the step. COND=(8,LE) means 'if return code is less than or equal to 8, skip this step'. So the step runs ONLY when return code is strictly less than 8 (NOT less than or equal to 8). This is the correct conditional logic for the stated requirement.