Answer Posted / swetha
Factory Design Pattern is a simple decision making class
that returns one of several objects depending on the data
provided. It comes under creational type of design pattern.
Example:
Suppose say that want to write the code to perform
arithmetic calculations. Initially you decided to write code
for only Addition and Subtraction. And later on you decided
to add more functionality by including Multiplication and
Division. Now, if you don't use Factory Design Pattern, we
need to change the entire code to include additional
functionality. But, when we use Factory Design Pattern, It
is easy to add additional functionality when needed without
disturbing previous code.
In factory class we create the instance of the classes
addition, subtraction, division and multiplication based on
the operator selected.
In this way Factory Design Pattern is useful.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Can you nest updatepanel within each other?
Can you set the session out time manually?
Describe the diffeerence between inline and code behind?
What is AutoPostback?
What is connection pooling and how to enable and disable connection pooling?
Out of ASP or ASP.NET which one is stateless?
What’s the difference between asp.net web forms and asp.net mvc?
What is the importance of Global.asax in ASP.NET?
To wrap up a call to a Web service the standard used is..?
What does the orientation property do in a menu control?
Can I read the hard disk serial # of the client computer using asp.net?
What is the use of worker process in asp.net?
How do I use a proxy server when invoking a web service?
What is the difference between localization and globalization?
What is syntax code to send email from an asp.net application?