which one is better among static call and dynamic call?

Answers were Sorted based on User's Feedback



which one is better among static call and dynamic call?..

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

which one is better among static call and dynamic call?..

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

which one is better among static call and dynamic call?..

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

Post New Answer

More COBOL Interview Questions

Without using move verb how to move one variable to another.

5 Answers  


how to display date in reverse order if the pic clause of the is numeric suppose date is 09032010 ==> need to print in 20100309 (pic clause is numeric)

6 Answers  


how will u code parm parameter and where pls ?

3 Answers   DELL,


Name some of the examples of COBOl 11?

0 Answers   CSC,


what are the isolation levels and where we use it in the db2 program

3 Answers   TCS,






which is better comp or comp-3 in terms of memory utilization?

6 Answers  


What is report-item?

1 Answers   IBM,


How many bytes will be allocated for the following record description entries? 01 REC-A. 05 A PIC S9(4). 05 B PIC XXXBXXX. 05 C PIC ____9.99. 05 D PIC S9(5) COMP-3. 05 E PIC 9(3) COMP.

16 Answers   IBM, TCS,


What COBOL construct is the COBOL II EVALUATE meant to replace?

1 Answers  


SSRange is used to do a range check on which of the Following. SUBSCRIPT,INDEX,REFERENCE MODIFICATION,Run-time option.

3 Answers   Lehman Brothers,


Discuss about changing dataset name in proc.

0 Answers  


i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?

0 Answers  


Categories