Which one of the following methods is used to recuperating prepared statements resources?
mysqli_close()
Correct:
mysqli_close()
Explanation:
Answer: C
The function mysqli_close() is used to close an opened database connection. Once you’ve finished using a prepared statement, the resources it requires can be recuperated with the mysqli_close() method. close() was used in previous version of PHP.