Rename is specified in which level no?
-
01
-
66
-
88
-
77
In COBOL, the RENAMES clause is specified at level 66. Level 01 is for record definitions, 77 for independent working-storage items, and 88 for condition names.
In COBOL data descriptions, special reserved level numbers exist outside the normal 01-49 hierarchy: level 66 is used for the RENAMES clause, which lets you regroup previously defined elementary items under a new name without changing the physical layout of the record. Level 88 defines condition-names (used for testing a field against a set of values), and level 77 defines independent, non-group elementary data items in the Working-Storage Section that aren't subordinate to any record. Level 01 is the standard top-level record description. Since the question asks specifically about RENAMES, level 66 is correct.