Which one of the following methods recuperates any memory consumed by a result set?
mysqli_free_result()
Correct:
mysqli_free_result()
Explanation:
Answer: b
Explanation: The function mysqli_free_result() is used to free the memory which is associated with the result. Once this method is executed, the result set is no longer available. free() function was used in previous version of PHP.