What are differences between Static Call and Dynamic Call?
Answer Posted / minhaj.
Static Linking means calling the subprogram directly with
name for example.
call "subprogram name", call "ca100".
Calling the subprogram with out passing the parameters in
two subprogram.
Dynamic call:
Calling the subprogram with paramets.
call "cdate4" using w-date.
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
Explain how you can characterize tables in cobol?
how do you reference the variable block file formats from cobol programs
What kind of error is trapped by on size error option?
How did the release of cobol/370 version 1.3 improve the performance of release 1.1?
How to know whether the module is dynamical or statistical?
Can a Search can be done on a table with or without Index?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
What is the utilization of copybook in cobol? Could we utilize a similar copybook?
how to refer the data field?
How do you get the data to code the BMS macro?
What the difference is between continue and next sentence?
What is the difference between Global and External Variables?
Mention the guidelines to write a structured cobol program?
Why did you choose to work with ibm mainframe cobol programming?
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?