REXX Programming Language Fundamentals
Quiz covering REXX programming language concepts including keywords (TRACE, PARSE, PUSH, PULL, ADDRESS), stack operations, TSO/ISPF integration, and general programming practices.
Questions
As per the Coding Guidelines of the Project, Which of the following is valid include when messenger .hpp from messenger unit is used in the current unit?
- #include <messenger.hpp>
- #include <messenger/messenger.hpp>
- #include <messenger/inf/messenger.hpp>
- #include <../messenger/inf/messenger/messenger.hpp>
As per the Coding Guidelines of the Project, What should be the maximum length of a line?
- 120 Characters
- 150 Characters
- 40 Characters
- 80 Characters
As per the Coding Guidelines of the Project, Each variable should be individually declared on a separate line
- True
- False
REXX is
- A programming language
- Extremely versatile language
- Restructured Extended Executor Language
- High-level procedural language
- All of the above
The main function of REXX is to pass commands to
- TSO
- TSO/ISPF Dialog
- ISREDIT
- All of the above
The use of interaction of REXX with TSO/ISPF Dialogue Manager is
- To create panels
- To display panels
- To create and display panels
- None of the above
REXX program can be executed only from TSO READY prompt?
- True
- False
REXX program is also called exec
- True
- False
A REXX program should be compiled before it can be executed?
- True
- False
REXX program cannot be developed in Physical Sequential Dataset?
- True
- False
Label must be first thing on a line and it must end with a colon?
- True
- False
Which of the following variable names are valid?
- 2_tcs
- Prog-name
- Thismean
- d) Say
- e) Abc$efg
Which of the following commands passes commands to a specific environment?
- ARG
- SELECT
- SIGNAL
- ADDRESS
Which of the following keyword is useful for string manipulation?
- PARSE
- PULL
- PUSH
- STRING
The PUSH keyword is used to place data on the ?
- Top of stack
- Bottom of stack
- Middle of stack
- None of the above
When there is data on the stack, the pull instruction retrieves data from ?
- Bottom of the stack
- Top of the stack
- Middle of the stack
- None of the above
Which of the following keyword will be useful for interactive debugging?
- EXPOSE
- INTERPRET
- TRACE
- DEBUG