Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:
 Supertype/subtype modeling promotes reuse and clarity by factoring shared properties into a generalized entity (supertype) and capturing specialized properties in subtypes. The statement describes a supertype as the holder of common attributes or relationships across subgroupings. This aligns with standard EER/UML definitions.
Given Data / Assumptions:
Concept / Approach:
 The supertype contains what is common; subtypes contain what is unique. This reduces duplication, eases maintenance, and provides a clean path to relational or object implementations. The modeling choice should reflect real business semantics, not just technical convenience.
Step-by-Step Solution:
Verification / Alternative check:
 Check for reduced redundancy in data models and simpler constraint management when common attributes reside in the supertype. Mapping to relational schemas preserves the supertype key in subtypes.
Why Other Options Are Wrong:
Common Pitfalls:
 Creating supertypes without genuine commonality; proliferating subtypes for minor differences; ignoring performance and implementation trade-offs when moving to physical design.
Final Answer:
 Correct
Discussion & Comments