Multiple choice technology programming languages

Which instruction in REXX is used to display at the terminal?

  1. PUT

  2. DISPLAY

  3. SAY

  4. PRINTLN

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

The SAY instruction in REXX is used to display output at the terminal. It prints one or more expressions to the standard output (usually the console), followed by a newline. This is equivalent to print or write statements in other languages. Options like PUT, DISPLAY, and PRINTLN are not standard REXX instructions - PUT works with the stack, not terminal output.