what is level 66 means??

Answers were Sorted based on User's Feedback



what is level 66 means??..

Answer / sanjudharan

rename clause

Is This Answer Correct ?    42 Yes 3 No

what is level 66 means??..

Answer / guest

it is used to rename clause only

Is This Answer Correct ?    31 Yes 1 No

what is level 66 means??..

Answer / raghunandan

Level no. 66 can be used for data description entries
that contains RENAME clause.
Remember that level-66 entry can not rename another
level-66 entry and also it can not rename level-01, level-
77, or level-88 entry.
For logical records one or more RENAME entries can be
written.

Is This Answer Correct ?    26 Yes 4 No

what is level 66 means??..

Answer / vinodh

It is a RENAME clause.

Is This Answer Correct ?    20 Yes 4 No

what is level 66 means??..

Answer / maveric

IDENTIFICATION DIVISION.
PROGRAM-ID. PGM003.
AUTHOR. PREMYADAV.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 GROUP1.
05 REC1.
10 ELEMENT1 PIC X(3) VALUE 'WWW'.
10 ELEMENT2 PIC X(9) VALUE 'TECH'.
05 REC2.
10 ELEMENT3 PIC X(6) VALUE 'HELP'.
10 ELEMENT4 PIC X(1) VALUE '.'.
10 ELEMENT5 PIC X(3) VALUE 'COM'.
66 GROUP2 RENAMES ELEMENT2 THRU ELEMENT5.
PROCEDURE DIVISION.
10000-MAIN-PARA.
DISPLAY 'RENAME CLAUSE DEPICTED BY ' GROUP2.
STOP RUN.


OUTPUT



RENAME CLAUSE DEPICTED BY TECHHELP.COM

Is This Answer Correct ?    1 Yes 0 No

what is level 66 means??..

Answer / yogendra singh

working-storage section.
01 A1.
02 A pic x(5) value "seeta".
02 B pic x(5) value "geeta".
02 C pic x(5) value "neeta".
01 A2 RENAMES A THROUGH C.
PROCEDURE DIVISION.
DISPLAY A2.
STOP RUN.

Is This Answer Correct ?    3 Yes 8 No

what is level 66 means??..

Answer / srikanth doki

It is a rename clause. It is used for seperately grouping
the elements from sub group items.
For ex:
01 emp-details.
02 empname pic x(10).
02 empno pic x(4).
01 dept-details.
02 deptname pic x(10).
02 deptno pic x(4).
66 cust-details renames empno thru deptno.

Is This Answer Correct ?    9 Yes 17 No

Post New Answer

More COBOL Interview Questions

What is the maximum size of a 01 level item in COBOL I? in COBOL II?

2 Answers   IBM, RBS,


What will happen if you code GO BACK instead of STOP RUN in a stand alone COBOL program ?

8 Answers   Arigo Infotech, IBM,


What is 77 level used for ?

12 Answers   IBM, iGate,


How to delete the records of a dataset through cobol programme?We should not use jcl utilitities like IDCAMS.

2 Answers  


Can we move X(9) to 9(9). If yes what are the ways for doing this?

3 Answers  






I have to write to a outfile where the number of records in that file should be the header of that file using IMS.. can anyone help me in this issue

0 Answers   IBM,


What is the difference between PIC 9.99 and 9v99?

7 Answers  


i have n records in one file and in this file there is some fields and i want to count that how many sharma in my file so plz give the coding that how we read sharma ?

2 Answers  


What is the linkage section?

4 Answers  


how do you reference the variable block file formats from cobol programs

0 Answers  


I have sequential file recl 1000 i want to add another 15 bytes to it. The record length should not change..How?

1 Answers   CTS, HCL,


what is a zoned decimal data type and how it will be stored?

2 Answers   IBM,


Categories