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
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)?
Name the divisions, which are available in a 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.
What is inspect in cobol ?
Explain the configuration section of a cobol program with examples of syntax.
What are the different rules of SORT operation?
what is difference between cobol and cobol/400
Why occurs cannot be used in 01 level in COBOL?
In COBOL programming, what is PERFORM? What is VARYING?
What is the difference between perform … with test after and perform … with test before?
Have you used the sort in your project?for this type of questions any working on real time project give the eg. with real time scenario.
What do you understand by psb and acb?
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.
How to remove 2 duplicate records and copy only one using job control language?
What is the difference between binary search and sequential search?