For which three objects must a vendor provide implementations in its JDBC driver?
A.
Time
B.
Date
C.
Statement
D.
ResultSet
E.
Connection
F.
SQLException
G.
DriverManager
Explanation:
All JDBC drivers implement the four important JDBC classes:
Driver, Connection, Statement, and ResultSet.
C,D,E
CDE
OCA/OCP Java SE 7 Programmer I & II Study Guide (Kathy Sierra, Bert Bates)
852 Chapter 15: JDBC
The implementation classes of Connection, Statement, ResultSet , and a
number of other interfaces we will look at shortly are created by the vendor of the
database we are using.