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 |
Which is not true about evaluate statement
What is R-mode and A-mode?
I need to compare two VSAM files, both having 'number' as key. If there is a matching record, write the data into another VSAM file. How will it be possible.
There is a production file which has millions of records in it.The program that uses it ends up with an SOC7 abend.It is sure that the abend is due to some invalid data in the file.Is there any way to debugg the SOC7 abend with out giving displays? I need the record which is cause for the abend.
Hi pls anybody tell me about " ANALYSIS DOCUMENT PREPARATION AND ESTIMATION OF TASK " (in real time project)."I want to update a sequential file in my project" for that purpose i need both structures i mean analysis document and estimation of task.
TO abend the data sholud open in which mode? 1.new 2.old 3.mod 4.shr
01 var1 pic x(10) 01 var2 redefines var1 pic 9(10). then in procedure division move 'abcde' to var1 then waht is the value of var1 and var2
What is the difference between comp and comp-3?
What is Static,Dynamic linking ?
How to declare if emp-name = AAAAA""BBB in working-storage section. After display emp-name should print like AAAAA""BB
Explain complete concept of table handling in COBOL with an example?
01 WS-NAME PIC X(10) OCCURES 2. by this we can get ws-name 2 times. My qustion is how can we access the second name