What is the maximum length of a field you can define using COMP-3 in COBOL?
what is the use of filler in cobol programing?
what is the difference b/w level no.01 & level no.77?
what are decleratives in cobol?
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?
I have a table with 3 dimensions like this : 01 ws-table 04 ws-page occurs 3 08 ws-column occurs 2. 12 ws-record occurs 20 pic x(40). How to code with PERFORM varying with 3 dimension...I forgot..
In the JCL, how do you define the files referred to in a subroutine ?
What is COMP SYNC?
Define REDEFINE clause and Is it possible to have the redefine clause anywhere in the working storage section for a data name?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into cobol program?
What is 88 level used for ?
sample code for read a 2nd record from last in flatfile how can do?
How to replace the GOTO statement in COBOL without changing the structure of program. e.g. consider following code... I.D. E.D. D.D. P.D. compute C = A + B. GOTO para 100-display. compute D = C - D. GOTO 200-display. some other logic...... ........ GOTO 300-para. ...... ...... GOTO 400-para. Now I want to replacce all GOTO statements without changing the structure and otput of program.