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
Which mode is used to operate the sequential file?
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?
What is a SSRANGE and NOSSRANGE?
What is the difference between comp and comp-3 usage?
What is the difference between comp and comp-3?
What is a report item?
What are different data types in cobol?
What is the problem of ordered sequential files access?
How do you get the data to code the BMS macro?
What is comp-1 and comp-2?
What are the access modes of START statement?
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?
What is the difference between PIC 9.99 and 9v99 in COBOL?
What are the various section in data division and briefly explain them.
How to use the same COBOL program in Batch and CICS on lines? explain with an example