- Does HTTP use TCP or UDP?
HTTP runs over TCP port 80.
- What types of resources can be sent over HTTP?
HTTP can be used to transfer essentially any computer file. It's commonly used for web pages (HTML) and the associated files (such as styles, scripts, fonts, and images).
- What are the common HTTP request types?
GET, POST, and HEAD are the most common HTTP request types.
- What HTTP request type is typically used to send data from the server to the client?
GET is the usual request type for a client to request a resource from the server.
- What HTTP request type is typically used to send data from the client to the server?
POST is used when the client needs to send data to the server.
- What are the two common methods used to determine an HTTP response body length?
The HTTP body length is commonly determined by the Content-Length...