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