Given:
public class Dao { Collection<String> findAll() { return null;} void create(String a) {} void delete(String a) {} void update(String a){} }
And the following statements:
Which of these statements are true?
B is correct.
The Data Access Object pattern uses an interface so callers aren't dependent on a specific implementation class.