i want to learn mainframe..any websites and material to
learn from basic..? my mail id : rajeswaribe2010@gmail.com
No Answer is Posted For this Question
Be the First to Post Answer
how can we code index in an array of cobol pgm?
what is internal sort and external sort ? which is preferable ?
77 a pic x(4) value '1234' -----> instead of this 'abcd' 77 b pic 9(4) value zeros. move a to b what is the answers for both cases? IS it possible? Give me elementary move rules briefly......
if you give cylinder(1,1)how many cylinders it will be allocate?
What is wrong with the following data declaration? 01 W-DATE PIC X(6). 05 DD PIC 99. 05 MM PIC 99. 05 YY PIC 99. (a) Nothing is wrong. (b) Under W-DATE all level 05 items are having a PIC 99 but level 01 has PIC X(6). (c) PIC can't be specified for a group item. (d) DD, MM, and YY are invalid datanames.
Can anyone please give the example of Inline Perform.
If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly
01 b pic +9(4) How many bytes it will take for storage???
if a pic 9(3) value 354,b pic x(2) value '46' then a)a>b 2)a<b 3)error
Why we need to use redefine clause when we can define the variable seperately... what is actual need....
what is filler and what is use of filler
01rec1. 05 a pic 999v99 value 123.12 05 b pic 99v9 value 45.9 02 rec2. 05 x pic 999v99 05 y pic 99v99 05 z pic x(3) value 'abc' if rec1 is moved to rec2 then what is the value of rec2?