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 many bytes does s9(7)COMP-3 field occupies?
how can we fetch 3 records in cobol pgm any coding pls ?
I've one string with spaces ( I N D I A ). My question is I want remove the spaces & combine in to single string without space (INDIA).How we can write the cobol program & wich options we need to use. Please let me know.
What is the use of EVALUATE statement?
Consider the following COBOL entries: 05 X PIC 99 VALUE 10. SUBTRACT 20 FROM X. The resultant value of X wil be
What is the difference between static call & Dynamic call?
Have you code any new programs in COBOL ? What is the functionality of the programs?
Why there is no questions in this column?
using redefine can you redefine lower variable size to higher variable size?
What compiler option would you use for dynamic linking?
if a>b continue display x. dispaly y. end-if display 1 display 2. display 3. what should be my output ?
.How to add one input & one Out file in existing cobol program. how approach tell me step by step.