i Want All cobol ERROR codes?
Answers were Sorted based on User's Feedback
Answer / padmanabha naidu.p
if you want see all cobol errrors,simple
IDENTIFICATION DIVISION.
PROGRAM ID. ERRMSG.
| Is This Answer Correct ? | 16 Yes | 11 No |
The order of precedence of arithmetic operators in an expression can be overridden with the use of (a) [] (b) () (c) {} (d) Any of the above
without performing any operations on a file how can i know whether it contains data or not
Consider the following COBOL entries: 05 X PIC 99 VALUE 10. SUBTRACT 20 FROM X. The resultant value of X wil be
Define static linking and dynamic linking.
What are ISOLATION LEVELS? Where do we need to specify them?
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
Difference between lrecl, blksize among PS, PDS issues? i.e in jcl at dcb
01 ws-p pic 9(2). 01 ws-q pic 9(2) value 01. 01 ws-r pic 9(2) value 99. p.d. compute p = q + r what will be result of p ans(00) but my question is that how i got 10 on the place of 00. (truncation will ocuure on right side not left). please tell me ?
Name the divisions, which are available in a cobol program?
what is jcl approach for programming?
Differentiate between structured cobol programming and object-oriented cobol programming.
i declare a Table as OCCURS 2000 TIMES.If the input file has more than 2000 records will the COBOL program fail?