In COBOL CALL-CALLING,if a program A is calling 3 sub-
programs, dynamically, then it is said sub-programs will
always will always in Initial Mode. My question is : Do we
need to code CANCEL or (IS INITIAL) for dynamically called
sub-programs or it is the property of Dynamically called
pgms so every time sub-pgms are called they will be in initial
mode. ***This question is only Dynamic call****,
Please reply. Thank you in advance.
Answer Posted / kingmanish
The dynamically called program is loaded once a call is
made to it dynamically by a calling program.
The program is initialised only when it is called for the
first time and remains in memory till the end of calling
program.
After the first call from second call onwards the called
program should be initialised.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why occurs cannot be used in 01 level in COBOL?
Which division and paragraphs are mandatory for a COBOL program?
Write down the divisions of cobol program?
How to know whether the module is dynamical or statistical?
What are the rules of the move verb?
How many sections are there in data division in COBOL?
What are the various section in data division and briefly explain them.
What type of SDLC u followed? Why?
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
Write a program to enter and display the names of students in a class using the occurs clause.
IF I mention stop run in CICS what happens?
What do you understand by psb and acb?
What kind of error is trapped by on size error option?
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?