can we read records in a file from botom to top. if
possible how can we read
Answer Posted / kk
data division.
working storage section.
01 opr pic a(1).
01 arrays.
02 aaa occurs n times.
03 name attribute.
------------------
------------------
01 I pic 9(2) value 1.
procedure division.
open file
read file at end move 'n' to opt
perform para1 until opt = 'n'
perform para2 until i = 0
para1.
move filed to aaa
add i to i.
read file at end move 'n' to opt.
perform-end.
para2.
diplay aaa(I).
compute i=i-1.
perform-end.
stop run.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the Purpose of Pointer in the string?
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.
which is Best IBM Mainframe Training and Placement Institute in Ameerpet Hyderabad
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc
Write a program that uses move corresponding.
Mention the guidelines to write a structured cobol program?
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that
A table has two indexes defined. Which one will be used by the SEARCH?
What are the different types of condition in cobol and write their forms.
What are the various section in data division and briefly explain them.
What are the different rules for performing sort operation?
What is rmode(24)
What are the rules of the move verb?
IF I mention stop run in CICS what happens?