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 |
I have a field with data type X(10). I want to perform arithmetic operation on this field? I tried doing it by moving the value into a numeric field. but it didn't work out. I am getting a S0C7 abend. Pls let me know if there is any way of getting this done?
period is missing in the cobol program which error we getting
What is the use of EVALUATE statement?
example for sub strings ? and refernce modifications whit output pls
0 Answers College School Exams Tests, IBM,
What are the different ways to run a COBOL DB2 program using JCL?
Can JUSTIFIED be used for all the data types?
here is my compile and link edit steps in a jcl //COMPILE1 JOB (3CUS,S),'CCDM TEST' //STEPNAME EXEC PGM=IGYCRCTL,PARM='DYNAM,RENT,LIB,OBJECT, // OFFSET,APOST,OPTIMIZE',REGION=4096K //STEPLIB DD DSNAME=PM7351.TEST2.COB,DISP=SHR //SYSIN DD DSNAME=PM7351.TEST2.COB(PGM1),DISP=SHR //SYSUT1 DD UNIT=SYSDA,SPACE=(10,(10,10)) //SYSUT2 DD UNIT=SYSDA,SPACE=(10,(10,10)) //SYSUT3 DD UNIT=SYSDA,SPACE=(10,(10,10)) //SYSUT4 DD UNIT=SYSDA,SPACE=(10,(10,10)) //SYSUT5 DD UNIT=SYSDA,SPACE=(10,(10,10)) //SYSUT6 DD UNIT=SYSDA,SPACE=(10,(10,10)) //SYSUT7 DD UNIT=SYSDA,SPACE=(10,(10,10)) //SYSPRINT DD SYSOUT=* //SYSLIN DD DSNAME=&&LOAD,DISP=(MOD,PASS),UNIT=SYSDA, // SPACE=(10,(10,10)),DCB=BLKSIZE=400 //LKED EXEC PGM=IEWL,REGION=1024K //SYSPRINT DD SYSOUT=A //SYSLIB DD DSN=PM7351.TEST2.LOADLIB,DISP=SHR // DD DSN=PM7351.TEST2.COB(PGM1),DISP=SHR //SYSLMOD DD DSN=PM7351.TEST2.LOADLIB, // DISP=SHR //SYSUT1 DD UNIT=SYSDA,DCB=BLKSIZE=1024,SPACE=(CYL,(1,1)) //SYSTERM DD SYSOUT=* //SYSLIN DD DSN=&&LOAD,DISP=(OLD,DELETE) //SYSIN DD DUMMY i am getting IEW2013I 0F08 NO MEMBER NAME WAS SPECIFIED. MODULE WAS SAVED USING TEMPNAM1. could any one tell me the resolution for this..?
01 MOVE 10 TO N 05 PERFOM PARA1 TIMES STOP RUN WAT WILL HAPPEN?? WILL IT RUN INFINITELY OR AN ERROR WIL BE THER BECAUSE NO OF TIMES IS NOT GIVEN??
what are the diferences b/w sub-script and index?
.How to add one input & one Out file in existing cobol program. how approach tell me step by step.
how do u list the abended jobs?
how to run sub programs using static and dynamic call ...