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 |
If we put three reads in COBOL in the same para one after the other, to read a PS file,will it read the same record thrice or it will read three records sequentially? For example : Input File 01 02 03 Para 900 Read infile Display Infile rec Read infile Display infile rec Read infile Display infile rec. What will be the output?
How to find whether a Flat file is empty or not without Reading a file in COBOL Program. (not using JCL)
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
which is Best IBM Mainframe Training and Placement Institute in Ameerpet Hyderabad
01rec1. 05 a pic 999v99 value 123.12 05 b pic 99v9 value 45.9 02 rec2. 05 x pic 999v99 05 y pic 99v99 05 z pic x(3) value 'abc' if rec1 is moved to rec2 then what is the value of rec2?
give the examples for strings and unstrings in cobol
What are the differences between COBOL and COBOL II?
If a sub program is called from mainprogram.I have opened cursor in main program and Fetch the result in subprogram ,Is it possible ?If yes please tell me the reason.
how to display the dataset information?
what if any ,is the syntex error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.
how to crack cts interview apps? NOVEMBER 21 2010
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning