Multiple choice technology mainframe How will you un-assign a variable which is used in the same REXX exec? Using DROP Using INITIALIZE Using DELETE 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.