Multiple choice technology web 2.0

When using the POST method, variables are displayed in the URL:

  1. false

  2. true

  3. both

  4. none

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

When using the POST method, form variables are sent in the HTTP request body, not displayed in the URL. This provides better security and privacy for sensitive data compared to GET method, which appends variables to the URL. The answer is 'false' because POST does NOT display variables in the URL - that's the defining characteristic of POST vs GET.

AI explanation

With the POST method, form data is sent in the body of the HTTP request rather than appended to the URL, so submitted variables are not visible in the address bar. This contrasts with GET, which encodes parameters directly into the query string of the URL, making them visible and length-limited. That's why the statement "POST displays variables in the URL" is false.