A REXX program should be compiled before it can be executed?
B
Correct answer
Explanation
REXX is an interpreted language, not a compiled one. The REXX interpreter reads and executes the source code directly without a compilation step. This is a key feature of REXX - you can write and test code immediately without waiting for compilation. Compiled languages like COBOL or PL/I require a compilation step to produce object code before execution. The statement that REXX requires compilation is false.