Difficulty: Easy
Correct Answer: Full records, each with a record number assigned
Explanation:
Introduction / Context:
Indexed file organization separates the master data (full records) from index structures (keys with pointers/record numbers). Understanding what lives in each component is vital for performance tuning and for reasoning about how lookups translate into record retrieval on disk.
Given Data / Assumptions:
Concept / Approach:
The master list contains complete records with all fields. The index accelerates search by mapping keys to record identifiers (RIDs) or physical addresses. Once the index yields the record number, the system reads the corresponding full record from the master list.
Step-by-Step Solution:
Verification / Alternative check:
Descriptions of indexed-sequential files (ISAM/VSAM) consistently show master data separate from an index that stores keys and pointers to the full records.
Why Other Options Are Wrong:
Only sorted keys / only keys and record numbers: these describe the index, not the master file.
Common Pitfalls:
Assuming the master list is necessarily sorted by key; in many systems, organization may be by insertion order or by physical clustering independent of the index order.
Final Answer:
Full records, each with a record number assigned
Discussion & Comments