Question

    Which design pattern is best suited for managing the

    creation of objects without specifying their concrete classes?
    A Singleton Pattern Correct Answer Incorrect Answer
    B Factory Pattern Correct Answer Incorrect Answer
    C Observer Pattern Correct Answer Incorrect Answer
    D Adapter Pattern Correct Answer Incorrect Answer
    E Decorator Pattern Correct Answer Incorrect Answer

    Solution

    The Factory Pattern is a creational design pattern that provides an interface for creating objects in a superclass but allows subclasses to alter the type of objects that will be created. It abstracts the instantiation process, enabling flexibility and scalability in object creation. For instance, in a GUI framework, the factory method might create different types of buttons (WindowsButton, MacButton) depending on the operating system. By decoupling the client code from concrete classes, this pattern promotes adherence to the Open/Closed Principle of SOLID. Why Other Options Are Incorrect :

    1. Singleton Pattern : This ensures a class has only one instance and provides global access to it, unrelated to flexible object creation.
    2. Observer Pattern : This defines a one-to-many dependency, where changes in one object are notified to multiple observers.
    3. Adapter Pattern : This works as a bridge between incompatible interfaces, not for object creation.
    4. Decorator Pattern : This adds functionality dynamically to objects, without modifying their structure.

    Practice Next