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 |
can you please let me know if there is any walkins for COBOL/PLI/DB2/IMS/JCL in pune other than IBM and ITC infotech
given the following: 77 A PIC 9V9 VALUE 9.5 77 B PIC 9 VALUE 9. 77 C PIC V9 VALUE 0.8 77 D PIC 9 77 E PIC 9 77 F PIC 9V999 what are the contenta of D E nad F after the following statements are executed: COMPUTE F ROUNDED=A+C/B MULTIPLY A BY C GIVING E ADD B C A GIVING D ROUNDED a.F=9.589 E=8 D=1 b.F=9.589 E=8 D=9 c.F=9.589 E=7 D=9 d.F=9.589 E=7 D=1
How can we know that cobol program is using report file or simple file....?
I have a sequential file. How do I access a record in this sequential file randomly in my program ?
What is the difference beetween Arrays and Tables in Cobol? please dont give the answer that arrays in cobol terminology is called tables......
In which area will you utilize 88 level items in cobol?
in how many mode we can open a file ?
Name the divisions in a COBOL program ?
can we use 77 level no for Redefines?if we use give an example?
What is the difference between a subscript and an index in a table definition?
Which is the best IBM mainframe Training Institute in Ameerpet, Hyderabad
How to find whether a Flat file is empty or not without Reading a file in COBOL Program. (not using JCL)