Multiple choice technology mainframe

data = ‘DO 3; SAY “HELLO THERE!”;END’ _____ data;. Complete the above code. So that it prints “Hello there!” thrice.

  1. EXECUTE

  2. INTERPRET

  3. RUN

  4. CALL

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

INTERPRET evaluates and executes REXX code contained in a string variable at runtime. EXECUTE is not a standard REXX keyword, RUN is for TSO commands, and CALL invokes subroutines.