What is the difference between static call & Dynamic call?
Answer Posted / ms. stanley
When the Subprogram (Subroutine) Name is specified at
Run-time its called as Dynamic Call.
When the Subprogram (Subroutine) Name is pre-defined, its
called as a static call.
Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
What is amode(31)
how do you reference the printer file formats from cobol programs
How do we get current date from system with century in COBOL?
What are the access modes of START statement?
How to traceback if I am getting SOC7 or SOC4 abend? List down the steps
How arrays can be defined in COBOL?
What is the problem of ordered sequential files access?
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
What is length is cobol?
How to use the same COBOL program in Batch and CICS on lines? explain with an example
Which division and paragraphs are mandatory for a COBOL program?
Explain how to differentiate call by context by comparing it to other calls?
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.