COMPUTER NETWORKING

APPLICATION LAYER

CLIENT SERVER PARADIGM

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Client-side Programming
A
work as an interface between all servers
B
Sending request for data to server
C
Either A or B
D
None of the above
Explanation: 

Detailed explanation-1: -When you click a link on a web page, submit a form, or run a search, the browser sends an HTTP Request to the server. This request includes: A URL identifying the target server and resource (e.g. an HTML file, a particular data point on the server, or a tool to run).

Detailed explanation-2: -The client establishes a TCP connection (or the appropriate connection if the transport layer is not TCP). The client sends its request, and waits for the answer. The server processes the request, sending back its answer, providing a status code and appropriate data.

Detailed explanation-3: -The server sends back a response that contains the content of the file. (In this case, the content is HTML.) The client (your web browser) receives that response, and displays the HTML. You see the nicely formatted webpage.

There is 1 question to complete.