SOFTWARE ENGINEERING

SOFTWARE DESIGN

DESIGN PATTERNS

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Encapsulate a request in an object, Allows the parameterization of clients with different requests and Allows saving the requests in a queue.
A
Bridge
B
Command
C
Composite
D
Adapter
Explanation: 

Detailed explanation-1: -The Command pattern allows requests to be encapsulated as objects, thereby allowing clients to be parametrized with different requests.

Detailed explanation-2: -Definition: The command pattern encapsulates a request as an object, thereby letting us parameterize other objects with different requests, queue or log requests, and support undoable operations.

There is 1 question to complete.