Difficulty: Easy
Correct Answer: An attribute that can be decomposed into smaller component attributes
Explanation:
Introduction / Context:
Attributes in ER modeling can be simple, composite, multivalued, or derived. Recognizing each kind helps you normalize designs and choose appropriate relational columns. Composite attributes frequently appear in early, business-facing models to express natural groupings (for example, person name or address) before implementation decisions are made.
Given Data / Assumptions:
Concept / Approach:
A composite attribute is one that has meaningful subparts. In implementation, you can either store it as separate columns or as a single field depending on search and reporting needs. Modeling it as composite clarifies intent and avoids later data-quality problems (for example, searching by city requires city to be separately stored or derivable).
Step-by-Step Solution:
Verification / Alternative check:
Modeling guidelines consistently define composite as decomposable into smaller attributes and contrast it with simple (atomic) attributes that cannot be subdivided for database purposes.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
An attribute that can be decomposed into smaller component attributes
Discussion & Comments