Multiple choice technology architecture

The Pure Fabrication pattern

  1. Assigns responsibility to an intermediate object

  2. Creates a convenient class that supports high cohesion and low coupling

  3. Creates a convenient class that supports low cohesion and high coupling

  4. Protects the system from unexpected variations

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The Pure Fabrication pattern is a GRASP pattern that creates an artificial class to support high cohesion and low coupling when no existing domain class is appropriate. It helps assign responsibilities that don't naturally fit into domain objects. Option B correctly captures this concept.