The maximum number of dimensions that an array can have in
COBOL-85 is ?
Answers were Sorted based on User's Feedback
Which of the following characters is NOT valid in column 7? a. - b. \ c. * d. # e. $
INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
can internal sort be applied to sort ksds files?
We know that size of redefine and redefining need not to be same..Then does the below case true 01 ws-date pic 9(6). 01 ws-redf-date REDEFINES ws-date 05 ws-year pic 9(4) 05 ws-mon pic 9(2) 05 ws-day pic 9(2)
What are declaratives and what are their uses in cobol?
What is the linkage section?
What is SQL Code -904 and -903 in DB2 And how to handle it?
What is the difference between goback, stop run and exit program in cobol?
How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that
Can the OCCURS clause be at the 01 level?
If i initialize the 01 level variable in array, will it initialize all the array elements (occurs)?
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