88 class is used for
Answers were Sorted based on User's Feedback
Answer / anjireddy vintha
it is a conditional dataname level number..use of 88 is to
evaluate filestatus codes and also some more advantages are
there.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / ts nithiyanandan
condition-name condition, Several values can be checked
with one variable by declaration of all values in Data
Division.
(eg). Basic will be like 7800 8000 8200 every year
increment of 200.
| Is This Answer Correct ? | 0 Yes | 1 No |
Why we need to use redefine clause when we can define the variable seperately... what is actual need....
can we display comp-3 variables. if we want to display what we have to do . give me one example
I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......
comp-3 field occupy?
Which of the following paragraphs is compulsory in every COBOL program? (a) SPECIAL-NAMES (b) PROGRAM-ID (c) FILE-CONTROL (d) OBJECT-COMPUTER
What are the different rules for performing sort operation?
How may divisions are there in JCL-COBOL?
what is the use of comp2 ? where can we use it with example ?
In COBOL programming, what is PERFORM? What is VARYING?
When the working storage variables get allocated? a.At Compile time b.At starting of the run time c.At end of the run time. d.None of these
How to replace the GOTO statement in COBOL without changing the structure of program. e.g. consider following code... I.D. E.D. D.D. P.D. compute C = A + B. GOTO para 100-display. compute D = C - D. GOTO 200-display. some other logic...... ........ GOTO 300-para. ...... ...... GOTO 400-para. Now I want to replacce all GOTO statements without changing the structure and otput of program.
Read a flat file and write last but one (I have n records in a file I have to write n-1th) record in another flat file. Could you please provide me the code in COBOL?