What is 66 level number and where it is used in real time by
software developers?
Answers were Sorted based on User's Feedback
Answer / harihar
it is used to rename .
Eg: if we want to rename PHYSICS THRU BIOLOGY as SCIENCE,
we use this level number.
01 SEM-1
02 MATHS PIC 99.
02 PHYSICS PIC 99.
01 SEM-2.
02 CHEM PIC 99.
02 BIOLOGY PIC 99.
for this,.
66 SCIENCE RENAMES PHYSICS THRU BIOLOGY.
It will give us a new group named SCIENCE.
| Is This Answer Correct ? | 16 Yes | 0 No |
Answer / reddy
Renames clause nothing but RE-GROUPING the elementry data items(variables)
real time also same
| Is This Answer Correct ? | 7 Yes | 0 No |
What is the difference between SEARCH and SEARCH ALL?
i want to store 20 digits . h will u do it in cobol ?
where will we code call by content and call by reference dude pls reply soon ?
What is the difference between external and global variables in COBOL?
we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?
I have a COBOL main program which is calling sub program, the number of calling parameters used in main program are 4 whereas in sub program it's 5. Sub program is passing 5 parameters back to main program Will there be any compilation error? Or main program parameters displays junk values?
How to Pass table from a cobol program to another cobol program and how to use that table in called program
how will u retreive value from a table.write it with syntex. 01 ws-table 05 ws-table1 occurs 10 times. 05 ws-table2 occurs 10 times. the above is 2 dimensional array..how will u retrieve 1st element of an array
Can we move SPACES to numeric field and ZEROES to alphabetic field? If yes what are the way doing this?
What is the Purpose of POINTER Phrase in STRING command
What is "Call by content" and "call by reference"?
i declare a Table as OCCURS 2000 TIMES.If the input file has more than 2000 records will the COBOL program fail?