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 |
can any one help -s806
) What is the use of IGNORE?
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc
Which is not true about evaluate statement
how do you define single dimensional array and multidimensional array in your cobol?
What is the difference between performing a SECTION and a PARAGRAPH?
How do you fetch current date in normal cobol pgm and in cobol-db2 pgm?
What is amode(24), amode(31), rmode(24) and rmode(any) (applicable to only mvsesa enterprise server) ?
Without using move verb how to move one variable to another.
can we declare occurs in 01 level?
) how do u code after getting data?
I am sending values a and b with pic x(10) and pic x(10) by using call statement. In linkage section, I am receiving values with pic x(10) and pic x(11). Will my program fail? will it be compile error or run time abend?