Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is mean by design pattern

Answers were Sorted based on User's Feedback



what is mean by design pattern..

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

what is mean by design pattern..

Answer / madhava

design is a order how to develop designs in a specific order

Is This Answer Correct ?    2 Yes 1 No

what is mean by design pattern..

Answer / vikas radadia

order how to develop designs in a specific order

Is This Answer Correct ?    1 Yes 0 No

what is mean by design pattern..

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

Post New Answer

More OOPS Interview Questions

Program to print 0 to 9 in cross order

3 Answers  


What is the real time example of encapsulation?

0 Answers  


What is a class oop?

0 Answers  


write a program that takes input in digits and display the result in words from 1 to 1000

0 Answers   Wipro,


What are callback functions in c++

1 Answers   SoftTech,


How to overload postfix operator in c++

1 Answers   Mphasis,


What is abstraction in oops with example?

0 Answers  


#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

0 Answers  


Can we create object of interface?

0 Answers  


what is the difference between inter class and abstract class...?

0 Answers  


what is ltti

1 Answers   Unisys,


Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box

0 Answers  


Categories