How many divisions we have in Cobol ?
Answers were Sorted based on User's Feedback
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 |
Answer / guest
there are four divisions in cobol
identification division
environment division
data division
procedure division
| Is This Answer Correct ? | 5 Yes | 0 No |
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 |
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 |
How to find whether a Flat file is empty or not without Reading a file in COBOL Program. (not using JCL)
is it mandatory to give data division before procedure division ? wht happens if i give procedure division first thn data division ? reply soon
Why occurs cannot be used in 01 level in COBOL?
What is a SSRANGE and NOSSRANGE?
The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AND NOT (d) OR NOT AND
10 Answers Huawei, IBM, TCS,
What is difference between static and dynamic call in cobol?
how can we find total no of records in a file ....is there any utility......?
What is Pic 9v99 Indicates in COBOL?
0 Answers SwanSoft Technologies,
why 02 level number can't be use as a separate level number like 01 or 77 ?
The following entries appear in the WORKING-STORAGE SECTION: 01 DATE-TODAY. 05 YY PIC XX VALUE "90". 05 MM PIC XX VALUE "12". 05 DD PIC XX VALUE :31". 01 DATE-EDIT PIC XX/XX/XX. MOVE DATE-TODAY TO DATE-EDIT. (a) 901231 (b) 90/12/31 (c) 31/12/90 (d) 311290
In a file if a column account number conatain value 0001234.. how can we move the value to another variable without zero. value may contain any type such as 00123405. we need the value 1234 or 12305. how can we do that in cobol. Please help.
How to define a array dynamically.....