Hi,
My interviewer ask A calls B and C calls B, a and b are
static c and b are dynamic.what happens if they compile and
execute at same time.
Answer Posted / venu
in static call we cannot comile the main program without
compiling the subprg(B), you can get the error that is
object not found.
in dynamic call we can compile the main program without
compilation of subprg(B), but while executing the prg then
u can get the abend i.e, load not found that means s806.
| Is This Answer Correct ? | 13 Yes | 2 No |
Post New Answer View All Answers
What is the default value(s) for an initialize and what keyword allows for an override of the default?
write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc
How did the release of cobol/370 version 1.3 improve the performance of release 1.1?
What are the different rules for performing sort operation?
INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
What are the different rules of SORT operation?
What is difference between static and dynamic call in cobol?
What is the difference between PIC 9.99 and PIC9v99?
What is the difference between comp and comp-3 usage?
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.
What are the various section in data division and briefly explain them.
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
Why is it necessary that file needs to be opened in I-O mode for REWRITE?
What is a scope terminator give example?