Difference between array and sub-script ?
No Answer is Posted For this Question
Be the First to Post Answer
i declare a Table as OCCURS 2000 TIMES.If the input file has more than 2000 records will the COBOL program fail?
If we use GO BACK instead of STOP RUN in cobol?
Can we access the a[0] in the array ?
In A cobol program , we can use COPY Statement in FILE- SECTION / WORKING-STORAGE SECTION / ENVIRONMENT DIVIION basically what is the difference
01 var1 pic x(10) 01 var2 redefines var1 pic 9(10). then in procedure division move 'abcde' to var1 then waht is the value of var1 and var2
What type of SDLC u followed? Why?
write a program to eliminate duplicate records in a input file and send them to output file.THIS IS IGATE RECENT QUESTIONN.....JUST 1 WEEK BACKKKK...
What is CALL statement in COBOL?
I have two sequential files, FILE-1 and FILE-2. FILE-1 contains 2 columns(A,B) and FILE-2 contains 3 columns (C,D,E).I want an output file, FILE-3 which has all five columns with duplicates eliminated from column A.
using redefine can you redefine lower variable size to higher variable size?
db2 variable decimal(15,2) what is the equalent size of cobol variable
how to move the records from file to array table. give with code example