What COBOL construct is the COBOL II EVALUATE meant to
replace?
How to delete the records of a dataset through cobol programme?We should not use jcl utilitities like IDCAMS.
WORKING-STORAGE SECTION. 01 VAR1 COMP-2 VALUE 0. PROCEDURE DIVISION. MOVE 10.2115 TO VAR1. DISPLAY 'VAR1 =' VAR1. GOBACK. 10.2115 is stored as .10211499999999996E 02 in OS VS Cobol 10.2115 is stored as .10211500000000000E 02 in ecobol. Any reason why?
there is a file whose ORGANISATION is INDEXED.you want to read the records from the file in RANDOM fashion as well as sequentially.then which of the access mode would you specify? a.SEQUENTIAL b.RANDOM c.DYNAMIC D.ACCESS MODE has nothing to do with it
how we separate the cobol cics statements from cobol&cics programming?
1.What is the default print format in cobol?
How do you sort in a COBOL program? Give sort file definition, sort statement syntax and meaning.
What is 77 level used for ?
How can you display the SPOOL information ?
how to resolve the file status 47.......
consider the following two IF statements: IF X AND NOT Y MOVE A TO B IF Z=1 OR 9 MOVE A TO B select one of the following data divusion entries which gives identical results for both the above IF statements a.01 Z PIC 9 88 X VALUE 1.9 88 Y VALUE 0.2 THRU 8 b.01 Z PIC 9 88 X VALUE 0.2 THRU 8 Y VALUE 1.9 c.01 Z PIC 9 88 X VALUE 1.9 88 NOT-Y VALUE 0.2 THRU 1.9 d.none of yhe above
which is faster either static call or dynamic call ? and specify the reasons for it ? reply fast
plz,could any one tell me? what about EBCDIC in cobol?briefly?