Answer Posted / suresh babu
A good program should have the qualities like:
1. Correctness: It is the most important of the qualities.
A program that fails to produce correct results is
worthless.
2. Readability: Readability means the program shoud be
written in such a way that if a person wants to read and
understand the program, it shoud be possible for him to do
so without much difficulty. It is the primary objective of
structured programming.
3. Portability: A portable program is the one that can be
executed on different machines(with different compilers)
without any change or with only minor changes if required.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the pertinent COBOL
what is difference between cobol and cobol/400
How do you define a variable of comp-1 and comp-2?
What is the difference between a binary search and a sequential search what are the pertinent cobol?
Difference between cobol and cobol-ii?
How to fetch 1000 error records from VSAM file(Eg: 1000000 records present) while getting SOC7 abend ?
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.
how to move the records from file to array table. give with code example
How do get the result of your program directly on your pc?
What is the usage of comp fields in cobol?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?
What is Pic 9v99 Indicates in COBOL?
What is rmode(any) ?
what is the use of outrecord?
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.