what is buffering and how does it apply to vsam files ?
Is it slower if you access a record through alt index as compared to primary index?
Explain the purpose of the file status clause in the select statement?
What are the advantages of vsam over isam?
what is meant by s0c-07 system abend codes?
Would you specify freespace ce for an esds?
Define free space?
name the utility program closely associated with vsam?
Explain the significance of the shareoptions parameter?
what do you mean by a vsam slot?
how do you define an altindx ? How do you use altindxs in batch, cics programs?
differentiate between sequential files and esds files in vsam?
Explain about the file objects in vsam?
What is the use of KSDS,LDS,ESDS,RRDS??what is VRRDS?? How are all these useful in realtime scenario??Plz helpme out...Its a recent question in IGATE..
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