What are different data types in cobol?
No Answer is Posted For this Question
Be the First to Post Answer
Define static linking and dynamic linking.
If you are current on the owner of a set, what is the difference between obtain next and obtain first?
wirte a pgm in using files in which we hav 10 ,20,30 40...100 records in inputfile and i want them to be send to outputfile in reverse order. PLZ HELP ME OUT .........THIS IS A RECENT QUESTION IN IGATE..
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
How many maximum number of procedures can we write in one COBOL program?
How do you set a return code to the JCL from a COBOL program?
can we use the two 01 level in file discription ?
I had 100 records and i want to execute last three records by using cobol programming?what will be coding?
write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc
can we use reference modification an arry.
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?
i declare a Table as OCCURS 2000 TIMES.If the input file has more than 2000 records will the COBOL program fail?