Multiple choice technology programming languages

Which of the following statements regarding GET and POST methods are true?

  1. GET is the method commonly used to request a resource from the server

  2. POST is the method commonly used to request a resource from the server.

  3. GET is the method commonly used for passing user input to the server

  4. POST is the method commonly used for passing user input to the server

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

GET is commonly used to request resources from the server, with parameters often passed in the query string. POST is typically used for submitting user input or data to be processed by the server. While POST can also retrieve resources, GET is primarily associated with resource requests.