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 |
In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?
input:- 12233344445555566666... output:- 1=1,2=4,3=9... Here firstno i.e 1 should be displayed and after that the alikeno.s should be added n displayed.i.e 2+2=4 like tat it goeson.
How to replace the GOTO statement in COBOL without changing the structure of program. e.g. consider following code... I.D. E.D. D.D. P.D. compute C = A + B. GOTO para 100-display. compute D = C - D. GOTO 200-display. some other logic...... ........ GOTO 300-para. ...... ...... GOTO 400-para. Now I want to replacce all GOTO statements without changing the structure and otput of program.
consider the following two statements MOVE 10 TO N PERFORM PARA-X N TIMES STOP RUN PARA-X MOVE 5 TO N how many times PARA-X willbe exicuted? a.10 b.5 c.infinate d.execution error
what is a load module ?
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
can anyone explain me the concept of COMP-4 PLEASE??
db2 variable decimal(15,2) what is the equalent size of cobol variable
perform I from 0 by 1 until I=5?How maney times it will executes
Define cobol?
01 MOVE 10 TO N 05 PERFOM PARA1 TIMES STOP RUN WAT WILL HAPPEN?? WILL IT RUN INFINITELY OR AN ERROR WIL BE THER BECAUSE NO OF TIMES IS NOT GIVEN??
What is the difference between Call and a Link?