What are the differences between OS VS COBOL and VS COBOL
II?
Answer / saikat kumar das
OS/VS Cobol programs can only run in 24 bit addressing
mode, VS Cobol II pgms can run either in 24 bit or 31 bit
addressing modes.
I. Report writer is supported only in OS/VS Cobol.
II. USAGE IS POINTER is supported only in VS COBOL II.
III. Reference modification e.g.: WS-VAR(1:2) is supported
only in VS COBOL II.
IV. EVALUATE is supported only in VS COBOL II.
V. Scope terminators are supported only in VS COBOL II.
VI. OS/VS Cobol follows ANSI 74 stds while VS COBOL II
follows ANSI 85 stds.
VII. Under CICS Calls between VS COBOL II programs are
supported.
| Is This Answer Correct ? | 10 Yes | 0 No |
i Want All cobol ERROR codes?
What are various search techniques in cobol? Explain.
What the difference is between continue and next sentence?
How to read records in reverse order in flat file? I know we can do it by reading all records into an array.... Then read records in reverse order by using subscript or index but can any body give me the exact code.
What is mean by maxcc
write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc
What are the two search techniques ?
what is MSGLEVEL?
The maximum number of dimensions that an array can have in COBOL-85 is ?
how would find total records in files using seqientional
how to code in cobol while using variable block file?
consider the following piece of code 01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable