Azure AI Content Safety Policy Verification
Exhibit
Refer to the exhibit. ``` $deployment = Get-AzCognitiveServicesAccountDeployment -ResourceGroupName "myRG" -AccountName "myOpenAI" -Name "gpt35" $deployment.Properties.RaiPolicyName ``` Output: "MyPolicy"
You run the above PowerShell command to check the responsible AI policy applied to an Azure OpenAI Service deployment. The output shows 'MyPolicy'. You need to verify that the policy blocks hate speech. What should you do?
Quick Answer
The correct action is to navigate to Azure AI Content Safety and view the policy 'MyPolicy'. This is because Azure AI Content Safety is the dedicated service for managing and inspecting the detailed configuration of content filtering policies, including custom policies that define severity thresholds for categories like hate speech. While the PowerShell command confirms that 'MyPolicy' is applied to the deployment, it does not reveal the policy's rules; only within the Content Safety portal can you verify that hate speech is blocked by checking the specific severity levels and filter actions. On the AI-102 exam, this tests your understanding of the separation between policy assignment (via PowerShell or deployment properties) and policy inspection (via the Content Safety service). A common trap is assuming the deployment properties in the Azure Portal show rule details, but they only display the policy name. Memory tip: "PowerShell shows the name, Content Safety shows the game."
⚠ Common exam trap
Test-takers frequently assume the deployment properties or PowerShell output contain the policy's rule details, when in fact they only show the policy name, leading them to choose Option A or C instead of navigating to the dedicated Content Safety service where the actual filter rules are configured.
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
✓
Navigate to Azure AI Content Safety and view the policy 'MyPolicy'.
Azure AI Content Safety is the dedicated service for managing and viewing the details of content filtering policies, including custom policies like 'MyPolicy'. The PowerShell command only confirms the policy name is applied to the deployment; to verify that the policy blocks hate speech, you must inspect the policy's configuration (e.g., severity thresholds for hate categories) within the Azure AI Content Safety portal. The Azure Portal deployment properties only show the policy name, not its rules.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Use the Azure Portal to review the deployment's properties.
Why it's wrong here
Portal shows the policy name but not its rules.
- ✓
Navigate to Azure AI Content Safety and view the policy 'MyPolicy'.
Why this is correct
Content Safety is where policies are defined and can be viewed.
- ✗
Run Get-AzCognitiveServicesAccountDeployment with -ExpandProperties.
Why it's wrong here
The cmdlet does not expand policy details.
- ✗
Use Azure Monitor to check the deployment's logs.
Why it's wrong here
Logs show events, not policy configuration.
Go deeper
Related to this question
About these practice questions
This AI-102 question is part of Courseiva's 945-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
Same concept, more angles
1 more way this is tested on AI-102
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. A company is building a chatbot using Azure OpenAI Service to answer customer queries. The chatbot must not generate harmful or offensive content. Which Azure AI service should be integrated to filter inappropriate content?
medium- A.Azure Bot Service
- B.Azure Cognitive Search
- ✓ C.Azure AI Content Safety
- D.Azure Form Recognizer
Why C: Azure AI Content Safety is the correct service because it provides built-in content moderation APIs that detect and filter harmful or offensive text and images, including hate speech, violence, self-harm, and sexual content. Integrating this service with the Azure OpenAI chatbot ensures that user inputs and model outputs are screened in real time, preventing the generation of inappropriate responses.
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
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.