Q
Which of the following PHP functions is used to execute an SQL query in MySQLi extension?

Answer & Solution

Answer: Option B
Solution:
The mysqli_query() function in PHP MySQLi extension is used to execute an SQL query. It sends an SQL query to the MySQL database and returns a result object for SELECT queries or a boolean value for other types of queries.
Related Questions on Average

Which PHP extension is commonly used for executing SQL queries and interacting with databases?

A). MySQL

B). PDO

C). SQLI

D). PHPDB

What is the purpose of the mysqli_close() function in PHP?

A). Establishing a database connection

B). Executing SQL queries

C). Fetching data from the database

D). Closing the database connection

What is the purpose of the mysqli_fetch_object() function in PHP?

A). Establishing a database connection

B). Executing SQL queries

C). Fetching data from the database

D). Closing the database connection

Which PHP extension provides procedural and object-oriented approaches for executing SQL queries and interacting with MySQL databases?

A). PDO

B). MySQL

C). SQLI

D). MySQLi

Which of the following SQL operations is used to update existing data in a database table?

A). INSERT

B). SELECT

C). UPDATE

D). DELETE

What is the primary purpose of the PDO::query() method in PHP PDO extension?

A). Establishing a database connection

B). Executing an SQL query

C). Fetching data from the database

D). Closing the database connection

What is the purpose of the mysqli_fetch_assoc() function in PHP?

A). Establishing a database connection

B). Executing SQL queries

C). Fetching data from the database

D). Closing the database connection

Which of the following statements is true regarding SQL SELECT operation?

A). It updates existing records in a table

B). It removes specific records from a table

C). It adds new records to a table

D). It retrieves data from a table

Which of the following PHP functions is used to get the number of rows affected by an SQL query in MySQLi extension?

A). mysqli_num_rows()

B). mysqli_affected_rows()

C). mysqli_num_fields()

D). mysqli_fetch_row()

Which of the following SQL operations is used to remove all data from a database table?

A). INSERT

B). SELECT

C). TRUNCATE

D). DELETE