Ask Question
7 September, 09:51

What is the difference between a design pattern and a DLL?

+4
Answers (1)
  1. 7 September, 11:14
    0
    Design Pattern

    Design Pattern is defined as how the structure is coded across design - functionality, data abstraction, and leaving space for the future inclusions.

    The future inclusions are the business logic which are subjected to change.

    DLL - is the interface similar named in java language which specifies the contract of what the product or code is going to perform without exposing the underlying complexities of the implementation.

    Example:

    Calculator is an example of DLL class which contains - add, multiply, subtract, divide methods. The implementation class implements the calculator and write the implementation of the add, multiply methods.

    There can be another class that implements this calculator contract and implement scientific calculation logic. In this way you have different choices or flavors of the same contract.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “What is the difference between a design pattern and a DLL? ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers