What is difference between COBOL and VS COBOL II?.
COBOL is developed and deployed in 1985. It runs in 24 bit addressing mode. But VS COBOL - II runs in 31 bit addressing mode.
| Is This Answer Correct ? | 0 Yes | 0 No |
01 a pic x(4) value 'abcd' 01 b pic 9(3) can we move from a to b.if possible what would be stored in b.
How include time & date in the report generation in cobol programing?
How would the number +1234 be stored if a PIC clause of PICTUREs9(4) comp-3 were used?
What are the situations u have used in ur project for Subcript and Index ? 1.if u use Subscript why not Index,why u choose Subscript only? 2.if u use Index why not Subscript,what abt Displacement?
perform I from 0 by 1 until I=5?How maney times it will executes
How do we get current date from system with century?
what is search and searchall?what is the diffrence between them?give an best example?
what is call by value and call by reference ?
3 Answers Infosys, ITC Indian Tobacco Company,
I have a Main Program which is calling Sub-Program which is a DB2 pgm. What will happen if I am not closing the cursor used in the Sub-program? Please advise..
What is the meaning of 'TALLING' verb in cobol?
ID DIVISION. PROGRAM-ID. PLO. DATA DIVISION. WORKING-STORAGE SECTION. 01 VAR1 PIC 9(2). 01 VAR2 PIC X(2). PROCEDURE DIVISION. ACCEPT VAR2. MOVE VAR2 TO VAR1. STOP RUN. if i give 'PI' in var2 then what will b output of progr. any abend?????
I have a File that has duplicate records. I need only those records that occur more than thrice.?