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 |
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
. How do we cast a variable in COBOL
what is the difference between COBOL2 AND COBOL390?
What is LENGTH in COBOL II?
Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries given below: 01 END-OF-FILE-SWITCH PIC XXX. 88 NO-MORE-RECS VALUE "YES". 88 MORE-RECS VALUE "NO". (i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. (ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. (iii) IF NO-MORE-RECS GO TO LAST-PARA. Which are wrong? (a) (i) and (ii) (b) (ii) and (iii) (c) (i) and (iii) (d) all
Size of a column has been changed in DB2 table (Suppose it was of 5 characters and later changed to 4 characters) and forgot to change the DCLGEN in COBOL program, what will happen during the execution of code? If the program Abends then what will be the error? If it doesn't abend then hpw the error can be catched?
How many sections are there in data division?.
2)Where the Plan is located in CICS-DB2?
If we put three reads in COBOL in the same para one after the other, to read a PS file,will it read the same record thrice or it will read three records sequentially? For example : Input File 01 02 03 Para 900 Read infile Display Infile rec Read infile Display infile rec Read infile Display infile rec. What will be the output?
What is the difference between a DYNAMIC and STATIC call in COBOL?
how to know that the file has 300 records how to acess it?
How to use the same COBOL program in Batch and CICS on lines? explain with an example