Answer E is correct. There is no function called delete() in PHP.
Files are deleted with unlink(),
while directories are deleted with rmdir().
Database rows are deleted using the DELETE SQL statement (not a PHP function) and,
finally, variables are unset using unset().