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

What is the difference between Call and a Link?

0 Answers  


Hai friends why we need to read a file before re-write a record?

7 Answers   L&T,


88 level entry is used for (a) data items in WORKING-STORAGE SECTION (b) items with RENAMES clause (c) condition-names (d) None of the above

5 Answers   TCS,


In A cobol program , we can use COPY Statement in FILE- SECTION / WORKING-STORAGE SECTION / ENVIRONMENT DIVIION basically what is the difference

3 Answers   IBM,


what is the difference between start and startbr?

2 Answers  






What is the default value(s) for an initialize? What keyword will allow for an override of the default?

0 Answers  


What is Static and Dynamic linking ?

3 Answers  


How many sections are there in data division?.

10 Answers   Amdocs, TCS,


how do u list the abended jobs?

1 Answers   IBM,


consider the following PROCEDURE DIVISION entry OPEN EXTEND IN-FILE identify the correct statement a.organization of IN-FILE is sequential and records can be added in the beginning b.organization of IN-FILE is sequential and records can be added in the end c.organization of IN-FILE is indexed and records can be added in the beginning d.organization of IN-FILE is indexed and records can be added in the end

3 Answers   TCS,


TYPES OF SORTINGS. which is more prefarable.

2 Answers   Syntel, TCS,


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

6 Answers   Cap Gemini,


Categories