Difficulty: Easy
Correct Answer: Incorrect
Explanation:
Introduction / Context:
 Specialization constraints include disjointness vs. overlap. Under the disjoint rule, a supertype instance may belong to no more than one subtype at a time. Overlapping allows membership in multiple subtypes simultaneously. This question asks whether the disjoint rule permits membership in more than one subtype.
Given Data / Assumptions:
Concept / Approach:
 By definition, “disjoint” means mutual exclusivity. If an instance is classified into one subtype, it cannot simultaneously be classified into another subtype of the same supertype. Therefore, the statement that an instance “can be a member of more than one subtype” contradicts the definition of disjointness and is incorrect.
Step-by-Step Solution:
Verification / Alternative check:
 In relational mapping, disjointness is often enforced with a single discriminator attribute that can take exactly one value from the set of subtype codes—making multiple memberships impossible.
Why Other Options Are Wrong:
Common Pitfalls:
 Confusing disjointness with total specialization; using multiple boolean flags that accidentally allow overlapping when disjointness is required; failing to validate constraints in the database.
Final Answer:
 Incorrect
Discussion & Comments