Difficulty: Easy
Correct Answer: Archetype entity
Explanation:
Introduction / Context:Designs sometimes distinguish between a blueprint and its concrete occurrences. This pattern clarifies how templates (archetypes) relate to their realized instances in databases.
Given Data / Assumptions:
Concept / Approach:The archetype/instance pattern models two related entities: an Archetype (template) that defines default or canonical characteristics, and an Instance that represents a real occurrence. This differs from supertype/subtype, which models specialization within a single generalization hierarchy.
Step-by-Step Solution:
Identify that the description speaks of a template with occurrences.Map “template” to “archetype” and “occurrence” to “instance.”Select “Archetype entity” as the correct term.Verification / Alternative check:Examples: ProductTemplate (archetype) and ProductItem (instance); ContractType (archetype) and Contract (instance).
Why Other Options Are Wrong:
Common Pitfalls:Confusing supertype/subtype with archetype/instance. The first is about specialization; the second is about template versus occurrence.
Final Answer:Archetype entity
Discussion & Comments