what is mean by design pattern
Answers were Sorted based on User's Feedback
Answer / mahesh
to provide a solution for a recurring problem in a great
object oriented system.
design pattern describes the problem which occur over and
over again in our environment and then describes the core of
the solution to that problem in a such way we can use that
solution in a million times over without doing it the same
way twice.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / madhava
design is a order how to develop designs in a specific order
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / vikas radadia
order how to develop designs in a specific order
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / mahesh
to provide a solution for a recurring problem in a great
object oriented system.
design pattern describes the problem which occur over and
over again in our environment and then describes the core of
the solution to that problem in a such way we can use that
solution in a million times over without doing it the same
way twice.
| Is This Answer Correct ? | 0 Yes | 0 No |
Define a class to represent a bank account. Include the following members: Data Members: Name of the Depositor Account Number Type of Account Balance amount in the account Member Functions: To assign the initial values. To deposit an account. To withdraw an amount after checking the balance. Write a C++ main program to display account number, name and balance.
How do you make derived class as an abstract class?
Get me an image implementation program.
how to swap the variables without using temp and operators
write string class as your own class in java without using any built-in function
What is the difference between encapsulation and polymorphism?
What is oops in simple words?
1. Wrie a function which returns the most frequent number in a list of integers. Handle the case of more than one number which meets this criterion. public static int[] GetFrequency(int[] list)
namespace is working on which compiler?
Get me a number puzzle game-program
What are virtual classes?
What is the difference between const int *ptr and int const *ptr???