What are advantages and disadvantages of Design patterns?
Answer Posted / reejusri
Benefits:
1. enable large scale reuse of S/W
2. Helps in improve developer communication
3. capture expert knowledge and design trade-offs and make
expertise widely available
Drawbacks:
1.Do not lead to direct code reuse
2. Complex in nature
3. they are deceptivrly simple
4. they are validated by experince and discussion
| Is This Answer Correct ? | 146 Yes | 35 No |
Post New Answer View All Answers
Explain what are accessor methods?
What is enum class in c++?
What is the difference between reference and pointer?
Can we run c program in turbo c++?
Discuss the possibilities related to the termination of a program before entering the mainq method?
Evaluate !(1&&1||1&&0) a) Error b) False c) True
When one must use recursion function? Mention what happens when recursion functions are declared inline?
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
Explain 'this' pointer and what would happen if a pointer is deleted twice?
Is the declaration of a class its interface or its implementation?
If a base class declares a function to be virtual, and a derived class does not use the term virtual when overriding that class, is it still virtual when inherited by a third-generation class?
When must you use a pointer rather than a reference?
Are strings mutable in c++?
Explain friend class?
Why c++ is created?