Do you know design patterns. List few?

devquora
devquora

Posted On: Jan 06, 2021

 

The software design pattern is a specification or set of rules for solving problems. It provides a reusable solution to a commonly occurring problem within a given context in software engineering.

Commonly design patterns are categorized into three types in which Few designed patterns are listed below:

  • Creational design pattern: The Singleton Design Pattern
  • Structural design pattern: The Decorator Design Pattern
  • Behavioral design pattern: The Command Design Pattern

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Appinventiv Php Developer Interview Questions

    How to find datatype of variable in PHP?

    You can find the datatype of a variable in PHP by using the Var_dump() and gettype() functions....

    Appinventiv Php Developer Interview Questions

    What is Interface? Why it is used?

    An interface can be defined as a platform that permits users to develop programs that mention all public methods that need to be implemented by various classes. It does not involve any complexity or d...