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
When is inspect verb is used in cobol?
How to print 10 to 1 if the input have only 10 digit number?
How do you define a variable of comp-1 and comp-2?
What is cobol?
How do you reference the fixed block file formats from cobol programs
What is amode(24)?
I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......
What is the difference between a binary search and a sequential search what are the pertinent cobol?
I have to write to a outfile where the number of records in that file should be the header of that file using IMS.. can anyone help me in this issue
Why would you use find and get rather than to obtain?
What is Pic 9v99 Indicates in COBOL?
What is the utilization of copybook in cobol? Could we utilize a similar copybook?
can you please let me know if there is any walkins for COBOL/PLI/DB2/IMS/JCL in pune other than IBM and ITC infotech
INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
Write a cobol program making use of the redefine clause.