Question: What is a key difference between GET and POST?

  1. GET is used with the HTTP protocol. POST is used with HTTPS.
  2. GET displays the submitted data as part of the URL. During POST, this information is not shown, as it's encoded in the request body.
  3. GET is intended for changing the server state and it carries more data than POST.
  4. GET is more secure than POST and should be used for sensitive information.

Answer: The correct answer of the above question is Option B:GET displays the submitted data as part of the URL. During POST, this information is not shown, as it's encoded in the request body.