What does ?Pseudo Conversational? mean?
Answers were Sorted based on User's Feedback
Answer / savita
It is a mode of dialogue between program
and terminal which appears to the operator as a continuous
conversation but which is actually carried by a series of
tasks
EX:
Transaction TSK1
Program PROG1
PROCEDURE DIVISION.
:
EXEC CICS RECEIVE
END-EXEC.
:
EXEC CICS SEND
END-EXEC.
EXEC CICS RETURN
TRANSID (‘TSK2’)
END-EXEC.
Transaction TSK2
Program PROG2
PROCEDURE DIVISION.
:
EXEC CICS
RECEIVE
END-EXEC.
:
EXEC CICS SEND
END-EXEC.
EXEC CICS RETURN
END-EXEC.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / chudar
the conversational technique used under muti threading
region. the pgm will be reside in mainmemory whenever it is
required and remove whenever it is no longer needed.
| Is This Answer Correct ? | 2 Yes | 3 No |
What is difference between copy and include?
If we wish to create bms executable, what are the basic steps that the user has to go through?
How do you handle errors in CICS pgms ?
What is the function of the Terminal Control Table(TCT)?
What is multitasking and multithreading?
What is the procedure to read a statement from tsq?
What are the 3 working storage fields used for every field on the map?
What is the content of the PPT entry?
Explain the usage of language in the ppt entry?
How will you access a VSAM file using an alternate index?
Why doesn?t CICS use the Cobol Open and Close statements ?
How is addressability achieved to the data outside programs working-storage.?