1.

What is static and dynamic linking in COBOL?

Answer»
Static LinkingDynamic Linking
Here, all the library modules are basically copied into a final executable image.This REFERS to the names of external or shared libraries that are placed on the memory.
The OS places a single FILE on the memory containing the SOURCE code and other referencing libraries.This lets programmers USE a single copy of the executable file once the program has been loaded, but not the ORIGINAL file, a copy of it.


Discussion

No Comment Found