wht r the advantages of 77 level number ?
Answers were Sorted based on User's Feedback
Answer / amar
77 is used for declare the independent variable in cobol programing language which is used in data division.
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / shashank naresh
This is an independent variable (not record) in the cobol.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / lu
77 level number take less space than 01 level number in
language machine......
| Is This Answer Correct ? | 7 Yes | 4 No |
Answer / kiran
77 take less memory
the most important thing is faster accessing than 01
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / srikanth doki
This is an independent variable. We cant create sub items by
using this variable and it is written in margin A.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / rkt
Can anyone let me know what is the real difference between
both of them as they both can be used to define elementory
items.
| Is This Answer Correct ? | 1 Yes | 0 No |
can any one give good example for cond 88 level number and for renames pls urgent dudes ?
what is lrec=f,what is difference between f,fb,v,vb?what is default value?how do we came to know that records are in f,fb,v,vb?
Explain complete concept of table handling in COBOL with an example?
How will 128 be saved in s9 (3) comp-3 How will 12 be saved in s9 (2) comp
Consider the following COBOL entries: 05 X PIC 99 VALUE 10. SUBTRACT 20 FROM X. The resultant value of X wil be
whats the difference between search and search all?
when SE37 SB37 and sd37 occurs how to increase the volume , primary quantity and secondary quantity?
What are the different forms of EVALUATE statement?
what is the minimum number of lines a Cobol program should have to successfully compile and run
11 Answers ABC, Societe Generale,
What is inspect in cobol ?
can u plz expain me how to declare dynamic array? what is the meaning of depending on clause in dynamic array?
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?