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 we change the password using ALTER? anyone tried and changed?
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.
What will happen if we generate GDG (+2) version without generating (+1) version?
is it possible to pass an SQL query inside a jcl which is inside a cobol program?
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?
What R 2 of the common forms of the EVALUATE STATEMENT ?
what happens if we wont give timestamp in precompilation process ?
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?
Why we need to use redefine clause when we can define the variable seperately... what is actual need....
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?
What is normalisation?