Please let me know at which Scenarios we will go for STATIC
call or DYNAMIC
Answer Posted / gopikrishna
Dynamic calls are used when subprogram is called frequently.
===>
As far as i know, when submprogram is small it is better to
make static calls
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
how do you reference the esds vsam file formats from cobol programs
How do u write test cases?
How to traceback if I am getting SOC7 or SOC4 abend? List down the steps
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning
INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
What are all the divisions of a COBOL program?
What are the different open modes available in cobol?
What are the different rules for performing sort operation?
Write the code implementing the perform … varying.
What rules are to be followed while using the corresponding options?
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 ......
what is s000 u4087 error? please give the all error codes in cobol,jcl.
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
What do you understand by psb and acb?
I have one ps file in which there are 3 fileds emp_no,emp_name and leave_app.this ps file information give the detail of employee which is going to apply for leave.suppose emp_no=113430,emp_name=ajay,leave_app=1 that means he is going to apply for 1 day leave.and accordingling the table in db2 will be updated means if he has that no of leave in his account then he will get dat leave and updated acc. in table(leave_balance=previous leave present in table-leave_app).Now i want to check whther the updated result is correct or not by comparing the two ps file using IEBCOMPARE or icetool so what is going to be the two ps file and how its is going to be compare.