Multiple choice technology mainframe

What is the syntax to Restart from a particular step in a Proc, but subsequent steps not to be executed. No NULL should be placed in Proc.

  1. (A) RESTART= STEPNO

  2. (B) RESTART=PROCNAME.STEPNO

  3. (C) RESTART= STEPNO, COND=(0,LE)

  4. (D) RESTART=PROCNAME.STEPNO,COND=(0,LE)

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

The RESTART parameter with COND=(0,LE) ensures that after restarting at the specified step, all subsequent steps are skipped (condition 0 ≤ 0 is always true, so step execution is bypassed). The PROCNAME prefix is required to qualify the step name within a procedure. Option A lacks both the procedure name and the condition clause, while option C omits the procedure name prefix.