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

1.Can we define condition-name conditions in FD entry.

11 Answers  


i need a small 3d program using inline and outline.

0 Answers  


a pic s9(4) comp b pic s9(4) comp-3 c ???????????????? d ???????????????? move a to c add a+B giving d. what is ur declaration for c,d?

4 Answers  


What are the pertinent COBOL commands?

0 Answers   Satyam,


study the following code 01 A1 05 B PIC 99 05 C PIC X(4) 01 A2 05 B PIC 99V99 05 C PIC A(4) pick out the valid statement from the following a.A1 and A2 can not have sub-ordinates b.A1 and A2 can have the same sub-ordinates but must have same PIC clause c.there is nothing wrong d.A1 and A2 can have same sub-ordinates provided they are not at 01 level

4 Answers   TCS,






how do you reference the rrds file formats from cobol programs

0 Answers  


What will happen if you code GO BACK instead of STOP RUN in a stand-alone COBOL program i.e. a program which is not calling any other program ?

3 Answers  


what is filler and what is use of filler

3 Answers   Syntel,


how the control comes back from subprogram to mainprogram

3 Answers   IBM,


How to solve SOC7. I have the cobol coded as below 01 A PIC 9(4). 01 AIN REDEFINES A. 05 AIN1 PIC S9(4) 01 B PIC 9(4)V99. 01 BIN REDEFINES B. 05 BIN1 PIC S9(4)V99. PROCEDURE DIVISION. START-PARA. INITIALIZE A AIN B BIN. ACCEPT A B. DISPLAY 'VALUE OF A=' A. DISPLAY 'VALUE OF B=' B. DISPLAY 'VALUE OF BIN1=' BIN1. DISPLAY 'VALUE OF AIN1=' AIN1. COMPUTE AIN1 = BIN1 - AIN1. DISPLAY 'VALUE OF AIN1=' AIN1. When i'm executing this code i'm getting SOC7 for A = 12 & B=34. Can someone explain SDSF OUTPUT DISPLAY TCOM058R JOB05458 DSID 102 LINE 0 COLUMNS 02- 81 COMMAND INPUT ===> SCROLL ===> CSR ********************************* TOP OF DATA ********************************** VALUE OF A=12 VALUE OF B=34 VALUE OF BIN1=34 VALUE OF AIN1=12 CEE3207S The system detected a data exception (System Completion Code=0C7). From compile unit PROG1 at entry point PROG1 at statement 29 at compile +000004CE at address 00007ECE. Please address how to solve this issue Thanks in advance.

1 Answers  


How many types of sorts are there in cobol?

5 Answers   Cap Gemini,


what is the default print format? in cobol

3 Answers   HSBC,


Categories