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

is it possible to rename 01 level?

4 Answers  


I have a cobol program with a sub program. How ca i find that it is a dynamic call? or static call..?

3 Answers   HCL, IBM,


How many divisions we have in Cobol ?

4 Answers   Wipro,


I have 100 records in a file.. i want to sort the records from 5 to 5o... give the syntax...

2 Answers   CTS, DSRC,


Difference between lrecl, blksize among PS, PDS issues? i.e in jcl at dcb

1 Answers  






I have two questions here. 1. How to read a flat file in reverse order? 2. How to read a VSAM KSDS file in reverse order? In both the cases we donot know the total number of records.

1 Answers   L&T,


how we can edit records in vsam data set and non vsam data sets

2 Answers   ACS,


what are the diferences b/w sub-script and index?

4 Answers  


In an EVALUATE statement, can I give a complex condition on a when clause?

2 Answers  


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.

0 Answers   Infosys,


What is a SSRANGE and NOSSRANGE?

0 Answers  


What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(10) VALUE 'ABCDEFGHIJ'. 01 WS-VARN REDEFINES WS-VARX PIC 9(5) VALUE '12345'. What will happen I want Display WS-VARX and WS-VARN?

3 Answers   Xansa,


Categories