How many divisions we have in Cobol ?

Answers were Sorted based on User's Feedback



How many divisions we have in Cobol ?..

Answer / g.naveen

There are 4 divisions in Cobol.
1) IDENTIFICATION DIVISION.
2) ENVIRONMENT DIVISION.
3) DATA DIVISION.
4) PROCEDURE DIVISION.

Is This Answer Correct ?    18 Yes 0 No

How many divisions we have in Cobol ?..

Answer / guest

there are four divisions in cobol
identification division
environment division
data division
procedure division

Is This Answer Correct ?    5 Yes 0 No

How many divisions we have in Cobol ?..

Answer / jagan

THEY ARE FOUR DIVISIONS IN COBOL.
IDENTIFICATION DIVISION(OR)ID DIVISION.
ENVIRONMENT DIVISION.
DATA DIVISION.
PROCEDURE DIVISION.
EVERY DIVISION FURTHER DIVIDED INTO SECTIONS.
EACH SECTION FURTHER DIVIDED INTO PARAGRAPHS.
EACH PARAGRAPH FURTHER DIVIDED INTO SENTENCES.
EACH SENTENCE FURTHER DIVIDED INTO STATEMENTS/COMMANDS/VERBS

Is This Answer Correct ?    3 Yes 0 No

How many divisions we have in Cobol ?..

Answer / chinmay

There are 4 divisions in cobol
1. Identification division
2. Environment division
3. data division
4. procedure divisiion

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More COBOL Interview Questions

I have one column say 'X' defined as VARCHAR Can anyone tell me What are the different ways to update this column thru COBOL-DB2 program?

5 Answers  


What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?

7 Answers   T systems,


How to covert given string into ASCII value in COBOL/MF COBOL

3 Answers   CTS, IBM, iFlex,


record length in spool?

2 Answers   Infosys,


How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length

2 Answers   IBM, Wipro,






Can we access the a[0] in the array ?

6 Answers   DCL, IBM,


can any one help -s806

6 Answers  


What type of Call you would use if you don;t want the control back to the calling program?

8 Answers   TCS,


What are the differences bitween cobol and cobol-2?

1 Answers   Wipro,


how do you reference the ksds vsam file formats from cobol programs

0 Answers  


consider the following FD FILE-1 01 REC-1 PIC X(80) ...... WORKING-STORAGE SECTION 01 W-REC PIC X(90) ........ PROCEDURE DIVISION FIRST-PARA ....... READ FILE-1 INTO W-REC AT END MOVE 1 TO EOF-FLAG which of the following is true with respect to the above? a.REC-1 will contain nothing and W-REC will contain the contains of the record read b.REC-1 and W-REC contain the same data c.syntex is invalid and error will occur d.REC-1 and W-REC must be of same size

1 Answers   TCS,


What is a scope terminator? Give examples.

2 Answers  


Categories