Multiple choice technology mainframe

----- Causes REXX to stop executing the current DO-END loop

  1. Exit

  2. Finish

  3. End

  4. Leave

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

In REXX, the LEAVE statement causes immediate exit from the current DO-END loop and execution continues with the statement following END. The EXIT statement would terminate the entire program, not just the loop. FINISH is not a REXX keyword.