JDBC Quiz 4 | Englishfreetest.com

  • Do test 20 minutes
  • Number Questions: 10 questions
  • By: englishfreetest.com

Here's the exercise 'JDBC Quiz 4 | Englishfreetest.com' about Technical Quiz - Technical Tests.


Put your knowledge about all things technology to the test Because everything tech, from computers and the internet to software and big data, changes rapidly on a day-to-day basis, it’s now a must to stay up to date with the technology that dominates our modern day lives. Are you up to speed on what’s going on in the tech industry today? Take our quiz to find out. Test how much you know about technology

You can find more to the lesson and more exercises. Technical Quiz - Technical Tests in here.

Finally, click here to "Test" for start practice exercise .

  • Test content
    A. Statement
    B. PreparedStatement
    C. CallableStatement
    D. QueryStatement
    A. TRANSACTION_NONE
    B. TRANSACTION_READ_COMMITTED
    C. TRANSACTION_READ_UNCOMMITTED
    D. TRANSACTION_WRITE_UNCOMMITTED
    A. getConnection(String url, String user, String password)
    B. getConnection(String url)
    C. getConnection(String url, Properties prop)
    D. All of the above
    A. This method is used to register the database driver
    B. This static method is used in case you are using a non-JDK compliant JVM, such as the one provided by Microsoft.
    C. Both of the above
    D. None of the above
    A. setMaxRows(int) method of the ResultSet specifies how many rows a ResultSet can contain at a time.
    B. setMaxRows(int) affects the client side JDBC object
    C. Both of the above
    D. None of the above
    A. boolean execute()
    B. ResultSet executeQuery()
    C. int executeUpdate()
    D. None of the above
    A. DatabaseMetaData
    B. ResultSetMetaData
    C. Both of the above
    D. None of the above
    A. Used for general-purpose access to your database
    B. Useful when you are using static SQL statements at runtime
    C. The Statement interface cannot accept parameters
    D. All of the above
    A. SQLWarning objects are a subclass of SQLException that deal with database access warnings
    B. Warnings do not stop the execution of an application, as exceptions do
    C. Both of the above
    D. None of the above