which one is better among static call and dynamic call?
Answers were Sorted based on User's Feedback
Answer / sab
Which one to use is depends on the situation.
If your code is small then its better to use static call as
it also speed up performance and it will be easy to track
the versions in small code.
If you are working with large number of subroutines, its
always good to use dynamic linking as it will save storage
space as well as will maintain versions of code easily.
Satisfied with answer...???
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / lu
static call is faster than dynamic call, but when you
modifies a called program, you have to recompile a called
program and calling program...
dynamic call , you don't need to recompile 2 programs
calling and called...it's independent..
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / ps
call in which the called program and the calling program are
compiled and link edited together to create one load module
is static call.
call in which the calling and called program are compiled
and link edited separatly to create two load module is
dynamic calling.In dynamic calling if someone is sharing we
have to wait
| Is This Answer Correct ? | 0 Yes | 0 No |
What is SDSF?
input:-AABBCCDDEFGHIIJ output:- ABCDEFGHIJ Here in input we hav the duplicate characters i.e repeating characters.SO we should eliminate the duplicate characters and should display the output in ascending order.
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
How to define variable 9(20) in COBOL, because compiler does not allow us to declare variables with Pic 9(18). Can anyone please let me know the answer... I know one answer to this question which is to use Compiler option Arith (Extend) during Compilation. It extends the maximum limit to 9(32)..Just wanted to know if there is any other way to extend this?
what is ASRA, AEY9?
How to read a record from bottom of a file which is indexed by 'A'.
db2 variable decimal(15,2) what is the equalent size of cobol variable
How to Pass table from a cobol program to another cobol program and how to use that table in called program
how can we find total no of records in a file ....is there any utility......?
DATAONLY, MAPONLY functionality?
can we use COPY statement in w-s section? how?
why we are using set in searchall?