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 is the correct REXX instruction that dynamically executes a string containing REXX code. EXECUTE, RUN, and CALL are not valid REXX instructions - CALL invokes subroutines but doesn't interpret code strings. The code 'DO 3; SAY "HELLO THERE!"; END' would print the message three times.