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

When is a scope terminator mandatory?

3 Answers  


Write a program to concert an Indexed file into Sequential file?

1 Answers   Covansys,


what is the difference between external and global variables?

1 Answers  


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).

8 Answers  


HI THIS IS ANIL. HOW TO PASS A RECORDS OF A FILE(PS OR PDS) TO AN ARRAY?

2 Answers  


why we are using picture clause in the cobol programs?

2 Answers  


can we read records in a file from botom to top. if possible how can we read

12 Answers   ACS,


Define cobol?

0 Answers  


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

5 Answers   iNautix,


how would find total records in files using seqientional

1 Answers   HSBC,


What is LENGTH in COBOL II?

2 Answers   CSC,


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