How can I tell if a module is being called DYNAMICALLY or
STATICALLY?

Answers were Sorted based on User's Feedback



How can I tell if a module is being called DYNAMICALLY or STATICALLY?..

Answer / sudha

If there is DYNAM compiler option then the module is
dynamically called. A STATICally called module is one that
is bound with the calling module at link edit, and
therefore becomes part of the executable load module.

Is This Answer Correct ?    10 Yes 0 No

How can I tell if a module is being called DYNAMICALLY or STATICALLY?..

Answer / dev

also the method of calling is differnt in cobol code also
static call
call 'pgmname'
dyanmic call
call identifier eg call pgmvar
where pgmvar is a working storage variable having the pgm
name

Is This Answer Correct ?    10 Yes 0 No

How can I tell if a module is being called DYNAMICALLY or STATICALLY?..

Answer / arun

Answer 1 is exact. calling a program using working-storage
variable is implicit call and it does not make a dynamic
call.

Is This Answer Correct ?    8 Yes 0 No

Post New Answer

More COBOL Interview Questions

What are differences between Static Call and Dynamic Call?

10 Answers   IBM, KBC, Keane India Ltd, Verizon,


What is the mode in which you will OPEN a file for writing?

4 Answers  


What are different data types in cobol?

0 Answers  


How to code fscode 10 in cobol program? Where yoy code in your pgm?give ans for the question.

2 Answers   IBM,


how to access the file from prodution from changeman tool and to submit a file to production

1 Answers   IBM,






which one is better among static call and dynamic call?

3 Answers  


How do you define a sort file in JCL that runs the COBOL program?

6 Answers   Syntel,


Can we move X(9) to 9(9). If yes what are the ways for doing this?

3 Answers  


What is an in line PERFORM? When would you use it? Anything else to say about it?

4 Answers  


How to read records in reverse order in flat file? I know we can do it by reading all records into an array.... Then read records in reverse order by using subscript or index but can any body give me the exact code.

5 Answers   TCS,


i need a program by giving input as a abcd in any randem order but i need a output as 1234 related to abcd. i.e,. a for 1,b=2,c.....etc..

5 Answers   IBM,


why 02 level number can't be use as a separate level number like 01 or 77 ?

3 Answers  


Categories