i have mainprogram and subgram...if i compile mainprogram
without stop run..what will u get in compilation time?
What is Comm?
2 Answers IBM, Kemper Corporation,
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
How many sections are there in data division?.
Consider the following COBOL entries 05 X PIC 99 VALUE 10. ADD 40 X TO X. COMPUTE X = 3 * X - 40. The result in X is
What divisions, sections and paragraphs are mandatory for a COBOL program?
how would you resolve sb37 and SE37?
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..
how to change picture class of copy book variable inside program?
level number 77 is used to define a)group data b)elementary data c)redefine d)none
What is the default value of DISP parameter?
what is difference between cobol and cobol/400
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.