Why occurs cannot be used in 01 level in COBOL?
No Answer is Posted For this Question
Be the First to Post Answer
If you were passing a table via linkage, which is preferable - a subscript or an index?
How to code fscode 10 in cobol program? Where yoy code in your pgm?give ans for the question.
Why there is no questions in this column?
I have to write to a outfile where the number of records in that file should be the header of that file using IMS.. can anyone help me in this issue
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(10) VALUE 'ABCDEFGHIJ'. 01 WS-VARN REDEFINES WS-VARX PIC 9(5) VALUE '12345'. What will happen I am going to Display the WS-VARX and WS- VARN?
how to access vsam files in cobol and how to differentiate that this is ESDS file
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?
What is Control Break processing ?
How do you come out of an EVALUATE statement?
comp-3 field occupy?
Can a REDEFINES clause be used along with an OCCURS clause? if yes, 01 WS-TABLE. 03 WS-TABLE-EL OCCURS 5 TIMES PIC X(1) VALUE 'A'. 03 WS-EX REDEFINES WS-TABLE-EL PIC X(5). What can you expect? if no,why?
what are the paramater we cannot use in procedure?how many instream we can write in single jcl?can we call instream to catalog and ctalog to instream?