What is a SSRANGE and NOSSRANGE?
No Answer is Posted For this Question
Be the First to Post Answer
What is the compute verb? How is it used?
can we declare occurs in 01 level?
How do you reference the following file formats from cobol programs?
How many maximum number of procedures can we write in one COBOL program?
Extract only those records from a PS file which are having word 'TEXT' in the records using COBOL? The word TEXT is not present in a particular position in all the records.
What is the difference between performing a SECTION and a PARAGRAPH?
Explain the difference between an internal and an external sort, the pros and cons, internal sort syntax etc.
why we are using set in searchall?
hi. This is Ram.i have one doubt.why can't we display comp-3 variables directly? let me answer quickly plez........
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
What is a scope terminator? Give examples.
IDENTIFICATION DIVISION. PROGRAM-ID. MOVEPGM. DATA DIVISION. WORKING-STORAGE SECTION. 01 WS-I PIC 9(2). PROCEDURE DIVISION. A1000-MAIN-PARA. PERFORM PARA-X WITH TEST BEFORE UNTIL WS-I= 5 STOP RUN. PARA-X. DISPLAY "BEST2". I m getting error s722,while executing the program, seems getting in loop, can anybody tell me why