Question 812 of 988
Plan and manage an Azure AI solutioneasyMultiple ChoiceObjective-mapped

Quick Answer

Upgrading to a higher pricing tier, such as Standard S, is the correct solution because the 429 error directly indicates that your request rate has exceeded the allocated limit for your current Azure AI Language tier. Each pricing tier enforces a specific throughput cap; for example, a lower tier might allow only 500 requests per minute, while the Standard S tier supports up to 1,000 requests per minute, matching the required real-time throughput for social media sentiment analysis. On the AI-102 exam, this scenario tests your understanding of Azure AI Language rate limits and tier-based scalability—a common trap is attempting to implement client-side retry logic or throttling, which only masks the underlying capacity issue. The key takeaway is that 429 errors are a resource constraint, not a code bug, so the fix is always a tier upgrade, not a code change. Memory tip: think “429 = 4 tiers up”—when you see 429, look to move up a pricing tier to increase your rate limit.

AI-102 Plan and manage an Azure AI solution Practice Question

This AI-102 practice question tests your understanding of plan and manage an azure ai solution. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. 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.

A developer is configuring an Azure AI Language resource for sentiment analysis. The solution must process social media posts in real-time with a throughput of 1000 requests per minute. After testing, the developer notices that the API returns a 429 (Too Many Requests) error when the load exceeds 500 requests per minute. What is the most likely cause and solution?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "most likely"

    Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

Question 1easymultiple choice
Full question →

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

Upgrade the Azure AI Language resource to a higher tier (e.g., Standard S) to increase the rate limit.

The 429 error indicates the request rate exceeds the resource's allocated tier limit. Azure AI Language resources have predefined rate limits per pricing tier; the Standard S tier offers higher throughput (e.g., 1,000 requests per minute) compared to lower tiers. Upgrading to Standard S directly increases the rate limit to match the required 1,000 requests per minute, making it the correct solution.

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.

  • Scale out the resource by creating multiple Azure AI Language instances and load balancing requests.

    Why it's wrong here

    Rate limits are per resource; multiple instances would increase total throughput but not the limit per instance.

  • Upgrade the Azure AI Language resource to a higher tier (e.g., Standard S) to increase the rate limit.

    Why this is correct

    The Free tier has a limit of 20 requests per minute; upgrading to Standard S allows up to 1000 requests per minute.

    Clue confirmation

    The clue word "most likely" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Implement retry logic with exponential backoff to handle 429 errors.

    Why it's wrong here

    This is a workaround but does not address the root cause of insufficient capacity.

  • Use Azure API Management to cache responses and reduce calls.

    Why it's wrong here

    Caching may not help with real-time processing and does not resolve the rate limit issue.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often confuse rate limiting with transient errors and choose retry logic (C), not realizing that a consistent 429 at a specific threshold indicates a hard capacity cap that only a tier upgrade can resolve.

Detailed technical explanation

How to think about this question

Azure AI Language rate limits are enforced at the resource level using a token bucket algorithm, where each tier (Free, Standard S) has a fixed number of requests per minute (e.g., Standard S allows 1,000 requests/minute). The 429 response includes a Retry-After header indicating when to retry, but consistently exceeding the limit requires a tier upgrade. In real-time social media processing, unpredictable spikes make tier-based capacity planning critical to avoid throttling.

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

A startup's cloud architect reviews their monthly bill and notices costs are higher than expected for a long-running batch job. Switching from on-demand instances to Reserved Instances — or using Spot/Preemptible VMs — can reduce compute costs by up to 72 %. Questions like this test whether you understand the tradeoffs between commitment, flexibility, and cost across cloud pricing models.

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 AI-102 practice-question pages

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

Implement an agentic solution practice questions

Practise AI-102 questions linked to Implement an agentic solution.

Implement computer vision solutions practice questions

Practise AI-102 questions linked to Implement computer vision solutions.

Implement knowledge mining and information extraction solutions practice questions

Practise AI-102 questions linked to Implement knowledge mining and information extraction solutions.

Implement image and video processing solutions practice questions

Practise AI-102 questions linked to Implement image and video processing solutions.

Implement natural language processing solutions practice questions

Practise AI-102 questions linked to Implement natural language processing solutions.

Implement generative AI solutions practice questions

Practise AI-102 questions linked to Implement generative AI solutions.

Implement agentic AI solutions practice questions

Practise AI-102 questions linked to Implement agentic AI solutions.

Implement knowledge mining and document intelligence solutions practice questions

Practise AI-102 questions linked to Implement knowledge mining and document intelligence solutions.

Plan and manage an Azure AI solution practice questions

Practise AI-102 questions linked to Plan and manage an Azure AI solution.

Implement content moderation solutions practice questions

Practise AI-102 questions linked to Implement content moderation solutions.

AI-102 fundamentals practice questions

Practise AI-102 questions linked to AI-102 fundamentals.

AI-102 scenario practice questions

Practise AI-102 questions linked to AI-102 scenario.

Practice this exam

Start a free AI-102 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 AI-102 question test?

Plan and manage an Azure AI solution — This question tests Plan and manage an Azure AI solution — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Upgrade the Azure AI Language resource to a higher tier (e.g., Standard S) to increase the rate limit. — The 429 error indicates the request rate exceeds the resource's allocated tier limit. Azure AI Language resources have predefined rate limits per pricing tier; the Standard S tier offers higher throughput (e.g., 1,000 requests per minute) compared to lower tiers. Upgrading to Standard S directly increases the rate limit to match the required 1,000 requests per minute, making it the correct solution.

What should I do if I get this AI-102 question wrong?

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

Are there clue words in this question I should notice?

Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

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 11, 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 AI-102 practice question is part of Courseiva's free Microsoft 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 AI-102 exam.