Explain Factory pattern?

Answers were Sorted based on User's Feedback



Explain Factory pattern?..

Answer / 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

Explain Factory pattern?..

Answer / gaurav

For better answer :
http://planetofcoders.blogspot.com/2011/10/can-you-explain-factory-pattern.html

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

How does the regular expression validator work? What are two situations when you might want to use one?

2 Answers  


What does aspcompat="true" mean?

0 Answers  


How do you relate an aspx page with its code behind page ?

4 Answers   Accenture, BirlaSoft,


Which methods validate all the controls on a page?

0 Answers  


What is the difference between a thread and a process?

3 Answers  






Explain what are webservices?

0 Answers  


How can we call webservices in Banking Applications? and where we are using it?

0 Answers   FCG,


How do we assign page-specific attributes?

0 Answers  


How do I open an ashx file?

0 Answers  


How Response.flush works in server.Execute

1 Answers  


Is it possible to perform data validations in the database?

1 Answers   Quest,


What is localhost in asp.net?

0 Answers  


Categories