In INITIALIZE what is Repalcing Word will do
Answer / ashar
It will initialise with other values rather than default values i.e., without 0's and '-'s
| Is This Answer Correct ? | 7 Yes | 0 No |
In CICS/VSAM every file that is accessed should be defined in FCT. we have CICS READ, WRITE, BROWSE commands for VSAM files. How does it work with DB2 tables. It know it has to do with the plan. Please expain with examples.
In the JCL, how do you define the files referred to in a subroutine ?
Can we move X(7) to S9(7) COMP?
Can we use goto statement in inline_perform ?
What is the difference between comp and comp-3 usage? Explain other COBOL usage?s.
What are the different data types in cobol?
What type of Call you would use if you don;t want the control back to the calling program?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
Can we call a CICS program from a batch program or viceversa?If so, how?
How can you get the ksds file records into your cobol program?
subscript and index r not coded in u r application program what will happen?
given the following: 77 A PIC 9V9 VALUE 9.5 77 B PIC 9 VALUE 9. 77 C PIC V9 VALUE 0.8 77 D PIC 9 77 E PIC 9 77 F PIC 9V999 what are the contenta of D E nad F after the following statements are executed: COMPUTE F ROUNDED=A+C/B MULTIPLY A BY C GIVING E ADD B C A GIVING D ROUNDED a.F=9.589 E=8 D=1 b.F=9.589 E=8 D=9 c.F=9.589 E=7 D=9 d.F=9.589 E=7 D=1