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 |
When is a scope terminator mandatory?
Write a program to concert an Indexed file into Sequential file?
what is the difference between external and global variables?
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(9) VALUE SPACES. 01 WS-VARN REDEFINES WS-VARX PIC 9(9).
HI THIS IS ANIL. HOW TO PASS A RECORDS OF A FILE(PS OR PDS) TO AN ARRAY?
why we are using picture clause in the cobol programs?
can we read records in a file from botom to top. if possible how can we read
Define cobol?
hi is there any means of deletin a record from a ps usin cobol not using jcl?eg if i am reading a record and if some condition is matched tat particular record must be deletd fom the ps
how would find total records in files using seqientional
What is LENGTH in COBOL II?
I need to compare two VSAM files, both having 'number' as key. If there is a matching record, write the data into another VSAM file. How will it be possible.