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

How many bytes S(8) comp field occupy and its maximum value?

0 Answers  


i want to learn mainframe..any websites and material to learn from basic..? my mail id : rajeswaribe2010@gmail.com

0 Answers  


What is SDSF?

13 Answers   IBM,


Write a cobol program making use of the redefine clause.

0 Answers  


Explain Restart Logic in Cobol?

1 Answers   L&T, Syntel,






S9(5)V9(2) occupies how many bytes memory ?

6 Answers   Cap Gemini,


what is lrec=f,what is difference between f,fb,v,vb?what is default value?how do we came to know that records are in f,fb,v,vb?

2 Answers   IBM, Wipro,


how to move the records from file to array table. give with code example

0 Answers   ADP, Syntel,


How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?

0 Answers   HeadStrong,


What guidelines should be followed to write a structured cobol prgm?

0 Answers  


Move Zeroes to I move 5 to j perform para1 varying I from 10 by -2 until I = 0 display j. para1. Add 5 to j. What’ll be the value after execution of display stmt. A) 35 B) 40 C) 30 D) 25 please explain how?

5 Answers  


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.

1 Answers   DSRC,


Categories