Question 43 of 769
mediumMultiple ChoiceObjective-mapped
Improve Static Asset Load Times for Global Users with Cloud CDN
A global web application serves static assets (images, JavaScript, CSS) from a Cloud Storage bucket via an HTTPS load balancer. Users in Asia report slow load times compared to users in the US where the bucket resides. What is the most effective solution?
Quick Answer
The answer is enabling Cloud CDN on the load balancer backend pointing to the Cloud Storage bucket. This is correct because Cloud CDN leverages Google’s globally distributed edge caches to serve static assets like images, JavaScript, and CSS from a point of presence (PoP) closest to the user, drastically reducing latency for Asian users without moving the origin bucket from the US. On the Google Associate Cloud Engineer exam, this scenario tests your understanding of how to improve static asset load times for global users with Cloud CDN, often appearing as a distractor where candidates might mistakenly choose bucket replication or multi-region storage. The common trap is overcomplicating the solution—Cloud CDN is the simplest, most cost-effective fix because it caches content at the edge rather than requiring infrastructure changes. Memory tip: think “CDN = Cache Delivers Nearby,” so when users are far from the origin, cache at the edge.
⚠ Common exam trap
Google Cloud often tests the misconception that moving or replicating storage to a closer region is the best way to reduce latency, when in fact edge caching (Cloud CDN) is the most effective and cost-efficient solution for static content served globally.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Enable Cloud CDN on the load balancer backend pointing to the Cloud Storage bucket
Enabling Cloud CDN on the load balancer backend that points to the Cloud Storage bucket caches static assets at Google's globally distributed edge caches. This reduces latency for Asian users by serving content from a nearby point of presence (PoP) rather than from the origin bucket in the US, without requiring any bucket relocation or replication.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Move the Cloud Storage bucket to a multi-region bucket in Asia
Why it's wrong here
Moving the bucket to Asia improves Asian users but degrades US users — multi-region improves availability, not necessarily CDN-level edge caching performance.
- ✓
Enable Cloud CDN on the load balancer backend pointing to the Cloud Storage bucket
Why this is correct
Cloud CDN caches content at Google's global edge PoPs. Asian users receive cached assets from the nearest edge location, drastically reducing latency without changing the origin.
- ✗
Replicate the Cloud Storage bucket to multiple regions using storage transfer
Why it's wrong here
Replicating the bucket via storage transfer copies objects to other regions, but the HTTPS load balancer still routes requests to the single origin bucket in the US; it does not direct users to the nearest replica. This option is tempting because storage transfer is designed for synchronising data across regions for disaster recovery or batch migration, where serving from multiple endpoints is not the primary goal.
- ✗
Use Cloud Interconnect to provide dedicated bandwidth to Asian users
Why it's wrong here
Cloud Interconnect provides private, high-bandwidth connectivity from enterprise networks to GCP — it's not a content delivery solution for public web users.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Same concept, more angles
1 more way this is tested on ACE
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. Your web application serves users globally. Static assets (images, JS, CSS) are stored in Cloud Storage. Users in Asia report slow load times for these assets. The application origin is in `us-central1`. What is the most cost-effective way to improve static asset performance for Asian users?
easy- A.Replicate the Cloud Storage bucket to an Asia region and update DNS to route Asian users to the regional bucket.
- ✓ B.Enable Cloud CDN on the Cloud Storage bucket's load balancer backend.
- C.Deploy Cloud Run instances in Asia regions to serve the static assets.
- D.Increase the Cloud Storage bucket's replication factor to improve throughput.
Why B: Cloud CDN uses Google's global edge cache network to serve static assets from locations close to users, reducing latency for Asian users without requiring bucket replication or additional compute. It is the most cost-effective solution because it leverages existing Cloud Storage as the origin and only charges for cache egress and operations, avoiding the overhead of managing regional buckets or compute instances.
Last reviewed: Jun 30, 2026
This ACE practice question is part of Courseiva's free Google Cloud certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the ACE exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.