What is design pattern?
Answers were Sorted based on User's Feedback
Answer / reejusri
Design pattern is a general repeatable solution to a
commonly occurring problem . A design pattern is not a
finished design that can be transformed directly into code.
It is a description or template for how to solve a problem
that can be used in many different situations.
Object-oriented design patterns typically show
relationships and interactions between classes or objects,
without specifying the final application classes or objects
that are involved.
Design patterns deal specifically with problems at the
level of software design.
| Is This Answer Correct ? | 19 Yes | 0 No |
Answer / harichand tewatia
design pattern is the use of
imagination,scientificprinciple to solve the design problem.
it is not a final design.it show only size & shape of any
product
| Is This Answer Correct ? | 3 Yes | 7 No |
When we use Abstract Class and when we use Interface?where we will implement in real time?
What is the benefit of encapsulation?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
How many different levels of pointers are there?
Why Pointers are not used in C++?
Eplain extern keyword?
Can malloc be used in c++?
write a c++ program that gives output 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 using looping statement
write a program in c++ to generate imp z y x w v w x y z z y x w x y z z y x y z z y z z
What are c++ data types?
Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.
What is diamond problem in c++?