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 |
Program to print 0 to 9 in cross order
What is the real time example of encapsulation?
What is a class oop?
write a program that takes input in digits and display the result in words from 1 to 1000
What are callback functions in c++
How to overload postfix operator in c++
What is abstraction in oops with example?
#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort
Can we create object of interface?
what is the difference between inter class and abstract class...?
what is ltti
Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box