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.
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / krishnan
Based on the compile option we will deside if static call
means C separately no need to complile if it is dynamic
means u need to recompile the C pgm
| Is This Answer Correct ? | 5 Yes | 5 No |
In file1 have 80 records are like d1,d2,d3......D80. File2 have 1000records are like a1d1,a1d2,a3d3.....Etc. I want matching records in file3 ? Plse tell me the matching logic???I want answer only in cobol ?Not using any tool or jcl?
I have 100 records in a file.. i want to sort the records from 5 to 5o... give the syntax...
1.What is the default print format in cobol?
give the examples for strings and unstrings in cobol
How to define a array dynamically.....
What is SET TO TRUE all about, anyway?
I try to use some column names in my cobol progorm but these column not in db2 table ..when do i get error ..while bind time or runtime?
there is a file whose ORGANISATION is INDEXED.you want to read the records from the file in RANDOM fashion as well as sequentially.then which of the access mode would you specify? a.SEQUENTIAL b.RANDOM c.DYNAMIC D.ACCESS MODE has nothing to do with it
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning
Have you used the sort in your project?for this type of questions any working on real time project give the eg. with real time scenario.
What is the difference between a binary search and a sequential search?
how can we get current dat and time thru cobol pgm