Multiple choice technology programming languages

Which statements about JDBC are true?

  1. JDBC is an API to connect to relational-, object- and XML data sources

  2. JDBC stands for Java DataBase Connectivity

  3. JDBC is an API to access relational databases, spreadsheets and flat files

  4. JDBC is an API to bridge the object-relational mismatch between OO programs and relational

Reveal answer Fill a bubble to check yourself
B,C Correct answer
Explanation

JDBC stands for Java Database Connectivity. It provides a standard API for connecting to relational databases and accessing tabular data from various sources including databases, spreadsheets, and flat files. The other options are incorrect - JDBC is not primarily for bridging object-relational mismatch (that's ORM), nor does it directly handle object or XML data sources as its core purpose.