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
What are the pertinent COBOL
) How do u handle errors in BMS macro?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?
What are the pertinent COBOL commands?
Write a program to enter and display the names of students in a class using the occurs clause.
How do you reference the following file formats from cobol programs?
Our issue is there seems to be a disconnect, or no link, between our SELECT statement and our SD. We had SELECT SORT-FILE and SELECT SORT-FILE ASSIGN TO SORTWRK. ASSIGN TO SORTWRK1 SORTWRK2 SORTWRK3 SORTWRK4. with SD SORT_FILE RECORD CONTAINS 7833 CHARACTERS. In either case, at run time, the system ignored our SORTWRK# DD statements and allocated 16 sort works with the SORTWK## naming convention. Any ideas why the system does not recognize the connection? We do not even need the SORTWRK DD statements. Thanks
System Testing for Mainframe Developers What is System Testing? integration testing ? what's the procedure ..
Differentiate between structured cobol programming and object-oriented cobol programming.
How did the release of cobol/370 version 1.3 improve the performance of release 1.1?
What is link edit in cobol?
i want a program using by if, evaluate , string, unstring, perform, occurs?
what are decleratives in cobol?
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc
What are different data types in cobol?