Question 368 of 500
Business Strategies for Generative AI SolutionsmediumMultiple ChoiceObjective-mapped

Quick Answer

The correct answer is that new requests will receive HTTP 429 (Too Many Requests) errors. This occurs because Vertex AI Predict endpoints use autoscaling up to a configured maxReplicaCount, and once that limit is reached—for example, 10 replicas each handling 1,000 req/s gives a hard ceiling of 10,000 req/s—any traffic surge beyond that capacity, such as 15,000 req/s, is throttled rather than queued. The service cannot spin up additional replicas beyond the maximum, so excess requests are rejected with a 429 status to prevent system overload. On the Google Cloud Generative AI Leader exam, this scenario tests your understanding of autoscaling boundaries and error handling in production AI deployments; a common trap is assuming the endpoint will queue requests or scale infinitely. Remember the memory tip: “Max replicas = hard cap, 429 means turn back.”

Generative AI Leader Practice Question: Business Strategies for Generative AI Solutions

This Generative AI Leader practice question tests your understanding of business strategies for generative ai solutions. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

Exhibit

displayName: customer-support-endpoint
dedicatedEndpoint: false
machineType: n1-standard-4
minReplicaCount: 2
maxReplicaCount: 10
trafficSplit:
  - modelId: support-v1
    percentage: 100

Refer to the exhibit. A sudden surge of traffic reaches 15,000 requests per second, but the endpoint can only handle 1,000 req/s per replica. What will happen to new requests?

Question 1mediummultiple choice
Full question →

Exhibit

displayName: customer-support-endpoint
dedicatedEndpoint: false
machineType: n1-standard-4
minReplicaCount: 2
maxReplicaCount: 10
trafficSplit:
  - modelId: support-v1
    percentage: 100

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

They will receive HTTP 429 (Too Many Requests) errors.

Option C is correct because when a surge of 15,000 requests per second hits an endpoint configured with a maxReplicaCount (e.g., 10 replicas at 1,000 req/s each = 10,000 req/s capacity), any excess requests beyond that capacity are rejected with an HTTP 429 (Too Many Requests) status code. This is standard behavior in autoscaling systems: once the replica count reaches its maximum limit, the service cannot scale further, and new requests are throttled to prevent overload.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • They will be processed, and replicas will exceed maxReplicaCount.

    Why it's wrong here

    maxReplicaCount is a hard limit; replicas cannot exceed it.

  • They will be redirected to a different model.

    Why it's wrong here

    No automatic redirection; traffic is only split as defined in trafficSplit.

  • They will receive HTTP 429 (Too Many Requests) errors.

    Why this is correct

    Once max replicas are reached, new requests get a 429 status code.

    Related concept

    Read the scenario before looking for a memorised answer.

  • They will be queued until capacity becomes available.

    Why it's wrong here

    Vertex AI does not automatically queue requests; they are rejected when capacity is exceeded.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates assume autoscaling can handle any traffic surge indefinitely, ignoring the hard limit of maxReplicaCount, and thus incorrectly choose Option A or D, failing to recognize that HTTP 429 is the standard throttling mechanism when capacity is exhausted.

Detailed technical explanation

How to think about this question

Under the hood, autoscaling policies in services like AWS App Runner or Kubernetes HPA define a target CPU/memory utilization and a maxReplicaCount. When traffic spikes, the system scales up replicas until the max is reached; beyond that, the load balancer or API gateway (e.g., AWS API Gateway, NGINX) enforces rate limiting by returning HTTP 429. A subtle behavior is that the 429 response may include a Retry-After header to indicate when the client can retry, but the question focuses on the immediate outcome for new requests.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

An e-commerce site experiences heavy traffic on Black Friday and near-zero traffic during off-peak weeks. Rather than provisioning permanent large VMs, the team uses auto-scaling groups that add capacity automatically under load and reduce it overnight. Questions like this test whether you understand elasticity, availability zones, and cloud compute scaling patterns.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related Generative AI Leader practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free Generative AI Leader practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this Generative AI Leader question test?

Business Strategies for Generative AI Solutions — This question tests Business Strategies for Generative AI Solutions — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: They will receive HTTP 429 (Too Many Requests) errors. — Option C is correct because when a surge of 15,000 requests per second hits an endpoint configured with a maxReplicaCount (e.g., 10 replicas at 1,000 req/s each = 10,000 req/s capacity), any excess requests beyond that capacity are rejected with an HTTP 429 (Too Many Requests) status code. This is standard behavior in autoscaling systems: once the replica count reaches its maximum limit, the service cannot scale further, and new requests are throttled to prevent overload.

What should I do if I get this Generative AI Leader question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

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 →

How Courseiva writes practice questions · Editorial policy

Last reviewed: Jun 25, 2026

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.

Loading comments…

Sign in to join the discussion.

This Generative AI Leader 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 Generative AI Leader exam.