What is an index for tables?
Answers were Sorted based on User's Feedback
Answer / shubha
index denotes the displacement value and it is system
defined.if you are using index variable with occurs
clause,it need not have be defined in the data division.but
it should be mentioned as i.e syntax is:
levelno(02 to 49) identifier occurs n times indexed by
indxname
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / guest
index is sama as primary key....
ex:if u open your book, if u can find the index inf rist
tow pages. table index is also same as this....
| Is This Answer Correct ? | 1 Yes | 0 No |
whn do i get soc7 abend while moving alphanumeric to numeric or while moving numeric to aplhanumeric please reply ASAP?
what happens when a copybook variables are declared using include statement ?
COBOL Snippet: Tell where the control will when the below code execute IF (A=B) CONTINUE ELSE NEXT SENTENCE PERFORM <IMP-STMT> END-IF.
plz any one tell clearly the justify right clause?
for an INITIALIZE and what keyword allows for an override of the default.
what is linkcard in cobol?
What do you understand by psb and acb?
please..could u give an example about USAGE IS POINTER ..and explain why and when we use it ?
Can you call an OS VS COBOL pgm from a VS COBOL II pgm ?
01 A pic 9(100) find record length of it
record length in spool?
consider the following two IF statements: IF X AND NOT Y MOVE A TO B IF Z=1 OR 9 MOVE A TO B select one of the following data divusion entries which gives identical results for both the above IF statements a.01 Z PIC 9 88 X VALUE 1.9 88 Y VALUE 0.2 THRU 8 b.01 Z PIC 9 88 X VALUE 0.2 THRU 8 Y VALUE 1.9 c.01 Z PIC 9 88 X VALUE 1.9 88 NOT-Y VALUE 0.2 THRU 1.9 d.none of yhe above