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 use the same COBOL program in Batch and CICS on lines? explain with an example
Describe the difference between subscripting and indexing ?
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 ?
01 a pic x(6) value is abcdef 01 b pic x(3) move a to b wht will be the value in b ?
01 b pic +9(4) How many bytes it will take for storage???
What will happen if we generate GDG +2 version instead of +1 version?
how we rectify soc4 and soc7 error in project(need real time answer)? please reply
can u plz expain me how to declare dynamic array? what is the meaning of depending on clause in dynamic array?
Can printer files (having 133 characters) be of variable length?
what is the coding difference between COBOL and CICS.
how do u list the abended jobs?
level number 77 is used to define a)group data b)elementary data c)redefine d)none