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 |
which one of the following cannot cause more than one execution of paragraph that may be nam in statement. A) simple perform B) perform with time C) perform until D) perform varying
how to get last 100 records in file-aid?
tell me about impact analysis ?
How do you create a like table?
What is mainframe computer /system?
what is copybooks ? structure of copybook and fillers in copybook ? purpose of using copybook ?
what is difference between file-aid tool and file-aid utility?
Is the order of the when clause significant in an evaluate statement?
whose product is x-peditor ?
Explain paging concept in memory?
What is the function of iebgener?
01 T1. 02 month-day pic x(30) value ?jan,31, feb,28, mar,31, apr,30, may,31, june, 30? 02 new-day redefines month-day occurs 6 times 03 A pic xxx. 03 B pic 99. What are the content of A(3) and B(2) respectively A)mar,31 B) Feb,28 C) 28, Mar E)Mar, 28