What is the difference between a DYNAMIC and STATIC call in
COBOL?
Answer Posted / pratul singh
The Difference between DYNAMIC and STATIC is that the
STATIC call create a single load library(EXE) both Main
program as well as subprogram while the DYNAMIC call create
separate load library(EXEs) for Main program and subprogram.
STATIC CALL Example:
CALL '<subpg-name' using <argument>
DYNAMIC CALL Example:
01 WS-SUBPG-NAME PIC X(8) VALUE 'AAAAAAAA'
CALL <WS-SUBPG-NAME> USING <argument>
Is This Answer Correct ? | 9 Yes | 4 No |
Post New Answer View All Answers
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
Write the code implementing the perform … varying.
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
What is the Purpose of POINTER Phrase in STRING command in COBOL?
Define static linking and dynamic linking.
When is inspect verb is used in cobol?
Why would you use find and get rather than to obtain?
what is the use of outrecord?
What is the usage of comp fields in cobol?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?
Write a program that uses move corresponding.
What are the access modes of START statement?
What guidelines should be followed to write a structured cobol prgm?
How to use the same COBOL program in Batch and CICS on lines? explain with an example