Multiple choice technology mainframe

PROCEDURE instruction: Makes all variables in the function/ subroutine as local variables

  1. True

  2. False

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

The PROCEDURE instruction in REXX creates a new variable scope, making all variables in the function/subroutine local by default. This means variables inside the procedure don't affect variables with the same name in the calling program unless explicitly exposed using the EXPOSE instruction.