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 |
Where the Plan is located in CICS-DB2
What is the default value of DISP parameter?
how to submit a jcl by cobol program. clear me with an example.
What is the difference between comp and comp-3?
consider the following piece of code 01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable
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 ?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
why do u need inspect verb?
How do u debug a S0C7 abend? (aswered till we get the field which caused that) After knowing the field which caused that how do u know the record which caused that if it is in production env? (dumb) Ok let us assume that we got to know that 100th record caused that and I wanted to skip only 100th record from the file and process from 101th. How to do that in JCL using SORT? (tried with STOPAFT but ended up dumb when he said smthing else is ther)
which one is the best of com and com-3.using of real time ?
What type of SDLC u followed? Why?
How to read a record from bottom of a file which is indexed by 'A'.