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 |
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?
01 var1 pic x(10) 01 var2 redefines var1 pic 9(10). then in procedure division move 'abcde' to var1 then waht is the value of var1 and var2
What is the Purpose of POINTER Phrase in STRING command
HOw can I get the negative sign while deduct high value from low value
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
how we rectify soc4 and soc7 error in project(need real time answer)? please reply
How is sign stored in a COMP field ?
can anyone explain me the concept of COMP-4 PLEASE??
WORKING-STORAGE SECTION. 01 VAR1 COMP-2 VALUE 0. PROCEDURE DIVISION. MOVE 10.2115 TO VAR1. DISPLAY 'VAR1 =' VAR1. GOBACK. 10.2115 is stored as .10211499999999996E 02 in OS VS Cobol 10.2115 is stored as .10211500000000000E 02 in ecobol. Any reason why?
i Want All cobol ERROR codes?
how can we find total no of records in a file ....is there any utility......?
whn do i get soc7 abend while moving alphanumeric to numeric or while moving numeric to aplhanumeric please reply ASAP?