Which of these is NOT a benefit of using the Facade Pattern?
Increased code complexity and difficulty in understanding.
Improved code readability and maintainability.
Shielded clients from the complexities of the subsystem.
Reduced coupling between client code and the subsystem.
What is the primary intent of the Factory Method pattern in software development?
To enforce strict object creation rules through a central factory class.
To create objects directly within a class, exposing instantiation logic.
To reduce code duplication by reusing object creation code across classes.
To delegate object creation to subclasses, promoting extensibility.
How does the Command Pattern support the implementation of an 'undo' functionality?
By providing a mechanism to reverse the actions performed by a command.
By preventing any actions from being executed in the first place.
By directly modifying the state of the application to revert changes.
By relying on the operating system's built-in undo functionality.
Which of these is NOT a benefit of using design patterns?
Improved code readability
Facilitated code reuse
Increased code duplication
Enhanced code maintainability
How does the Decorator Pattern achieve the dynamic addition of responsibilities?
By modifying the source code of the decorated object at runtime.
By using inheritance to create subclasses with extended functionality.
By composing objects, where decorators wrap the component and delegate to it.
By using reflection to alter the behavior of methods during execution.
Which of the following is a potential drawback of the Singleton pattern?
It simplifies dependency injection.
It reduces the need for global variables.
It promotes code reusability.
It makes unit testing more challenging.
In Python, a common way to implement a Singleton is by using:
Abstract classes
Interfaces
Multiple inheritance
Decorators
What is a potential drawback of using the Factory Method pattern?
It prevents the use of dependency injection for object creation.
It can lead to increased code complexity, especially with many subclasses.
It violates the Open/Closed Principle, making code harder to modify.
It is not suitable for creating objects from abstract interfaces.
What potential issue could arise if an observer modifies the subject's state during notification?
It could lead to an infinite loop.
It could result in unexpected behavior and make the system harder to reason about.
All of the above
It violates the principle of least astonishment.
Which of these is a common real-world analogy used to explain the Decorator Pattern?
Adding toppings to a base coffee or ice cream.
A tree structure representing hierarchical relationships.
A factory producing different types of objects.
A chain of objects processing a request sequentially.