Difficulty: Easy
Correct Answer: parent
Explanation:
Introduction / Context:Naming conventions like parent and child help communicate directionality and key placement in one-to-many relationships.
Given Data / Assumptions:
Concept / Approach:The entity on the “one” side is commonly called the parent; the entity on the “many” side is the child. In tables, the child holds the foreign key referencing the parent’s key.
Step-by-Step Solution:
Recognize standard terminology used in relational and ORM contexts.Map “one” side to “parent.”Select “parent.”Verification / Alternative check:Customer (parent) to Order (child); Department (parent) to Employee (child).
Why Other Options Are Wrong:
Common Pitfalls:Assuming the parent must physically contain the child rows; in relational systems, containment is logical via keys, not physical nesting.
Final Answer:parent
Discussion & Comments