consider the following PROCEDURE DIVISION entry
OPEN EXTEND IN-FILE
identify the correct statement
a.organization of IN-FILE is sequential and records can
be added in the
beginning
b.organization of IN-FILE is sequential and records can
be added in the
end
c.organization of IN-FILE is indexed and records can be
added in the
beginning
d.organization of IN-FILE is indexed and records can be
added in the end
Answer Posted / shiva
when ever we access sequential files in extend mode...
it will append the new record at the end of last record
and so on.....
so option b is correct
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning
Why did you choose to work with ibm mainframe cobol programming?
How did the release of cobol/370 version 1.3 improve the performance of release 1.1?
What kind of error is trapped by on size error option?
) how do u code after getting data?
Which division and paragraphs are mandatory for a COBOL program?
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?
What the difference is between continue and next sentence?
Write a program to enter and display the names of students in a class using the occurs clause.
What is the difference between PIC 9.99 and 9v99 in COBOL?
What is the usage of comp fields in cobol?
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 a report item?
What is amode(24)?
Why would you use find and get rather than to obtain?