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
How to know whether the module is dynamical or statistical?
Have you used the sort in your project?for this type of questions any working on real time project give the eg. with real time scenario.
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
What rules are followed by the search verb.
I have one ps file in which there are 3 fileds emp_no,emp_name and leave_app.this ps file information give the detail of employee which is going to apply for leave.suppose emp_no=113430,emp_name=ajay,leave_app=1 that means he is going to apply for 1 day leave.and accordingling the table in db2 will be updated means if he has that no of leave in his account then he will get dat leave and updated acc. in table(leave_balance=previous leave present in table-leave_app).Now i want to check whther the updated result is correct or not by comparing the two ps file using IEBCOMPARE or icetool so what is going to be the two ps file and how its is going to be compare.
What is amode(24)?
how to refer the data field?
) how do u code after getting data?
What is cobol?
how can i see junk values in dclgen or in hostvariable of comp ?
What is difference between static and dynamic call in cobol?
What is the difference between Call and a Link?
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this
) what is the difference between AID and HANDLE AID?
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?