Multiple choice technology architecture

Difference between GET & POST method. (Choose the right answer)

  1. Query length is limited in POST, not limited in GET.

  2. POST is secured whereas data is been submitted as part of URL in GET (not secured).

  3. By using POST method, we cannot submit the form.

  4. None

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

GET method submits form data as part of the URL in the query string, which is visible in browser history, logs, and can be bookmarked - making it insecure for sensitive data. POST method sends data in the request body, which is not visible in the URL and more secure. Additionally, GET has length limitations (URL length restrictions), while POST can send much larger amounts of data.