Q. Which function returns an array of row values?
β
Correct Answer: (A)
fetchrow_array()
Explanation: This question asks about a function in MySQL that gives you a list of values from a row in your database. Imagine you have a table called "students" with columns like "name", "age", and "grade". When you ask for information from this table, you want a way to get all the details of a single student, like their name, age, and grade, as a set of values.