which is faster either static call or dynamic call ? and specify the reasons for it ? reply fast



which is faster either static call or dynamic call ? and specify the reasons for it ? reply fast..

Answer / shaan

Static call is faster as the main program load module is
already link edited with sub program load modules unlike
dynamic call in which the link editing takes place only at
run time.

Is This Answer Correct ?    22 Yes 0 No

Post New Answer

More COBOL Interview Questions

COMP-3 field occupy ?

8 Answers  


Mention the guidelines to write a structured cobol program?

0 Answers  


can u plz expain me how to declare dynamic array? what is the meaning of depending on clause in dynamic array?

3 Answers   IBM, Satyam,


in a indexed file what is procedure for read the records from 12 to 18. please give the code example

2 Answers   L&T,


I have a occurs for 100 times but it has executed 101 time what could be the reason?

4 Answers  






given the following: 77 A PIC 9V9 VALUE 9.5 77 B PIC 9 VALUE 9. 77 C PIC V9 VALUE 0.8 77 D PIC 9 77 E PIC 9 77 F PIC 9V999 what are the contenta of D E nad F after the following statements are executed: COMPUTE F ROUNDED=A+C/B MULTIPLY A BY C GIVING E ADD B C A GIVING D ROUNDED a.F=9.589 E=8 D=1 b.F=9.589 E=8 D=9 c.F=9.589 E=7 D=9 d.F=9.589 E=7 D=1

5 Answers   Broadridge, TCS,


what is the use of outrecord?

0 Answers  


How to resolve the soc4 and soc7 errors?

5 Answers   IBM, RBS,


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.

2 Answers   L&T,


I have 2 dimensional array with having 100 elements. So how to find the 11th item in an array?

6 Answers   IBM,


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

0 Answers  


I HAVE FOLLOWING DECLARATION. 02. A PIC X(10) VALUE 'XXXXXXXXXX'. 02. B REDEFINES A. 05. C PIC X(3). 05. D PIC X(3). 05. E PIC 9(3). IN MY PROG, I HAVE MOVE 1 TO E. DISPLAY A. WHAT WILL BE DISPLAYED AS A RESULT OF THIS? PLEASE EXPLAIN THE ANSWER. THANKS.

7 Answers   Amdocs,


Categories