Multiple choice technology architecture

Name the design pattern that creates an instance of several families of classes?

  1. Singleton

  2. Abstract Factory

  3. Prototype

  4. None of these

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

The Abstract Factory pattern is a creational design pattern that provides an interface for creating families of related objects without specifying their concrete classes. It allows you to create instances of several related classes through a common interface.