what is difference between business delegate and data access
object(dao)? in java?
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 |
What is the properties class in java programming?
Does constructor creates the object ?
What is parameter tag and what is its use?
Why is java multithreaded?
What do you understand by copy constructor in java?
What is the transient keyword?
Consider that class classA, abstract class classB, and final classC have been defined.Which one of the following is correct? 1. classA extends classC implements classB 2. class A extends classB, classC 3. classA extends classB 4. classB implements classC
Does importing a package imports its sub-packages as well in java?
Explain different types of wrapper classes in java?
Java is based on pass by reference or pass by value ..
Differentiate between a constructor and a method? Can we mark constructors final?
What is oop in java?