Why occurs cannot be used in 01 level in COBOL?
No Answer is Posted For this Question
Be the First to Post Answer
I have a field with data type X(10). I want to perform arithmetic operation on this field? I tried doing it by moving the value into a numeric field. but it didn't work out. I am getting a S0C7 abend. Pls let me know if there is any way of getting this done?
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 the linkage section?
88 level entry is used for (a) data items in WORKING-STORAGE SECTION (b) items with RENAMES clause (c) condition-names (d) None of the above
Is it possible to mutliply a comp variable with an comp-3 variable. Will there be any error if i do it?
How do you do in-line PERFORM?
What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?
consider two data items 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
What are the two search techniques ?
How we copy a program from production region to development region.What is the process & syntax ?
how we can reverse the string in the cobol for example satheesh can be reveresed as hseehtas
Why would you use find and get rather than to obtain?