Multiple choice

Which of the following is NOT a property of the POST method?

  1. Post is safer then Get method.

  2. Post requests are not stored in browser's history.

  3. Post requests cannot be bookmarked.

  4. Post request have no restriction on data length.

  5. Post exposes the data in the URL.

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

The data is not visible in the URL. The Get method displays the data in the QueryString. This makes Post a safer choice than the Get method.