Customer Information Control System Interview Questions And Answers
Download CICS Interview Questions and Answers PDF
Prepare comprehensively for your CICS interview with our extensive list of 194 questions. These questions will test your expertise and readiness for any CICS interview scenario. Ideal for candidates of all levels, this collection is a must-have for your study plan. Access the free PDF to get all 194 questions and give yourself the best chance of acing your CICS interview. This resource is perfect for thorough preparation and confidence building.
194 CICS Questions and Answers:
CICS Job Interview Questions Table of Contents:
1 :: What is the difference between START and XCTL?
START is used to start a new task. It is a interval control command. XCTL is used to pass control to a program within the same task. It is a program control command.
Read More3 :: What is the primary objective of CICS?
To provide the control and services of the DB/DC system
Read More6 :: How would you resolve an ASRA abend?
In COBOL II start with CEBR, and get the offset/instruction.
Read More9 :: How do you handle errors in CICS programs?
Check EIBRESP after the call or use the HANDLE condition.
Read More10 :: Can you use DYNAMIC calls in CICS?
Yes, the called routine must be defined in PPT and the calling program must use CALL identifier...
Read More11 :: Name some important fields in the EIB block?
EIBRESP, EIBCALEN, EIBRRCDE, EIBTASK, EIBDATE, EIBTIME
Read More12 :: What is EXEC CICS RETRIEVE?
Used by STARTed tasks to get the parameters passed to them.
Read More17 :: 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? What is its length?
DFHEIBLK, DFHCOMMAREA.
Read More18 :: What is MDT? What are FSET, FRSET?
MDT: Bit in the attribute byte indicating modification of field on screen. Happens on an input operation.
FSET: Sets MDT on to ensure field is transmitted. Happens on an output operation
FRSET: Reset MDT. Until this happens, field continues to be sent.
Read MoreFSET: Sets MDT on to ensure field is transmitted. Happens on an output operation
FRSET: Reset MDT. Until this happens, field continues to be sent.
19 :: What is the attribute byte?
Defines the display/transmission of field. Most cases is an output field from the program.
Read More20 :: 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.
Read More22 :: What is the difference between a Symbolic map and Physical map?
SYMBOLIC MAP IS USED BY USER AND PHYSICAL MAP IS USED BY SYSTEM
Read More23 :: Why is it important not to execute a STOP RUN in CICS?
Stop run will come out from the CICS region.
Read More24 :: How to build up LU 6.2 communication?
Pseudo-conversational transactions are almost always the preferred method. In these mode CICS releases resources between responses to user input, i.e. the task is ended awaiting the user response.
Read More25 :: DB2 What is the difference between a package and a plan. How does one bind 2 versions of a CICS transaction with the same module name in two different CICS regions that share the same DB2 subsystem?
Package and plan are usually used synonymously, as in this site. Both contain optimized code for SQL statements - a package for a single program, module or subroutine contained in the database request module (DBRM) library. A plan may contain multiple packages and pointers to package that could be referenced in two different plans.
Read More