What are the differences bitween cobol and cobol-2?
Answer / nimsatprasad
There are at least five differences: COBOL II supports
structured programming by using in line PERFORMs and
explicit scope terminators, it introduces new features
(EVALUATE, SET .. TO TRUE, CALL .. BY CONTEXT, etc), it
permits programs to be loaded and addressed above the 16
megabyte line, it does not support many old features (READY
TRACE, REPORT-WRITER, ISAM, etc.), and it offers enhanced
CICS support.
| Is This Answer Correct ? | 5 Yes | 1 No |
What is an in-line perform ?
.How to add one input & one Out file in existing cobol program. how approach tell me step by step.
What are differences between COBOL and java ? why we are giving more preference to COBOL ?
01rec1. 05 a pic 999v99 value 123.12 05 b pic 99v9 value 45.9 02 rec2. 05 x pic 999v99 05 y pic 99v99 05 z pic x(3) value 'abc' if rec1 is moved to rec2 then what is the value of rec2?
What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?
what are the error codes in cobol, db2, cics, vsam , and jcl
hw to create 3 dimensional array & hw to access it?
How is sign stored in Packed Decimal fields and Zoned Decimal fields?
give the examples of strings in cobol
What are the rules of the move verb?
if a>b continue display x. dispaly y. end-if display 1 display 2. display 3. what should be my output ?