88 level entry is for
Answers were Sorted based on User's Feedback
Answer / raghunandan modak
A level 88 is always associated with another variable and
is a CONDITION NAME for that variable.
It does not have a PICTURE clause.
For example-
IDENTIFICATION DIVISION.
PROGRAM-ID. PROG.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 OPTION PIC 9(3).
88 F-C CLASS VALUES 81 THROUGH 100.
88 S-C CLASS VALUES 61 THROUGH 80.
PROCEDURE DIVISION.
ACCEPT OPTION.
IF F-C
DISPLAY "CONGRATS"
ELSE
DISPLAY "OK".
STOP RUN.
| Is This Answer Correct ? | 5 Yes | 0 No |
What is meant by drda?
What is the binary search?
what difference exists between control area and control interval?
subscripting can be said as A) subscripting enables us to write a move compact code in the procedure division. B) subscripting enables us to refer to any element of a table by the same data name with the facility of identifying a particular element through the values of subscript. C) Subscripting reduces the no of entries to be included in the data division D) subscripting enables us to use loops in the procedure division
How many bytes does a s9(7) sign trailing separate field occupy ?
What is drda ?
What is the difference between general testing and mainframe testing?
how can you define a dataarea(DTAARA) IN RPG? Which spec you define it C-spec/D-spec?
What is the maximum value that can be stored in s9(8) comp?
What is distributed relational database architecture? And components?
In the procedure division stmt OPEN OUTPUT FILE1. Which of the following is not true about file1. a) there must be a select clause for this file in the file-control paragraph of environment division. b) There must be an FD entry in the file section of the data division. c) The file name must appear in a WRITE stmt in the procedure division. d) There?ll be a CLOSE stmt in procedure division.
What is difference between static call and dynamic call?