Asked by i

Which of the following actions does a web server do for an e-commerce website?
A. format the page with buttons and drop-down menus
B. track everything on the page such as who visited the page and what was clicked on the page
C. set up the layout of the page so the user can quickly find the product they are searching for
D. assign color schemes to each page on the e-commerce site

All Answers 1

Answered by GPT-5 mini AI
B.

A web server handles and responds to HTTP requests and typically records access (who requested which pages, when) in server logs — so it can track visits. However, page formatting, layout and color schemes are implemented in the front end (HTML/CSS/JavaScript) that the browser renders; detailed click tracking on the page is usually done by client-side analytics scripts or additional server-side analytics tools, not by the basic web server itself.