OCCURS clause is used in the DATA DIVISION on data names at
(a) 01 level
(b) 77 level
(c) 88 level
(d) any level from 02 to 49
Answers were Sorted based on User's Feedback
Answer is D:
Occurs Clause is used from 02 - 49 Levels. But Some
Compliers are accepted in 01 Level also
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / prabhu shankar
the correct answer is d)
77 for Picture Clause
88 for redefine
66 for renames
01 is the starting levels for cobol.
| Is This Answer Correct ? | 4 Yes | 6 No |
how will u pass dadta to cobol+db2 program...?
I have a cobol program with a sub program. How ca i find that it is a dynamic call? or static call..?
In which area will you utilize 88 level items in cobol?
How would the number +1234 be stored if a PIC clause of PICTUREs9(4) comp-3 were used?
What type of SDLC u followed? Why?
hw to create 3 dimensional array & hw to access it?
How can we find that module can be called – whether DYNAMICALLY or STATICALLY?
I have two questions here. 1. How to read a flat file in reverse order? 2. How to read a VSAM KSDS file in reverse order? In both the cases we donot know the total number of records.
TYPES OF SORTINGS. which is more prefarable.
hi is there any means of deletin a record from a ps usin cobol not using jcl?eg if i am reading a record and if some condition is matched tat particular record must be deletd fom the ps
What is wrong with the following data declaration? 01 W-DATE PIC X(6). 05 DD PIC 99. 05 MM PIC 99. 05 YY PIC 99. (a) Nothing is wrong. (b) Under W-DATE all level 05 items are having a PIC 99 but level 01 has PIC X(6). (c) PIC can't be specified for a group item. (d) DD, MM, and YY are invalid datanames.
Which of the following EDITind and PICTURE symbols is to be used if a minus(-) is to appear before the value if the value is -ve and a plus(+) is to appear before the value if the value is +ve? (a) + (b) - (c) + OR (d) It is not possible