What are differences between Static Call and Dynamic Call?
Answer Posted / guest
Calling With in the program is called static call.
Calling out side the program (other program) is called
Dynamic call.
Main and sub-programs are stored in single load module
in static call.Main and sub-programs are stored in
different load module in synamic call.
If u are made any change in static call uging program
u need to re run all the programes or load module. In
dynamic call Just u can run in which program u r made
changes or in which load module.
| Is This Answer Correct ? | 13 Yes | 9 No |
Post New Answer View All Answers
What are declaratives and what are their uses in cobol?
How do define dynamic array in cobol.
What is link edit in cobol?
Whats the difference between search & search ALL?
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
HOw can I get the negative sign while deduct high value from low value
What is length is cobol?
Write a program to enter and display the names of students in a class using the occurs clause.
What is the difference between Global and External Variables?
What are literals?
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.
What are the different rules of SORT operation?
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning
) How do u handle errors in BMS macro?