Difficulty: Easy
Correct Answer: Record
Explanation:
Introduction / Context:
Data modeling layers range from fields to records to files/tables and then to databases. Recognizing the role of each helps you design schemas and understand how applications store and retrieve business entities like customers or orders.
Given Data / Assumptions:
Concept / Approach:
A record (row/tuple) is a set of fields that collectively represent an instance of an entity. This is the standard terminology across hierarchical, network, and relational perspectives, even though specific labels (tuple/row) may differ in relational theory.
Step-by-Step Solution:
Verification / Alternative check:
Any relational table shows the pattern: columns are fields; each row is a record describing a single entity instance.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing a file/table with a record, or a field with a record.
Final Answer:
Record
Discussion & Comments