43.2k views
5 votes
Which of the following is a Java API to access different forms of tabular data?

A. JDBC
B. J2EE
C. JVM
D. JMS

1 Answer

1 vote

Final answer:

The Java API to access different forms of tabular data is JDBC.

Step-by-step explanation:

The correct answer is A. JDBC.

JDBC stands for Java Database Connectivity and it is a Java API that allows programmers to access and manipulate different forms of tabular data, such as databases. It provides a set of classes and methods that enable Java applications to connect to a database, send SQL queries, and retrieve the results.

For example, with JDBC, you can write Java code that connects to a MySQL database, executes a query to retrieve data from a table, and then use that data in your application. JDBC provides a standardized way for Java programs to interact with databases and is widely used in Java development.

User Knutin
by
6.7k points