Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What divisions, sections and paragraphs are mandatory for a
COBOL program?

Answers were Sorted based on User's Feedback



What divisions, sections and paragraphs are mandatory for a COBOL program?..

Answer / where the way begins

IDENTIFICATION dIVISION AND PROGRAM id ARE MANDATORY

Is This Answer Correct ?    31 Yes 2 No

What divisions, sections and paragraphs are mandatory for a COBOL program?..

Answer / avinanda mukherjee

IDENTIFICATION DIVISION AND PROGRAM ID IS MANDATORY..

Is This Answer Correct ?    19 Yes 2 No

What divisions, sections and paragraphs are mandatory for a COBOL program?..

Answer / guest_1

In order to compile and run a COBOL program under MVS,

ID DIVISION.
PROGRAM-ID. DUMMY.

are more than enough.

Is This Answer Correct ?    15 Yes 2 No

What divisions, sections and paragraphs are mandatory for a COBOL program?..

Answer / hari

Id division.
Program-id. pgmname.
Procedure division.
STOP RUN.

Is This Answer Correct ?    11 Yes 9 No

What divisions, sections and paragraphs are mandatory for a COBOL program?..

Answer / sanj

IDENTIFIACTION DIVISION.
PROGRAM ID. DUMMY.

compiles successfully and returns MAXCC = 0.

Is This Answer Correct ?    3 Yes 1 No

What divisions, sections and paragraphs are mandatory for a COBOL program?..

Answer / sharath

ID division.

Procedure Division

Above 2 divisions are mandatory

Is This Answer Correct ?    4 Yes 10 No

What divisions, sections and paragraphs are mandatory for a COBOL program?..

Answer / guest

As you said giving IDENTIFICATION DIVISION & PROGRAM-ID is
mandatory in a normal cobol program. This is important for
a program to get compiled. But if you try executing the
program with these two statements alone, you will get SOC4
abend as your program tries to access a storage location to
which it was not authorized.

For a program to run successfully, all the 4 divisions and
the program-id paragraph are mandatory.

Is This Answer Correct ?    4 Yes 11 No

What divisions, sections and paragraphs are mandatory for a COBOL program?..

Answer / elite group

Identification, Data Divison & procedure division.

If any files are there file-section. working storage section

Is This Answer Correct ?    4 Yes 19 No

Post New Answer

More COBOL Interview Questions

can we declare occurs in 01 level?

2 Answers   Temenos,


Why we should use cursor ?

3 Answers  


What is the difference between SEARCH and SEARCH ALL?

6 Answers   Cognizant,


if a file has 1000 recods how copy the records from 1 to 100 records using sort

4 Answers   IBM,


what will happen if i give program name and member name as different? program runs successful or w'll abend?

5 Answers   CTS,


How can we pass data from cobol to JCl?

7 Answers   ADP, Amdocs, IBM,


I have 2 dimensional array with having 100 elements. So how to find the 11th item in an array?

6 Answers   IBM,


How do pass the values to the parameters in cobol

2 Answers  


77 I pic 99 value 5 Perorm para-A I times. Para -A. move 10 to I. How many times the para-A will be executed.?

9 Answers   TCS,


how can we fetch 3 records in cobol pgm any coding pls ?

3 Answers   CGI,


How will 128 be saved in s9 (3) comp-3 How will 12 be saved in s9 (2) comp

3 Answers   CTS,


How can we find out wether to declare the data items like Integer, Char,Comp? If comp types how can we decide wether it is Comp and Comp3.How it is? Please Explain... Cheers.

1 Answers   Syntel,


Categories