Which of the following can fill in the blank? (Choose all that apply.)
public void stmt(Connection conn, int a) throws SQLException { Statement stmt = conn.createStatement(a, __________________________); }
A, C.
The first parameter is the ResultSet type.
The second parameter is the ResultSet concurrency mode.
Choices D, E, and F are incorrect because they represent the first parameter.
Choice B is incorrect because it is not a constant in JDBC.
Choices A and C are correct.