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

A paragraph PARA-X is to be executed when none of the data names A, B and C have value of 1. Which of the following will achieve this ? (a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X (B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X (C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X (C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X

3 Answers   TCS,


i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this

0 Answers  


How to read a record from bottom of a file which is indexed by 'A'.

4 Answers   Oracle,


How to read records from flat file in reverse order through COBOL program?

14 Answers   Accenture, Broadridge, IBM, MAT, Polaris, SPIC, Syntel, TCS, Wipro,


Explain what you understand by passing by value.

0 Answers  






How do we get current date from system with century?

2 Answers  


What is 77 level used for ?

12 Answers   IBM, iGate,


In an EVALUTE statement is the order of the WHEN clauses significant?

4 Answers  


How much salary you are expecting? If they ask in an interview, what we have to tell?

6 Answers   Tech Mahindra, Wipro,


what will happen if pass values more than 100 using PARM parameter?

1 Answers  


How to pass return codes from cobol to jcl?

5 Answers  


What is the meaning of 'Eject' verb in cobol?

2 Answers   TCS, Wipro,


Categories