Multiple choice technology platforms and products

A Factory Pattern is a ___________

  1. singleton pattern.

  2. creational pattern.

  3. command design pattern.

  4. composite design pattern.

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

The Factory Pattern is classified as a creational design pattern because it provides an interface for creating objects without specifying their exact classes. It delegates object instantiation to subclasses or factory methods, promoting loose coupling by letting code depend on abstractions rather than concrete implementations. This is in contrast to structural patterns like composite or behavioral patterns like command.