which is better either static call or dynamic call?
and why?
Answer Posted / mahi
dynamic call is much better than static
static call;
main program object code and sub program object code loaded
in one loadlibrary
if any change in code both has to be compiled
dynamic call;
main program object code and sub program object code loaded
in different loadlibraries
if any change in code both need not to be compiled
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
what is difference between cobol and cobol/400
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
What are the access modes of START statement?
) what is the difference between AID and HANDLE AID?
Is it possible that the redefines clause has different picture clauses compared to the one it redefined?
What is the compute verb? How is it used?
I have a File that has duplicate records. I need only those records that occur more than thrice.?
Write a program that uses move corresponding.
What are different data types in cobol?
How can you get the ksds file records into your cobol program?
input= ,,,, mainframe training ,,, hyderabad .... location.... output1=$ mainframe training in hyderabad location$ output2=**** mainframe training in hyderabad location ****. In this pgn when we give input considering the spaces the output is displayed in this format.Like in the place of ,,,, $ should be displayed likewise.So please helpmeout.
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?
What is the difference between perform … with test after and perform … with test before?
How do we get current date from system with century in COBOL?
Write the code to count the sum of n natural numbers.