What are differences between Static Call and Dynamic Call?
Answer Posted / s jana
in static call only value will be pass to called module,but
in dynamic call called module returns value to calling
module.
| Is This Answer Correct ? | 1 Yes | 14 No |
Post New Answer View All Answers
How do we get current date from system with century in COBOL?
Which is not true about evaluate statement
What is the default value(s) for an initialize and what keyword allows for an override of the default?
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
What is link edit in cobol?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?
) How do u handle errors in BMS macro
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
For rewrite, why is it mandatory that file needs to be opened?
Why did you choose to work with ibm mainframe cobol programming?
What is the difference between PIC 9.99 and PIC9v99?
How to fetch 1000 error records from VSAM file(Eg: 1000000 records present) while getting SOC7 abend ?
What is the difference between binary search and sequential search?
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.
how to move the records from file to array table. give with code example