Q1: Which response policy best fits a personalized bank account summary page
Multiple Choice
**Explanation:**
**Context (why chosen):** Teams often treat every HTML page as just another cacheable document and forget that sensitivity matters more than latency on some endpoints.
**Terms:** **no-store** means caches should not keep a copy. **private** limits reuse to a private cache such as a browser, but it still allows storage.
**Real-world usage:** In practice this appears in reviews for account dashboards, admin consoles, and pages that can leak personal data through browser history or shared devices.
**Options:**
- A (incorrect): **public** is wrong for personalized financial data because shared caches must not reuse it across users.
- B (incorrect): **private** avoids shared-cache reuse, but it still permits storage in the browser and is weaker than needed for highly sensitive content.
- C (correct): **no-store** matches the risk model when persistence itself is unacceptable.
**Related:** Caching is not only a performance decision. It is also a data-handling and privacy decision.