What divisions, sections and paragraphs are mandatory for a
COBOL program?
Answer Posted / sanj
IDENTIFIACTION DIVISION.
PROGRAM ID. DUMMY.
compiles successfully and returns MAXCC = 0.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Explain the configuration section of a cobol program with examples of syntax.
How can we find that module can be called – whether DYNAMICALLY or STATICALLY?
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.
Have you used the sort in your project?for this type of questions any working on real time project give the eg. with real time scenario.
When is inspect verb is used in cobol?
Mention the guidelines to write a structured cobol program?
How arrays can be defined in COBOL?
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 a binary search and a sequential search what are the pertinent cobol?
What is the utilization of copybook in cobol? Could we utilize a similar copybook?
how do you define single dimensional array and multidimensional array in your cobol?
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?
) How do u handle errors in BMS macro?
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
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.