In a complex application, you have different algorithms for processing data, and you want to be able to switch between them dynamically. Which design pattern would you use to accomplish this?

  • Command
  • State
  • Strategy
  • Template Method
The Strategy pattern is suitable for situations where you have multiple algorithms and want to be able to switch between them dynamically. It defines a family of algorithms, encapsulates each one, and makes them interchangeable. This allows the client to choose the appropriate algorithm at runtime.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *