CICS interview Questions Part – III
Q21)  What is the option specified in the read operation to gain multiple concurrent operations on the same dataset?
A21)  REQID(value).
Q22)  What is the CICS command that gives the length of TWA area?
A22)  EXEC CICS ASSIGN
TWALENG(data-value)
END-EXEC.
ÂÂ
Q23)  What are the attribute values of Skipper and Stopper fields?
A23)  ASKIP, PROT.
ÂÂ
Q24)  How do you set the MDT option to ‘ON’ status, even if data is not entered?
A24)      Mention FSET option in DFHMDF or set it dynamically in the program using FIELD+A attribute field.
ÂÂ
Q25)  What option is specified in the SEND command to send only the unnamed fields on to the screen?
A25)  MAPONLY_______________.
ÂÂ
Q26)  Which CICS service transaction is used to gain accessibility to CICS control tables? Mention the one that has the highest priority.
A26)      CEDA
ÂÂ
Q27)  What is the most common way of building queue-id of a TSQ? (Name the constituents of the Queue ID).
A27)  TERMID+TRANSACTION-ID.
ÂÂ
Q28)  Into which table is the terminal id registered?
A28)  TCT.
ÂÂ
Q29)  How and where is the TWA size set? .
A29)  TWASIZE=300 in PCT table.
ÂÂ
Q30)  Which transient data queue supports ATI?
A30)  INTRA-PARTITION Data queue.
ÂÂ
Q31)  Code the related portions of CICS/COBOL-I programs to gain addressability to TWA area assigned to a particular task. Assume that the size of TWA area is 300 bytes. What are the advantages if COBOL-II is used in the place of COBOL? Code the above requirement in COBOL-II.
A31) ÂÂ
COBOL- II PROGRAM
ÂÂ
LINKAGE SECTION.
01  PARMLIST.
02  FILLER PIC S9(8) COMP.
02  TWA-PTR S(98) COMP.
ÂÂ
01  TWA-DATA-LAYOUT.
02          DATA-AREA              PIC X(300).
ÂÂ
PROCEDURE DIVISION.
……….
       EXEC CICS ADDRESS
                       TWA(TWA-PTR)
       END-EXEC
       SERVISE RELOAD TWA-DATA-LAYOUT.
ÂÂ
COBOL- II PROGRAM
ÂÂ
LINKAGE SECTION.
01  TWA-DATA-LAYOUT.
05  DATA-AREA      PIC X(300).
ÂÂ
PROCEDURE DIVISION.
……….
       EXEC CICS ADDRESS
                       TWA(ADDRESS OF TWA-DATA-LAYOUT)
       END-EXEC
………
Popularity: unranked [?]
Related interview questions
- CICS interview Questions Part – I
- CICS interview Questions Part – II
- CICS interview Questions Part – VI
- CICS interview Questions Part – XI
- CICS interview Questions Part – X












Leave your response!
You must be logged in to post a comment.