Difficulty: Easy
Correct Answer: Fields (a collection of data items)
Explanation:
Introduction / Context:
Understanding file organization helps with parsing, validation, and storage design. The question asks where a ‘‘record’’ sits in the hierarchy and what directly composes it.
Given Data / Assumptions:
Concept / Approach:
A record is the logical aggregation of fields. While characters and bits are building blocks, they are lower-level constituents of fields. The schema or record layout describes structure but is metadata separate from each data instance.
Step-by-Step Solution:
Verification / Alternative check:
Common file formats (CSV, fixed-length) define records as rows and fields as columns; a record equals a set of fields.
Why Other Options Are Wrong:
Common Pitfalls:
Conflating physical byte layout with logical composition; a record’s immediate components are fields.
Final Answer:
Fields (a collection of data items)
Discussion & Comments