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 |
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
what is Pic 9v99 Indicates?
can we redefine 77 level item is it possible
we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?
Write a program to concert an Indexed file into Sequential file?
The disposition parameter in the jcl is share ( DISP+SHR ) and the program opens file in extend mode what will happen?
COMPUTE X = A * B - C * D and COMPUTE X = (A * B) - (C * D) (a) Are not the same (b) Are same (c) Syntactically wrong (d) Will yield a run time error
In an array processing what is the thing that can be done by using subscripts but not by using index
What are the two search techniques ?
I have two questions here. 1. How to read a flat file in reverse order? 2. How to read a VSAM KSDS file in reverse order? In both the cases we donot know the total number of records.
maximum of how many screens we can open in emulator
is it possible to pass an SQL query inside a jcl which is inside a cobol program?