Vidyalelo
MySQL · Q965

MySQL

Programming · MySQL · question 965

Q965

Which API provides the lowest level interface to the server?

A.
C API
Answer
B.
Perl
C.
PHP
D.
Python

Answer: Option A

Solution

Answer: Option A
Solution:
This question asks about different ways to interact with a MySQL database. Think of it like talking to a friend: you can talk directly (like using the C API), or you can use a language translator (like Python or PHP) to help you communicate.

Out of these options, the C API is the most direct way to talk to the MySQL server. It gives you the most control and flexibility, but it also requires a deeper understanding of how MySQL works.

The other options are higher-level languages like Python, PHP, and Perl. They make it easier to work with MySQL, but they provide a less direct connection to the server.

So the answer is Option A: C API.