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 |
how to move the records from file to array table. give with code example
01 a pic x(4) value 'abcd' 01 b pic 9(3) can we move from a to b.if possible what would be stored in b.
How many bytes S(8) comp field occupy and its maximum value?
how many times PARA-A is performed : PERFORM PARA-A VARYING TIMES-COUNTER FROM 1 BY 1 UNTIL TIMES-COUNTER >0 PARA-A MOVE P TO Q MOVE H TO TIMES COUNTER a.10 b.1 c.11 d.0
01 a pic 9(9v99) 01 b pic 9(9.99) wht will be the stored vales in both cases
what is the meaning of pic 9(09)v99-
we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?
What is a SSRANGE and NOSSRANGE?
i need the code for this program in cobol. 2 + 1 = 3 4+3=7 6+5=11 8+7=15 10+9=19
how to remove leading spaces and zeroes in a cobol variable.is there any easy way to do it
What is COMP SYNC?
Write a program to enter and display the names of students in a class using the occurs clause.