Multiple choice general knowledge science & technology

Which of the following sends the request type as GET?

  1. User clicks the hyperlink

  2. user submits a form with method=POST

  3. user types the url in the browsers address field and press enter

  4. user submits a form with method=GET

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

GET requests are generated by clicking hyperlinks, typing URLs in the browser address bar, and submitting forms with method=GET. Form submission with method=POST generates a POST request, not GET. These are the standard HTTP methods for different user interactions.