* Suppose the client-to-server HTTP GET message is the following:
GET /kurose_ross_sandbox/interactive/quotation1.htm HTTP/1.1 \\n Host: gaia.cs.umass.edu \\n Accept: text/plain, text/html, image/png, image/gif, audio/mp4, audio/basic, video/mp4, video/wmv, \\n Accept-Language: en-us, en-gb;q=0.3, en;q=0.7, fr, fr-ch, zh, de, fi, ar, cs \\n If-Modified-Since: Mon, 12 Dec 2022 17:09:47 -0800 \\n User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.53.11 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10
* Does the client have a cached copy of the object being requested?
* a) yes, because this is a conditional GET, as evidenced by the If-Modified-Since field
* b) There’s not enough information in the header to answer this question
* c) no, because a client would not request an object if it had that object in its cache
* d) yes, because HTTP 1.1 is being used