how we separate the cobol cics statements from cobol&cics
programming?
Answer / vinay sonar
CICS statements starts with
EXEC CICS
and end with
END-EXEC.
| Is This Answer Correct ? | 3 Yes | 1 No |
What is 88 level used for ?
what is the coding difference between COBOL and CICS.
how can we code index in an array of cobol pgm?
HOW TO MOVE REDEFINES CLAUSE FROM INPUT TO OUTPUT ?
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
0 Answers TryTechnicals Pvt Ltd,
what will happen if i give program name and member name as different? program runs successful or w'll abend?
plz,could any one tell me? what about EBCDIC in cobol?briefly?
In A cobol program , we can use COPY Statement in FILE- SECTION / WORKING-STORAGE SECTION / ENVIRONMENT DIVIION basically what is the difference
Describe the cobol database components?
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
in a indexed file what is procedure for read the records from 12 to 18. please give the code example