Question 462 of 988
Implement content moderation solutionshardMultiple ChoiceObjective-mapped

Quick Answer

The correct action is to escalate the image to a human reviewer because the Category1 score of 0.6 exceeds the application’s custom threshold of 0.5. This is the right choice because Azure Content Moderator allows you to set custom thresholds in image moderation that override the API’s built-in ReviewRecommended flag; when your defined threshold is breached, the system should trigger a manual review regardless of the default recommendation. On the Microsoft Azure AI Engineer Associate AI-102 exam, this scenario tests your understanding that custom thresholds take precedence over the API’s automated verdict, a common trap where candidates mistakenly rely on ReviewRecommended being false. Remember the key principle: your threshold, your rule—if the score crosses your line, escalate. A useful memory tip is “Threshold trumps default,” meaning your custom setting always overrides the API’s built-in recommendation for triggering human review.

AI-102 Implement content moderation solutions Practice Question

This AI-102 practice question tests your understanding of implement content moderation solutions. 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.

Exhibit

Refer to the exhibit.

```json
{
  "Classification": {
    "ReviewRecommended": false,
    "Category1": {
      "Score": 0.99
    },
    "Category2": {
      "Score": 0.02
    },
    "Category3": {
      "Score": 0.01
    }
  },
  "Terms": []
}
```

The above JSON is the output from Azure Content Moderator's Image Moderation API for an image. The application uses a threshold of 0.5 for Category1 (adult) to trigger a review.

An image was submitted to Azure Content Moderator's Image Moderation API. The application uses a threshold of 0.5 for Category1 (adult) to trigger a review. Based on the exhibit, what should the application do with this image?

Question 1hardmultiple choice
Full question →

Exhibit

Refer to the exhibit.

```json
{
  "Classification": {
    "ReviewRecommended": false,
    "Category1": {
      "Score": 0.99
    },
    "Category2": {
      "Score": 0.02
    },
    "Category3": {
      "Score": 0.01
    }
  },
  "Terms": []
}
```

The above JSON is the output from Azure Content Moderator's Image Moderation API for an image. The application uses a threshold of 0.5 for Category1 (adult) to trigger a review.

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

Escalate the image to a human reviewer because Category1 score exceeds the threshold.

The application's threshold for Category1 (adult) is 0.5, and the exhibit shows a Category1 score of 0.6, which exceeds this threshold. Even though ReviewRecommended is false, the application's custom threshold overrides the default recommendation, requiring escalation to a human reviewer for manual judgment. This aligns with Azure Content Moderator's design where you can set your own thresholds to trigger reviews regardless of the API's built-in recommendation.

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.

  • Auto-approve the image because ReviewRecommended is false.

    Why it's wrong here

    ReviewRecommended is false despite a high score, likely an error; auto-approving would allow adult content.

  • Escalate the image to a human reviewer because Category1 score exceeds the threshold.

    Why this is correct

    The high score warrants a review despite the ReviewRecommended flag being false.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Auto-reject the image because no offensive terms were found.

    Why it's wrong here

    Terms list is for text, not images; auto-rejecting based on empty terms is incorrect.

  • Log the inconsistency and continue processing without action.

    Why it's wrong here

    Ignoring the high score could lead to policy violations.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates assume ReviewRecommended is the sole determinant for action, ignoring that custom thresholds defined in application logic can override the API's default recommendation, leading to incorrect auto-approval.

Detailed technical explanation

How to think about this question

Azure Content Moderator's Image Moderation API returns Category1 (adult) and Category2 (racy) scores between 0 and 1, along with a ReviewRecommended boolean. The API's default threshold for ReviewRecommended is typically 0.4 for adult content, but applications can set custom thresholds (e.g., 0.5) to trigger human reviews. In this scenario, the score of 0.6 exceeds the custom threshold, so the application must escalate even if ReviewRecommended is false, as the custom logic takes precedence. This is critical in production where sensitivity requirements vary (e.g., stricter thresholds for user-generated content platforms).

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 cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.

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?

Implement content moderation solutions — This question tests Implement content moderation solutions — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Escalate the image to a human reviewer because Category1 score exceeds the threshold. — The application's threshold for Category1 (adult) is 0.5, and the exhibit shows a Category1 score of 0.6, which exceeds this threshold. Even though ReviewRecommended is false, the application's custom threshold overrides the default recommendation, requiring escalation to a human reviewer for manual judgment. This aligns with Azure Content Moderator's design where you can set your own thresholds to trigger reviews regardless of the API's built-in recommendation.

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.

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.