Write down the divisions of cobol program?
No Answer is Posted For this Question
Be the First to Post Answer
hi friends,can any one post the ibm mainframe inteqview questions for 1year exp candidate,for itc infotech interview?. have any body attended for this in the past?...
How would the number +1234 be stored if a PIC clause of PICTUREs9(4) comp-3 were used?
how can we code index in an array of cobol pgm?
what is sort? whis is internal & external sort ?when do u go for inter sort & external sort? tell about some sort utilites?
Write a program that uses move corresponding.
What does the IS NUMERIC clause establish ?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
How do you define a variable of comp-1 and comp-2?
what is the advantage of using redefines instead of delaring the variables ?
have in 100 records in a flat file i want to move records like 1,3,5,7,9,11,.. to Output file1 and 2,4,6,8,10,12,14 .. records moved to Output file2..Pls Provide real time answer..
What is a scope terminator? Give examples.
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