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 / 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 |
Post New Answer View All Answers
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
What is the difference between a binary search and a sequential search what are the pertinent cobol?
What are the different rules to perform a Search?
What is the usage of comp fields in cobol?
What is a SSRANGE and NOSSRANGE?
What is the use of intialize verb?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
How can you get the ksds file records into your cobol program?
A table has two indexes defined. Which one will be used by the SEARCH?
INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this