What is Static,Dynamic linking ?
Answers were Sorted based on User's Feedback
Answer / amarnadh reddy
In static linking, the called program is link-edited into
the calling program.
In dynamic linking, the called and calling program will
exist as separate load modules.
If choose static or dynamic linking by choosing either the
DYNAM OR NODYNAM link edit option.
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / srikanth doki
Static linking means the main program is embedded with sub
program that means only one module will be created and it is
represented as dynam.
Dynamic linking means both main program and sub program will
separately created and if we done in any modifications it
does not reflect to sub program. It is represented as nodynam.
| Is This Answer Correct ? | 0 Yes | 1 No |
we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?
Can you please let me know the centre name of INS certification in Kolkata.
have in 100 records in a flat file i want to move records like 1,3,5,7,9,11,.. to Output file1 and 2,4,6,8,10,12,14 .. records moved to Output file2..Pls Provide real time answer..
What are ISOLATION LEVELS? Where do we need to specify them?
) what is the difference between AID and HANDLE AID?
Why would you use find and get rather than to obtain?
I have a seq file with different fields one field is address with pic x(50) as input in a cobol program. In address there is 'PUNE' at any different positions in the address field ( form 1 t0 50) . My requirement is select the fields with address 'PUNE' by using cobol. Please suggest
In the JCL, how do you define the files referred to in a subroutine ?
What is wrong with the following data declaration? 01 W-DATE PIC X(6). 05 DD PIC 99. 05 MM PIC 99. 05 YY PIC 99. (a) Nothing is wrong. (b) Under W-DATE all level 05 items are having a PIC 99 but level 01 has PIC X(6). (c) PIC can't be specified for a group item. (d) DD, MM, and YY are invalid datanames.
In which area will you utilize 88 level items in cobol?
is it mandatory to give data division before procedure division ? wht happens if i give procedure division first thn data division ? reply soon
What is the difference between working storage copybook and linkage section copybook?