Multiple choice technology delivery

If a java file does not use any frameworks like Spring, Hibernate, the possible keywords for getting the DB Connecting java files are

  1. CallableStatement

  2. PreparedStatement

  3. ResultSet

  4. only a

  5. a,b and c

  6. a and b

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

Without frameworks, developers use standard JDBC API classes like CallableStatement (for stored procedures), PreparedStatement (for precompiled SQL queries), and ResultSet (for handling database output). Searching for any of these keywords is key to finding database-connecting Java files.