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 |
how many subpgms we can use in a main pgm ? how do u link sub pgm to main pgm ? how can i use the parameters declared in main pgm to sub pgm ?
What is an index for tables?
What are all the divisions of a COBOL program?
in how many mode we can open a file ?
Why there is no questions in this column?
what is sysncpoint?
How many variables can be declared in w-s section.?
How can you declare the file ?
s9(18) comp-3:: What is the size of memory it takes internally?
I have a PS file and I would like to manually insert the binary values (like a COMP format) into the file. How can i do that? the way do in COMP-3 format.. suppose i want to insert -12345 in to file in comp-3 format. simply we can open a file in edit mode and do HEX-ON and insert the value . SEE BELOW-- 135 24D in 3 bytes - this will be COMP-3 presenatation of -12345.
01 a pic 9(9v99) 01 b pic 9(9.99) wht will be the stored vales in both cases
I have a cobol program with a sub program. How ca i find that it is a dynamic call? or static call..?