which is faster either static call or dynamic call ? and specify the reasons for it ? reply fast
Answer / shaan
Static call is faster as the main program load module is
already link edited with sub program load modules unlike
dynamic call in which the link editing takes place only at
run time.
| Is This Answer Correct ? | 22 Yes | 0 No |
Mention the guidelines to write a structured cobol program?
What is the difference beetween Arrays and Tables in Cobol? please dont give the answer that arrays in cobol terminology is called tables......
What is sqlca and why is it needed in any cobol-db2 program?
what is the use of comp2 ? where can we use it with example ?
Can a Search can be done on a table with or without Index?
What are the differences between OS VS COBOL and VS COBOL II?
COMPUTE X = A * B - C * D and COMPUTE X = (A * B) - (C * D) (a) Are not the same (b) Are same (c) Syntactically wrong (d) Will yield a run time error
How many variables can be declared in w-s section.?
How do you reference the following file formats from cobol programs?
The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AND NOT (d) OR NOT AND
10 Answers Huawei, IBM, TCS,
01 x pic s9(8) comp. How will the following value be internally allocated '18787'
how many bytes does s9(15) occupy in comp1 comp2 and comp3 ?