subscript and index r not coded in u r application program
what will happen?
Answers were Sorted based on User's Feedback
Answer / kiran
nothing will happen
instead of subscript and index
we have to write same data repeatedly which occurs multiple
times.
if we use subscript it means occurance of same data multiple
times
by using index we can preform operations fast y bcoze using
index reffers to register variable as we knw if we perform
actions using index variable always fast
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ganesh
YOu need to code it if you get tired of typing same data
which is being used in program
Is This Answer Correct ? | 1 Yes | 0 No |
what are the steps to sort in a cobol program?
COMP?
what is qualification on occurs clause?
We know that size of redefine and redefining need not to be same..Then does the below case true 01 ws-date pic 9(6). 01 ws-redf-date REDEFINES ws-date 05 ws-year pic 9(4) 05 ws-mon pic 9(2) 05 ws-day pic 9(2)
How does IDMS insure data integrity?
What is difference between COBOL and VS COBOL II?.
How we copy a program from production region to development region.What is the process & syntax ?
Write a cobol program making use of the redefine clause.
Determine the total no of bytes in the following. 01 rec1. 02 a pic x(6) 02 b redefines a. 03 c occus 6 times pic 9. 02 d occurs 6 times pic 9. 03 e pic x(5) 03 f pic 999.
how to resolve the file status 47.......
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
.How to add one input & one Out file in existing cobol program. how approach tell me step by step.