What divisions, sections and paragraphs are mandatory for a
COBOL program?
Answer Posted / avinanda mukherjee
IDENTIFICATION DIVISION AND PROGRAM ID IS MANDATORY..
| Is This Answer Correct ? | 19 Yes | 2 No |
Post New Answer View All Answers
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)?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into cobol program?
What rules are followed by the search verb.
How to use the same COBOL program in Batch and CICS on lines? explain with an example
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 is the use of outrecord?
What is the default value(s) for an initialize and what keyword allows for an override of the default?
What is the LINKAGE SECTION used in COBOL?
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
Why would you use find and get rather than to obtain?
How can you get the ksds file records into your cobol program?
Write a program to enter and display the names of students in a class using the occurs clause.
If you are current on the owner of a set, what is the difference between obtain next and obtain first?
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.