Complete the code to show the first step a browser takes to request a web page.
browser sends a [1] to the server to ask for the page
The browser sends a request to the server to ask for the web page.
Complete the sentence describing what the server sends back after receiving a request.
The server sends a [1] containing the web page data back to the browser.After receiving a request, the server sends a response with the web page data.
Fix the error in the description of the HTTP method used by browsers to request pages.
The browser uses the [1] method to ask the server for a web page.
The GET method is used by browsers to request web pages from servers.
Fill both blanks to complete the flow of how a browser requests and receives a page.
browser sends a [1] to the server and server replies with a [2]
The browser sends a request and the server replies with a response.
Fill all three blanks to complete the description of the web page request process.
browser sends a [1] using the [2] method and receives a [3] from the server
The browser sends a request using the GET method and receives a response from the server.