suppose a cobol programme A calling programme B,C and D.
If C undergoes some change what if A,B,C,D need to be
recompiled or only C nee to be recompliled.
Answer Posted / umesh sasankota
It depends on whether the compilation is Static or Dynamic.
Assuming Program A is calling Program B,C & D.
In Case of Static Compilation option (Compiler Option
NODYNM): Compile C first and then compile A. As no changes
in Programs B & D no compilation required for these 2 members.
In Case of Dynamic Compilation (Compiler Option DYNM), only
Program C need to be compiled.
| Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
What is link edit in cobol?
What are the different rules of SORT operation?
What are the pertinent COBOL
how to refer the data field?
i want a program using by if, evaluate , string, unstring, perform, occurs?
What is cobol?
what is s000 u4087 error? please give the all error codes in cobol,jcl.
how to convert the recors form vsam file to db2 table tru file aid
What is the difference between binary search and sequential search?
What is the difference between external and global variables in COBOL?
How to fetch 1000 error records from VSAM file(Eg: 1000000 records present) while getting SOC7 abend ?
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
What is inspect in cobol ?
For rewrite, why is it mandatory that file needs to be opened?
How to print 10 to 1 if the input have only 10 digit number?