Questions
what is the maximum number of characters can be used to name the variable in REXX
- 2
- 30
- 250
- 255
- 125
. Complete correctly: A REXX program (or REXX EXEC) called DEMO is stored in the partitioned dataset TBISUSR.REXXCRS.EXEC. Execution is possible...
- ... via the TSO command: EXEC 'TBISUSR.REXXCRS.EXEC(DEMO)' EXEC
- ...only after allocation of the partitioned dataset TBISUSR.REXXCRS.EXEC to the DD
- ... via the TSO command: CALL 'TBISUSR.REXXCRS.EXEC(DEMO)'
- ... only after compilation to COBOL, and via the TSO command
To receive input from the screen, we use the command:
- Read
- Pull
- Accept
- Receive
What is the result of TRUNC(12.3456,3)?
- 12.3
- 12.3000
- 12.346
- 12.345
To pass commands to a specific host environment (ex. TSO), which clause must be used?
- HOST TSO
- HSTADDRS TSO
- ADDRESS TSO
- EXEC TSO
REXX has extended tracing possibilities, even interactively. Which command activates the interactive trace?
- TRACE R
- TRACE ?R
- TRACE IR
- INTTRACE R
what is the maximum size of literal in REXX
- 8
- 30
- 250
- 251
- 125
which command is used to read and write files in REXX
- Read and write
- Execio
- Get and put
- Read next
Valid special characters
- #
- $
- -
- .
- None of the above
Which is a Special variables?
- Pull
- Say
- Parse
- Return
Parsing patterns in REXX.
- Matching string
- Positional
- Mixed
- None of the above
What is no prerequisite for using the EXECIO command?
- The dataset must be sequential or a member of a partitioned dataset.
- The dataset must be allocated to a file name or DD name.
- The dataset must be exclusively enqueued (DISP=OLD or NEW).
- TSO or MVS environment must be active.
If I want to fill the variable DAY with '01', the variable MONTH with 'January' and the variable YEAR with '2009', which would be a correct way to do so, if the data '01 January 2009' is read from the input screen?
- PARSE PULL DAY MONTH YEAR
- PULL DATE PARSE VALUE DATE DAY MONTH YEAR
- PULL DATE PARSE VALUE DATE WITH DAY MONTH YEAR
- PULL DATE PARSE VAR DATE DAY MONTH YEAR
When a RETURN clause is used in a subroutine, a value can be passed back to the calling EXEC. Which statements are correct?
- This value is stored in the system variable RESULT.
- This value is stored in the system variable RC.
- This value can be alphanumeric.
- This value must be numeric.
What are the two types of interfaces provided by CICS to application programs?
- Command level
- Macro level
- Program level
- Transaction level
Will the user have interaction with CICS Applications.
- True
- False
Which is a unit of work scheduled by CICS?
- Transaction
- Task
- Terminal
- Program
What are the two types of direct access files supported by CICS?
- BDAM
- VSAM
- QSAM
- KSDS
Who Manages all the control tables to complete various application requests?
- CICS Manager
- CICS DBA
- CICS compiler
- None of the above
Which means the OS allows more than one task to run concurrently at the sametime ?
- Multi-threading
- Multi-tasking
- Psuedo Conversational
- Non-Psuedo Conversational