Which method is used to send off a request to the server
-
GET
-
send
-
POST
-
getXMLHttpRequest
B
Correct answer
Explanation
In the XMLHttpRequest API, the send() method is used to actually send the HTTP request to the server after it has been opened with open(). GET and POST are request methods passed to open(), not methods themselves. getXMLHttpRequest is not a standard method.