Leaving presentation mode.

CLD120 Module 12 Knowledge Check

Caching Content

Keyboard Shortcuts

Question 1

What is caching?

A cache is a high-speed data layer for storing frequently accessed data.

Question 2

Which type of data should you cache?

Good candidates for caching include data that does not change often and that users access frequently.

Question 3

Which is a benefit of caching?

Caching reduces response latency by reducing or eliminating slow resources between the requester and the content. It can reduce network hops, eliminate the need to communicate over slow links or through slow devices, or reduce load on the origin.

Question 4

Which types of content on a web page can be cached using an edge cache? (Select TWO.)

An edge cache can cache static content. Such content might include web objects (for example, HTML documents, CSS style sheets, or JavaScript files), image files, and video files.

Question 5

What does Amazon CloudFront enable?

CloudFront provides a multi-tiered cache so that you can have multiple rules for when content expires. It also provides Regional caching, which reduces latency by reducing the number of network hops.

Question 6

How does Amazon CloudFront use edge locations?

The requested content might be part of a CloudFront distribution and unavailable at the edge location. In this case, CloudFront fetches the content from the origin and then caches it at the edge location.

Question 7

Which statement describes an efficient way to deliver on-demand video content?

Storing content in Amazon S3 and then delivering it near the end user by using Amazon CloudFront is an efficient way to deliver on-demand video content.

Question 8

Which role does Amazon CloudFront play in protecting against distributed denial of service (DDoS) attacks?

DDoS attacks place a large distributed load on concentrated points. With CloudFront, you can route traffic through edge locations to reduce the load on individual systems.

Question 9

How can an application use Amazon ElastiCache to improve database read performance? (Select TWO.)

Writing data to the cache only when a cache miss occurs is called lazy loading. Writing data to the cache every time that the application writes data to the database is called write-through.

Question 10

Which type of caching strategy should be used when there’s data that must be updated in real time?

A write-through caching strategy is used when you have data that must be updated in real time. Caching strategies for Memcached

Created 22 February 2025 by Dennis Kibbe. Last modified $Date: 2025/03/28 07:20:11 $ by $Author: dnk $.