Multiple choice technology web technology

What will be the result of pressing the submit button in the following HTML form? (Choose two.)

  1. A request is sent with the HTTP method HEAD.

  2. A request is sent with the HTTP method POST.

  3. A request is sent with the HTTP method GET.

  4. The parameter fullName is the only parameter passed to the web server in the request URL.

  5. The parameters fullName and sbmButton are passed to the web server in the request URL.

  6. The parameter fullName is the only parameter passed to the web server as part of the request body.

Reveal answer Fill a bubble to check yourself
C,F Correct answer
Explanation

HTML forms without a method attribute default to GET (option C). The form data is sent in the request body for GET requests (option F). Options A, B, D, E are incorrect: GET (not HEAD or POST) is used, and both fullName and sbmButton parameters are sent in the body, not URL. The question asks which statements are true - options C and F correctly describe the default GET behavior and parameter passing.