InterviewSolution
Saved Bookmarks
| 1. |
Which of the following directive of Cache Control Header of HTTP response indicates that resource is cachable by only client and server?(a) Public(b) Private(c) Nocache/nostore(d) Maxage |
|
Answer» Correct answer is (b) Private To elaborate: Private directive indicates that resource is cachable by only client and server; no intermediary can cache the resource. But if we use the public directive, it indicates that the resource may be cachable by any intermediary component. |
|