Multiple choice technology mainframe

How will you un-assign a variable which is used in the same REXX exec?

  1. Using DROP

  2. Using INITIALIZE

  3. Using DELETE

  4. Cant un-assign a variable

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

The DROP statement in REXX releases a variable's storage, making it uninitialized. INITIALIZE sets a value rather than unassigning, DELETE is not used for variables in REXX, and variables can indeed be unassigned.