Which is a benefit of the DAO pattern?
Choose all that apply.
A and C are correct.
The DAO pattern centralizes logic for the data access code, making reuse easier and allowing you to switch out implementations.
B is incorrect because you still have to code the DAO.
D is incorrect because you call a
DAO from your business object; you do not inherit from it.
E is incorrect because you can have many DAO objects.