A Remote Proxy is typically used for:
Providing a local representation of an object in a different process.
Controlling access to the real subject based on user roles.
Caching the results of expensive operations for performance improvement.
Creating a placeholder for an object that hasn't been fully loaded.
What is a key advantage of using a 'Flyweight Factory' in the pattern?
It simplifies the creation of complex Flyweight objects.
It enforces the use of a single instance for each unique Flyweight.
It allows for dynamic loading and unloading of Flyweight objects.
It provides a centralized point for accessing and managing extrinsic state.
In which scenario would the Prototype Pattern be LESS suitable?
When you want to avoid dependencies on concrete product classes.
When you have a large number of objects with minor variations.
When object creation is a lightweight operation.
When you need to create objects based on a configuration file at runtime.
Which aspect of the Proxy Pattern implementation often involves using an interface?
The client only interacting with the Proxy through an abstract factory.
The Proxy and the real subject implementing a common interface.
The Proxy serializing and deserializing access to the real subject.
The Proxy dynamically loading the real subject using reflection.
In the Flyweight pattern, what is the role of the 'intrinsic state'?
A factory method that creates and manages Flyweight objects.
Data that is common to multiple objects and can be shared.
An interface that defines operations for interacting with Flyweights.
Data that is unique to each object and cannot be shared.
What could be a potential drawback of using the Flyweight pattern?
Slower performance because of the overhead of managing shared objects.
Reduced code readability due to the separation of intrinsic and extrinsic state.
Limited flexibility in handling object variations and customizations.
Increased memory consumption due to object duplication.
Which of the following is NOT a core participant in the Iterator Pattern?
Iterator
ConcreteIterator
Aggregate
Factory
How does the Flyweight pattern typically handle 'extrinsic state'?
It eliminates the need for extrinsic state altogether.
It passes it as an argument to methods of the Flyweight object.
It encapsulates extrinsic state within a separate 'Context' object.
It stores it within the Flyweight object itself.
What is a potential drawback of using the State Pattern?
It increases code complexity, especially for simple state machines.
It violates the Open/Closed Principle by requiring modification for new states.
It is inefficient for handling a large number of states.
It cannot be used with other design patterns.
In a GUI toolkit using the Composite pattern, what would a 'Dialog Box' be considered?
Composite
Client
Leaf