InterviewSolution
Saved Bookmarks
| 1. |
How will you understand if your module is called statically or dynamically? |
|
Answer» We can understand it by looking at the LINKAGE editor output or from the LOAD module. In case the module is called dynamically, then that will not be part of the main module. If it is called, statically, then we can see the details of the module in the load module. There is one more type of module calling KNOWN as an IMPLICIT calling which identifies the module name by GETTING implications from the content of the storage variable consisting of the PROGRAM name. |
|