In a COBOL program, 2 tables TABLE1 and TABLE2 are defined
that are indexed by INDEX1 and INDEX2 respectively. Can we
use INDEX1 with TABLE2 and INDEX2 with TABLE1?
Answer / moideen
Because the index is defined to the corresponding table,
INDEX1 cannot work with TABLE2 and vice versa.
| Is This Answer Correct ? | 14 Yes | 1 No |
How can I tell if a module is being called DYNAMICALLY or STATICALLY?
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.
What is the difference between subscript and index?
how many maximum no of variables can be declared in linkage section ?
Why did you choose to work with ibm mainframe cobol programming?
Differentiate COBOL and COBOL-II?
What are the two search techniques ?
how do you reference the printer file formats from cobol programs
DATAONLY, MAPONLY functionality?
what is the difference between PA & PF keys?
What is the difference between working storage copybook and linkage section copybook?
In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?