What is the difference between static call & Dynamic call?
Answers were Sorted based on User's Feedback
Answer / seena s
Static call -> the subpgm gets linked to the mainprogram
during compilation .
Dyanic call-> subprogeam gets linked to mainprogram during
run-time (execution).
Menory is utilised effectively in a Dynamic call.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / ms. stanley
When the Subprogram (Subroutine) Name is specified at
Run-time its called as Dynamic Call.
When the Subprogram (Subroutine) Name is pre-defined, its
called as a static call.
| Is This Answer Correct ? | 2 Yes | 3 No |
what are the steps to sort in a cobol program?
If a sub program is called from mainprogram.I have opened cursor in main program and Fetch the result in subprogram ,Is it possible ?If yes please tell me the reason.
copy 100 records without using ibm utilities
what happens if we wont give timestamp in precompilation process ?
I try to use some column names in my cobol progorm but these column not in db2 table ..when do i get error ..while bind time or runtime?
What are all the divisions of a COBOL program?
what is the difference between COBOL2 AND COBOL390?
Give some advantages of REDEFINES clause?
What are literals?
What is the significance of 'above the line' and 'below the line'?
How do we get current date from system with century?
PERFORM ACCUMULATE-TOTALS VARYING A FROM 1 BY 2 UNTIL A >2 AFTER B FROM1 BY 1 UNTIL B>2 AFTER C FROM 2 BY -1 UNTIL C<2 How many times the paragraph ACCUMULATE-TOTALS would be exicuted?