What are the differences between COBOL and COBOL II?
Answer / ravi
Cobol II suports structure programming by using Inline
performs and explicit scope terminators
Cobol used for reports which is not present in COBOL II
COBOL II has many new features like EVALUATE.
| Is This Answer Correct ? | 9 Yes | 0 No |
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 EIBCALEN? Why it is used?
01 xxx pic 9(4). 01 yyy pic 9(6). move 123456 into yyy. move yyy to xxx. display yyy. what would be the value of yyy
hw to create 3 dimensional array & hw to access it?
Difference between file status codes 02 and 22.... since both are for duplicate key detection.
What is the linkage section?
What is Static and Dynamic linking ?
how can we fetch 3 records in cobol pgm any coding pls ?
What is the difference between next sentence and continue in cobol programing language?
)what is retrieve?
I have a cobol program with a sub program. How ca i find that it is a dynamic call? or static call..?
Can JUSTIFIED be used for all the data types?