which one is better among static call and dynamic call?
Answer Posted / ps
call in which the called program and the calling program are
compiled and link edited together to create one load module
is static call.
call in which the calling and called program are compiled
and link edited separatly to create two load module is
dynamic calling.In dynamic calling if someone is sharing we
have to wait
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are literals?
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
What is rmode(24)
What are the different types of condition in cobol and write their forms.
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
When is inspect verb is used in cobol?
what happens if parmparameter passes zero bytes to the program
Explain how you can characterize tables in cobol?
How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?
Explain the configuration section of a cobol program with examples of syntax.
i made it to stage 3 of an interview process wednessday they will quiz my knowledge again face to face for an analyst role recruiter said it will be based on Business requirements system is cobol and good ideas what they might ask etc
I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
Can we redefine the field of x(200) to less than 200?