what is the minimum number of lines a Cobol program should
have to successfully compile and run
Answer Posted / sagar lahulkar
I think four lines are required
Identification division
Progam I'd..
Procedure division
Display
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the compute verb? How is it used?
What is the use of intialize verb?
What is the usage of comp fields in cobol?
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
System Testing for Mainframe Developers What is System Testing? integration testing ? what's the procedure ..
What are the pertinent COBOL commands?
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
What is an in line perform? When would you use it? Anything else you wish to say about it.
How to get the last record in vsam file in cluster? And how can you get the ksds file records into cobol program?
What are the rules of the move verb?
How do u write test cases?
Name the divisions, which are available in a cobol program?
i want to learn mainframe..any websites and material to learn from basic..? my mail id : rajeswaribe2010@gmail.com
How do you reference the fixed block file formats from cobol programs
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.