In the JCL, how do you define the files referred to in a
subroutine ?
Answer Posted / saikat
we cant do so
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is difference between static and dynamic call in cobol?
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into cobol program?
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
In COBOL programming, what is PERFORM? What is VARYING?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
Write a program to enter and display the names of students in a class using the occurs clause.
How to traceback if I am getting SOC7 or SOC4 abend? List down the steps
State the various causes of s0c1, s0c5 and s0c7.
How do we get current date from system with century in COBOL?
how to move the records from file to array table. give with code example
Why is it necessary that file needs to be opened in I-O mode for REWRITE?
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
What is amode(31)
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?