InterviewSolution
Saved Bookmarks
| 1. |
How is CALL command different from LINK? |
|
Answer» CALL command is an actual command that initiates an external program and returns. The LINK command is also SIMILAR to CALL but it does not belong to COBOL VERB vocabulary. The LINK command runs like a separate run unit whereas CALL is EXECUTED as a single run unit. |
|