1.

What do you understand by static and dynamic linking?

Answer»

STATIC and dynamic LINKING are two types of linking available in COBOL. Static linking refers to the linking of subroutine into calling program and not existing as a separate module. In dynamic linking, the subroutine exists as a separate program and does not LINK to the main program. The static linking can be done by USING the NODYNAM link option and the dynamic linking can be done by using the DYNAM option.



Discussion

No Comment Found