How do you differentiate between cobol and cobol-ii?
Answer / Veeresh Kumar Shakya
COBOL (Common Business Oriented Language) is a high-level programming language that was first developed in the 1950s. COBOL-II, on the other hand, is an updated version of COBOL that was introduced in the early 1980s to address some limitations and inconsistencies found in the original COBOL standard. The main differences between them include changes in syntax for some statements, new reserved words, additional data types, and improved support for structured programming.
| Is This Answer Correct ? | 0 Yes | 0 No |
When can the USING phrase be included in the call statement ?
How many divisions we have in Cobol ?
what is the advantage of using redefines instead of delaring the variables ?
01 x pic s9(8) comp. How will the following value be internally allocated '18787'
How To move a value to an array using move verb?
How to concatenation one or more string?
Explain the configuration section of a cobol program with examples of syntax.
Difference between ps, esds
I have a seq file with different fields one field is address with pic x(50) as input in a cobol program. In address there is 'PUNE' at any different positions in the address field ( form 1 t0 50) . My requirement is select the fields with address 'PUNE' by using cobol. Please suggest
Explain Restart Logic in Cobol?
what is Reentrancy and Quasi-reentrancy?
I need to compare two VSAM files, both having 'number' as key. If there is a matching record, write the data into another VSAM file. How will it be possible.