what is static and dynamic call with examples?
Answer Posted / rangarao chitipothu
STATIC CALL: a call is a sub program at the time to compilation.here caller and called are one module.
--> It used more cpu time.
--> memory required can be more.
DYNAMIC CALL: a call to the subprogram at the time of execution(run time) is called dynamic call. here caller and called are separate load modules and they sharable by multiple calls.
--> it used less cpu time.
--> Memory required can be less.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How does jcl act on code(if you take a cobol program)?
Explain how can values be passed from the job stream to an executable program?
I need exexution process for JCL programs
What is the function of the dd dcb keyword?
what is the difference between JES3 and JES2?
For what purpose steplib and joblib are used ?
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
Is condition checking possible in jcl? If yes, how?
What is the purpose of the dd keylen parameter?
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?
Give the syntax of job specifying jcl statement.
What does a disposition of (MOD,DELETE,DELETE) mean ?
Mention the types of job control statements?
what disp parameter we mention for creation of temporary dataset so that we can use it in later steps?
what happens in execution stage in job processing?