HTTP Describe what HTTP is and the role of the request and the response. HTTP is just a text sent over the internet with a set of rules that governs how computer communicates with each other. It follows a model whereby a client makes a request and then wait for a response from a server. HTTP itself doesn't transmit data, it depends on TCP/IP protocol to get request/response from one machine to another. What are the components of an HTTP request and an HTTP response? HTTP request and response has a header and body. HTTP response will contain status code ( 200 OK) and headers which is a metadata that contain information for content-type (text/html), Content-Encoding:gzip (type of file compression), server (name of the server), Location (new resource location for redirects) and a HTTP body HTTP request header contain information on HTTP method (GET/POST) , path and parameter to allow server to know how to find information, along with optional hea...