How many maximum number of procedures can we write in one
COBOL program?
Answers were Sorted based on User's Feedback
What will happen if we try to create GDG (+2) generaton instead of (+1) generation?
how can we code index in an array of cobol pgm?
what is a load module ?
Difference between cobol and cobol-ii?
01 b pic +9(4) How many bytes it will take for storage???
Can a REDEFINES clause be used along with an OCCURS clause? if yes, 01 WS-TABLE. 03 WS-TABLE-EL OCCURS 5 TIMES PIC X(1) VALUE 'A'. 03 WS-EX REDEFINES WS-TABLE-EL PIC X(5). What can you expect? if no,why?
what is Reentrancy and Quasi-reentrancy?
in how many mode we can open a file ?
What will happen if you code GO BACK instead of STOP RUN in a stand-alone COBOL program i.e. a program which is not calling any other program ?
How to Pass table from a cobol program to another cobol program and how to use that table in called program
Is this allowed? 01 WS-TABLE. 03 FILLER-X PIC X(5) VALUE 'AAAAA'. 03 WS-EX REDEFINES FILLER-X OCCURS 5 TIMES PIC X(1). can redefines clause be used with occurs clause?
can internal sort be applied to sort ksds files?