Name the divisions in a COBOL program ?
Answers were Sorted based on User's Feedback
Answer / guest
Identification Division
Environment Division
Data Division
Procedure Division
| Is This Answer Correct ? | 64 Yes | 2 No |
Answer / sudhasini
working storage section is not a division in cobol. it
comes under data division
| Is This Answer Correct ? | 35 Yes | 2 No |
Answer / suresh babu
A COBOL program consists of FOUR divisions, each with a
specific logical function. They are:
1. IDENTIFICATION(ID) DIVISION.
2. ENVIRONMENT DIVISION.
3. DATA DIVISION.
4. PROCEDURE DIVISION.
All these divisions must begin as Area A/Margin A entries
in COBOL program.
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / jeffrey l. subar
I remember 5 back in 1972. I think it was hardware division. Printers and computer needed to be stated.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / prabu
Totally five divisions in COBOL.I got four only from you friends.I need the fifth one friends.Can You help me?
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / dipak chowdhury
Identification Division
Environment Division
Data Division
Working storage section
Procedure Division
| Is This Answer Correct ? | 15 Yes | 42 No |
what is sync clause?
Can we dynamically increase the size of occurs clause? i.e In case I an not sure of the size of array and want to increase the size at run time.If yes , how?
there is a file whose ORGANISATION is INDEXED.you want to read the records from the file in RANDOM fashion as well as sequentially.then which of the access mode would you specify? a.SEQUENTIAL b.RANDOM c.DYNAMIC D.ACCESS MODE has nothing to do with it
How is sign stored in Packed Decimal fields and Zoned Decimal fields?
i have a variable block which is used in my cobol program as input file having records of 4080 after compilation while runing the program im getiing file attribut mismatch and it is saying tht the record length of the file is 4084 can any one knw the answer how to reslove it ?
What will happen if we generate GDG +2 version instead of +1 version?
How many times the loop runs here 01 a pic 9(2) value 1. perform para1 until a=10 move 1 to a. stop run. para1: move 10 to a.
What is SDSF?
There are two flat files one having 10 records and other having 5 records. write a cobol pgm to find the duplicate records(matching records)from both files.
What are the different rules for performing sort operation?
should I use Go back in the main program ? Yes we can use Go back in main program as well.
What is the default value of DISP for temp datasets