what is difference between business delegate and data access
object(dao)? in java?



what is difference between business delegate and data access object(dao)? in java?..

Answer / nrayakwar

Both are different design pettern. name drives their
functionality.
Business Delegate : it is used decouple presentation and
business layer. it avoids to intract presentation client to
understand your business services.

Data Access Object : DAO is used on database layer,
generally it is used to avoid database intraction by EJB or
Business Object. it is used to retreive and store data.
mostly I preferred, DAO is used with Value Objects

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More Core Java Interview Questions

What is keyword auto for?

0 Answers  


What is unicode with example?

0 Answers  


What are the files generated after using IDL to java compiler?

0 Answers  


What are the restrictions that are applied to the java static methods?

0 Answers  


Compare java and python.

0 Answers  


What is a default constraint?

0 Answers   HCL,


What is the base class for error and exception?

0 Answers  


What are the advantages of the model over the event- inheritance model?

1 Answers  


Objects or references which of them gets garbage collected?

0 Answers  


can u override the start() method of Thread class

5 Answers  


Explain method local inner classes ?

0 Answers  


What is the difference between pass by reference and pass by pointer?

0 Answers  


Categories