000-349 · Question #18
If you had to create a type tree that contained numerous infix delimited groups, and numerous unsigned integer elements, what would be the easiest way to create the type tree? Create:
The correct answer is B. a category with the group and item properties. A category in a type tree allows shared properties to be defined once and inherited by all subtypes, making it the most efficient way to manage many groups with identical configurations. The question tests knowledge of category-based property inheritance.
Question
If you had to create a type tree that contained numerous infix delimited groups, and numerous unsigned integer elements, what would be the easiest way to create the type tree? Create:
Options
- Aa group with group and item properties.
- Ba category with the group and item properties.
- Cseparate groups for group properties and item properties.
- Dthe groups and elements then organize them as a subtype of a category.
How the community answered
(29 responses)- A3% (1)
- B79% (23)
- C10% (3)
- D7% (2)
Why each option
A category in a type tree allows shared properties to be defined once and inherited by all subtypes, making it the most efficient way to manage many groups with identical configurations. The question tests knowledge of category-based property inheritance.
Defining a single group with group and item properties does not provide inheritance to other groups, so each additional infix-delimited group would still require its own property definitions.
Creating a category with the group and item properties lets every subtype within that category automatically inherit the infix delimiter configuration and unsigned integer element settings without redefining them on each individual type. This inheritance mechanism reduces redundant configuration when building numerous similarly structured groups and elements.
Creating separate groups for group properties and item properties increases the number of discrete objects to maintain and provides no shared-property inheritance across the many types that need them.
Defining all groups and elements first and then reorganizing them as category subtypes adds unnecessary rework compared to establishing the category and its shared properties before creating the subtypes.
Concept tested: Type tree category inheritance for repeated group structures
Topics
Community Discussion
No community discussion yet for this question.