What is Static,Dynamic linking ?

Answers were Sorted based on User's Feedback



What is Static,Dynamic linking ?..

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

What is Static,Dynamic linking ?..

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

Post New Answer

More COBOL Interview Questions

Can we change the password using ALTER? anyone tried and changed?

0 Answers   IBM,


How many times the loop runs here 01 a pic 9(2) value 10. perform para1 a times stop run. para1: move 20 to a.

3 Answers  


What will happen if we generate GDG (+2) version without generating (+1) version?

2 Answers   IBM, T systems,


is it possible to pass an SQL query inside a jcl which is inside a cobol program?

5 Answers   CTS,


Is this allowed? 01 WS-TABLE. 03 FILLER-X PIC X(5) VALUE 'AAAAA'. 03 WS-EX REDEFINES FILLER-X OCCURS 5 TIMES PIC X(1). can redefines clause be used with occurs clause?

4 Answers  


What R 2 of the common forms of the EVALUATE STATEMENT ?

1 Answers   Cap Gemini,


what happens if we wont give timestamp in precompilation process ?

4 Answers   Covansys,


What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?

0 Answers   TryTechnicals Pvt Ltd,


How many types of sorts are there in cobol?

5 Answers   Cap Gemini,


Why we need to use redefine clause when we can define the variable seperately... what is actual need....

5 Answers   Accenture,


What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(10) VALUE 'ABCDEFGHIJ'. 01 WS-VARN REDEFINES WS-VARX PIC 9(5) VALUE '12345'. What will happen I want Display WS-VARX and WS-VARN?

3 Answers   Xansa,


What is normalisation?

2 Answers   IBM,


Categories