What does it mean that the protocol is stateless?
- It remembers nothing between requests
- It never sends any response
- It works without any network
Which parts of a request carry meaning?
- The screen size and the mouse position
- The method, path, and headers
- The cable length and the plug shape
What do caching headers decide?
- The price of the server
- The color of the page
- What may be reused and for how long
A logo loads instantly on repeat visits but news text refetches. Why?
- Headers allow long reuse of the logo only
- The server ran out of news
- Cookies blocked the logo
You log in, then open a second page and are still logged in. How?
- The server memorized your face
- Your browser sent the cookie with the new request
- The protocol changed its design
A cookie lets a stateless protocol support a logged-in session.
Circle one: True False
An intermediate cache may serve a stored copy while its caching header still allows it.
Circle one: True False
A user clears cookies mid-shop and the cart empties. A teammate blames the cache. What is wrong?
- Caches store pages, while the cart lived in the cookie session
- Clearing cookies speeds up caching
- Carts never use any network at all