How can you get the ksds file records into your cobol program?
No Answer is Posted For this Question
Be the First to Post Answer
I want ALL jcl ERROR cods
What is the file organization clause ?
what is subscript in cobol?give realtime example?
How many sections are there in data division in COBOL?
Consider the following: 77 A PIC 9(10) 77 B PIC 9(10) 77 C PIC 9(19) MULTIPLY AB BY B GIVING C Which of the following is true ? (a) The execution of the above may result in size error. (b) The execution of the above will result in size error. (c) The definition of C is invalid resulting in compilation error. (d) No error will be thee and the program would proceed correctly.
The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AND NOT (d) OR NOT AND
10 Answers Huawei, IBM, TCS,
what is meant by binary search?
how to display the dataset information?
have in 100 records in a flat file i want to move records like 1,3,5,7,9,11,.. to Output file1 and 2,4,6,8,10,12,14 .. records moved to Output file2..Pls Provide real time answer..
In my table having 3000 Records. How can I delete the 500th row? (we don't know what is data inside the table)
How to display string in the reverse order using occurs clause?
consider the following two statements MOVE 10 TO N PERFORM PARA-X N TIMES STOP RUN PARA-X MOVE 5 TO N how many times PARA-X willbe exicuted? a.10 b.5 c.infinate d.execution error