InterviewSolution
Saved Bookmarks
| 1. |
which is the folowing is most commonly used HTTP methods? A)PRE and POST B)GET and SET. C)ASK and REPLY.D)GET and POST. |
|
Answer» rect answer to the given question is D) GET and POST. GET and POST are the most commonly used HTTP requests on internet. Because whenever we open a website, our browser actually sends a HTTP GET request behind the scenes to retrieve the page from the web server on which the website is hosted. Whereas, whenever we submit a form or upload a file on the website, our web browser actually sends a POST request to the server ALONG with the files that need to be ""POSTED"" to the server. Therefore, these two are the most commonly used HTTP methods. |
|