At the minimum, which division of COBOL is enough to be
coded?
Answers were Sorted based on User's Feedback
Answer / rajesh naidu
Identification Division.
Because whatever the program, at minimum it identifies
program name.
| Is This Answer Correct ? | 4 Yes | 0 No |
can any one help -s806
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
What is tne need to use sub programs in Cobol?
What is the maximum length of a field you can define using COMP-3 in COBOL?
why do u need inspect verb?
i have mainprogram and subgram...if i compile mainprogram without stop run..what will u get in compilation time?
I want to declare a field with data type Double in my COBOL program. how shall i do that ?
When is inspect verb is used in cobol?
what is S04E error in jcl?
11 Answers IBM, L&T,
What is LENGTH in COBOL II?
If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly
What is the output generated by the following code? 01 GRP-I. 05 SUBFLD1 PIC XX VALUE "AB". 05 FILTER PIC X(6) VALUE SPACES. 01 GRP-2 REDEFINED GRP-1. 05 SUB-FLD2 PIC XX. 05 SUB-FLD3 PIC XX. 05 FILTER PIC X(4). IF SUB-FLD1 NOT = SPACES DISPLAY "SUBFLD1" MOVE "ABBCCD" TO GRP-1 IF SUB-FLD3 = SPACES DISPLAY "SPACES" ELSE DISPLAY "SUBFLD3" DISPLAY "END" ELSE DISPLAY "SPACES" DISPLAY "END". (a) SUBFLD1 SUBFLD3 END (b) SPACES END (c) SUBFLD1 END (d) SUBFLD1 SPACES