How to read the last 100 records from a COBOL file. The file
contains N number of records.
Answers were Sorted based on User's Feedback
Answer / guest1
Using FILE-AID, copy lost 100 records only in to a seperate
file and read the records.
| Is This Answer Correct ? | 1 Yes | 5 No |
Explain the difference between an internal and an external sort, the pros and cons, internal sort syntax etc.
How you can read the file from bottom?
Which is not true about evaluate statement
What is an in line PERFORM? When would you use it? Anything else to say about it?
01 xxx pic 9(4). 01 yyy pic 9(6). move 123456 into yyy. move yyy to xxx. display yyy. what would be the value of yyy
wht happens if we dnt give scope terminator ?
1)what is use of linkage section? 2)what is difference between comp and comp-3
How can we find that module can be called – whether DYNAMICALLY or STATICALLY?
we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?
how to convert vsam table into DB2 table?
what is the coding difference between COBOL and CICS.
Can we use goto statement in inline_perform ?