I have a cobol program with a sub program. How ca i find that
it is a dynamic call? or static call..?
Answer Posted / seema dawlekar
In a main program if we are calling subprogram directly ie
by giving 'call subprog' then it is static call.
ex:call subprog.
if we are moving the subprogram name to the working storage
variable and calling the working storage variable then it a
dynamic call ie.,
ex:
01 ws-var1 pic x(10).
move subpgrog to ws-var1.
call ws-var1.
| Is This Answer Correct ? | 7 Yes | 7 No |
Post New Answer View All Answers
Differentiate between structured cobol programming and object-oriented cobol programming.
How you can read the file from bottom?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
) How do u handle errors in BMS macro?
Which mode is used to operate the sequential file?
how to move the records from file to array table. give with code example
HOw can I get the negative sign while deduct high value from low value
1.Is it possible to move the data from 99.99 to 99v99? 2.What is the CICS-vsam Compilation process? 3.In My GDG 5 generation will be there GDG3 got an abend what will happen? 4.In my GDG first generation is +1 And I want to add the new generation what will happen previous generation? 5.How can you give the PIC clause below conditions A). s9 (reddy), B). s9 (5) occurs 5 times? 6.How override the proc from a particular step? and what is symbolic and override Procs?
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
Give some examples of command terminators?
In COBOL programming, what is PERFORM? What is VARYING?
What is the difference between PIC 9.99 and PIC9v99?
What is an in line perform? When would you use it? Anything else you wish to say about it.
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
What is length is cobol?