Mainframe Systems: CICS, REXX, ISPF & TSO
Quiz covering mainframe technologies including CICS BMS programming, REXX scripting, ISPF services, TSO commands, and DB2 integration
Questions
COMP-3 variables are expanded when browsing through record layout?
- True
- False
XREF option applicable in vertical mode?
- True
- False
Command used to freeze a particular field
- HOLD
- FREEZE
- DISPLAY
- BLOCK
Command used to convert browse mode to edit mode
- GO EDIT
- EDIT
- CONVERT
- None of the above
Can you access QSAM (seq) files from CICS?
- Yes
- Using AIX we can access in CICS
- Using Keys we can access QSAM in CICS
- No
What is the difference between physical map and symbolic map?
- The physical map is the load module and the symbolic map is the data structure
- The physical map is the data structure and the symbolic map is the load module
- Physical map is mapped with addresses and the symbolic map is the logical one.
- There is no difference
In which table would you make an entry for a BMS map?
- RPT
- PCT
- PPT
- LCT
When you compile a CICS program, the (pre)compiler puts an extra chunk of code. Where does it get included and that is it called?
- DFHEIBDK, DFHCOMMAREA
- DFHEIBLK, DFHCOMNAREA
- DFHEEBLK, DFHCOMMAREA
- DFHEIBLK, DFHCOMMAREA
What is CICS ?
- Customer Interaction Control System
- Consumer Information Control System
- Customer Information Control System
- Consumer Interaction Control System
are the two outputs created as a result of generation of a map?
- The load module and DBRMLIB
- The map load and DBRMLIB
- The map copybook and the load module
- The MAPLIB and loadlib
How do you use extended attributes?
- Define EXTATT=YES and the correct terminal type.
- Define EXTDATT=YES and the correct terminal type.
- Define EXTATRB=YES and the correct terminal type
- Define XTDATRB=YES and the correct terminal type.
What do you do if you do not want characters entered by the user to be folded to uppercase?
- Use ASCI option on RECEIVE
- Use ASIS option on RECEIVE
- Use Unicode option on RECEIVE
- Use ASCII option on RECEIVE
How do you read from a TSQ?
- Permanent Storage read command
- Transaction storage read command
- Temp storage read command
- None of the above
What are the 3 working storage fields used for every field on the map?
- Length, attribute and input field
- Length, no.of fields and output field
- Length, attribute and input/output field
- Length, attribute and output field
What is the code for the error condition "Empty File"?
- 10
- 35
- 23
- 28
How can we check whether DB2 environment is available for use ?
- "SUBCOM DSNDB2"
- "ADDRESS DSNREXX"
- "SUBCOM DSNREXX"
- "ADDRESS DSNDB2"
Which instruction is used to transfer the control to a subroutine?
- INTERPRET
- ITERATE
- CALL
- LEAVE
Which TSO command is used to read / write a file?
- ALLOC
- FREE
- SUBMIT
- EXECIO
Which ISPEXEC statement is used to retrieve values from ISPF profile?
- ISPFGET
- VGET
- PULL
- VPUT
data = ‘DO 3; SAY “HELLO THERE!”;END’ _____ data;. Complete the above code. So that it prints “Hello there!” thrice.
- EXECUTE
- INTERPRET
- RUN
- CALL