I have a COBOL main program which is calling sub program, the number of calling parameters used in main program are 4 whereas in sub program it's 5. Sub program is passing 5 parameters back to main program Will there be any compilation error? Or main program parameters displays junk values?
1 2455i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this
1540I have many files which i am receiving from client everyday. I have one step for every file to check for empty or not. Here client gives 30 files i need to check for every file for empty or not and i need to perform 30 steps. Can I do it in single step. Dynamically i need to change the File name in my step.
1219
Can I share my data with other jobs? How?
What is DEQ?
Write the code implementing the perform … varying.
Explain how can the attributes of one sms dataset be copied to another dataset?
Which statement is used to identify the private libraries in job?
What is the advantage of dynamic generation of acb?
What is the usage of open cursor command?
What is inspect in cobol ?
1.Is it possible to move the data from 99.99 to 99v99? 2.What is the CICS-vsam Compilation process? 3.In My GDG 5 generation will be there GDG3 got an abend what will happen? 4.In my GDG first generation is +1 And I want to add the new generation what will happen previous generation? 5.How can you give the PIC clause below conditions A). s9 (reddy), B). s9 (5) occurs 5 times? 6.How override the proc from a particular step? and what is symbolic and override Procs?
What is a junction record?
What is a buffer in memory?
What is a db2 table?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
OPEN INPUT StudentFile READ StudentFile AT END SET EndOfStudentFile TO TRUE END-READ PERFORM UNTIL EndOfStudentFile DISPLAY StudentId SPACE StudentName SPACE CourseCode SPACE YOBirth READ StudentFile AT END SET EndOfStudentFile TO TRUE END-READ END-PERFORM CLOSE StudentFile STOP RUN what will be output
Why is it required to have a keyed directed retrieval?