Difficulty: Easy
Correct Answer: Overlap with partial specialization
Explanation:
Introduction / Context:Two key decisions in supertype/subtype modeling are disjointness (disjoint vs. overlap) and completeness (total vs. partial). These affect constraints and implementation.
Given Data / Assumptions:
Concept / Approach:Overlap means an instance may exist in multiple subtypes simultaneously. Partial means membership in at least one subtype is not required. Together, they describe “overlap with partial specialization.”
Step-by-Step Solution:
Interpret “multiple subtypes” → overlap.Interpret “does not have to be a member” → partial.Combine into the correct pairing.Verification / Alternative check:Modeling notations (crow’s foot, UML generalization sets) support these exact options.
Why Other Options Are Wrong:Disjoint: Conflicts with multiple membership. Total: Requires membership in at least one subtype, which the stem denies.
Common Pitfalls:Confusing total/partial with disjoint/overlap; they are independent choices.
Final Answer:Overlap with partial specialization
Discussion & Comments