Multiple choice

The GET method passes argument from in page to the next page as a part of the _____ query string.

  1. SQL

  2. URL

  3. Both (1) and (2)

  4. None of these

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

The GET method appends form data to the URL as a query string (e.g., page.php?name=value). This data is visible in the browser's address bar and has length limitations (typically 2KB-8KB depending on browser/server).