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


Please Help Members By Posting Answers For Below Questions

Why occurs cannot be used in 01 level in COBOL?

914


Which division and paragraphs are mandatory for a COBOL program?

923


Write down the divisions of cobol program?

842


How to know whether the module is dynamical or statistical?

868


What are the rules of the move verb?

949


How many sections are there in data division in COBOL?

887


What are the various section in data division and briefly explain them.

914


What type of SDLC u followed? Why?

1730


What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?

853


Write a program to enter and display the names of students in a class using the occurs clause.

926


IF I mention stop run in CICS what happens?

2091


What do you understand by psb and acb?

846


What kind of error is trapped by on size error option?

960


How to remove the spaces at the end of each record in the output file of variable length, via cobol program?

886


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?

1079