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 |
wht is structured cobol pgm and non structred cobol pgm ?
If we put three reads in COBOL in the same para one after the other, to read a PS file,will it read the same record thrice or it will read three records sequentially? For example : Input File 01 02 03 Para 900 Read infile Display Infile rec Read infile Display infile rec Read infile Display infile rec. What will be the output?
1)what is use of linkage section? 2)what is difference between comp and comp-3
What is normalisation?
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
which is Best IBM Mainframe Training and Placement Institute in Ameerpet Hyderabad
how do u link sub pgm to main pgm ?
I hav vari declaration like..... 77 a pic s9(9).99. 77 b pic s9(9).99 comp. 77 c pic s9(9).99 comp-3. if i use MOVE 123456789.99 to a,b,c what happen every one working fine ?
What is the significance of the PROGRAM-ID paragraph? If this name doesnt match with the name of the COBOL program, does it make a difference? Is the name specified in the PROGRAM-ID paragraph used as a name for the load module or any such thing?
consider the following two statements MOVE 10 TO N PERFORM PARA-X N TIMES STOP RUN PARA-X MOVE 5 TO N how many times PARA-X willbe exicuted? a.10 b.5 c.infinate d.execution error
is it mandatory to give data division before procedure division ? wht happens if i give procedure division first thn data division ? reply soon
What is the use of EVALUATE statement?