How may divisions are there in JCL-COBOL?
Answers were Sorted based on User's Feedback
Answer / seema gulia
IDENTIFICATION DIVISION
ENVIRONMENT DIVISION
DATA DIVISION
PROCEDURE DIVISION
| Is This Answer Correct ? | 36 Yes | 0 No |
Answer / vampire
Identification division
program-id
author
installation
date written
date completed
security
Environment division
configuration section
source computer
object computer
special characters
I/o section
file control
Data division
linkage section
report section
message/communication section
screen section
working storage section
file section
Procedure division
plz correct me if i m wrong
| Is This Answer Correct ? | 15 Yes | 0 No |
Answer / ash
4
Procedure Division
Env Division
Data Division
Procedure division
| Is This Answer Correct ? | 5 Yes | 23 No |
The maximum number of dimensions that an array can have in COBOL-85 is ?
Explain what you understand by passing by value.
What is difference between COBOL and VS COBOL II?.
How to print 10 to 1 if the input have only 10 digit number?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
how do you reference the fixed unblock file formats from cobol programs
if you give cylinder(1,1)how many cylinders it will be allocate?
i declare a Table as OCCURS 2000 TIMES.If the input file has more than 2000 records will the COBOL program fail?
I have a sequential file. How do I access a record in this sequential file randomly in my program ?
What is the local-storage section?
how do you reference the variable block file formats from cobol programs
PERFORM ACCUMULATE-TOTALS VARYING A FROM 1 BY 2 UNTIL A >2 AFTER B FROM1 BY 1 UNTIL B>2 AFTER C FROM 2 BY -1 UNTIL C<2 How many times the paragraph ACCUMULATE-TOTALS would be exicuted?