Under which scenario you would go for a static call as
opposed to dynamic call?
Answers were Sorted based on User's Feedback
Answer / shailesh_do
Again I believe there is performance factor involved apart
from compilation overhead for static calls.
Performance wise static call stands better than dynamic
calls as load need not to be linked at every execution for
static calling.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / preeti
If you have less storage space then you can use static call
at the place of dynamic call.
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / lu
it's up to you....
Static call ==> when u modify the called program, you have
to recompile 3 programs (called and calling program.....
Dynamic call ===> when u modify the called program, u
recompile only the called program...
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / suputhru
If you have less storage space then you can use static call
at the place of dynamic call.
Performance wise static call stands better than dynamic
calls as load need not to be linked at every execution for
static calling.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / rajesh
If you want to execute all the subprograms with the caling
program every time U ve to go for static call.
| Is This Answer Correct ? | 0 Yes | 3 No |
What are some examples of command terminators?
What are the cobol coding sheets?
What is the purpose of Identification Division?
What will happen if we generate GDG +2 version instead of +1 version?
Name some of the examples of COBOl 11?
in cobol i have one file it contains records like 10,4,23,98,7,90..... total records 100. iwant 10 to 20 in reverse order in cobol environ ment any one please give the answer......
copy 100 records without using ibm utilities
created cluster using IDCAMS ..that is empty ..when i write a program for read using Input ..wil it open the cluster or gives any error?
Consider the following COBOL entries 05 X PIC 99 VALUE 10. ADD 40 X TO X. COMPUTE X = 3 * X - 40. The result in X is
How many divisions we have in Cobol ?
WHAT IS SOC3?HOW IT CAN BE RESOLVED?
how do you move only numeric data from A to B 01 A pic x(10) value 'a1b2c34d5e'. 01 B pic x(5).