You have an Azure subscription that contains an Azure OpenAI resource named AM.
You build a chatbot that uses All to provide generative answers to specific questions.
You need to ensure that questions intended to circumvent built-in safety features are blocked.
Which Azure Al Content Safety feature should you implement?
Answer : B
You are developing an application that will use Azure Cognitive Search for internal documents.
You need to implement document-level filtering for Azure Cognitive Search.
Which three actions should you include in the solution? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
Answer : C, D, F
Your documents must include a field specifying which groups have access. This information becomes the filter criteria against which documents are selected or rejected from the result set returned to the issuer.
D: A query request targets the documents collection of a single index on a search service.
CF: In order to trim documents based on group_ids access, you should issue a search query with a group_ids/any(g:search.in(g, 'group_id1, group_id2,...')) filter, where 'group_id1, group_id2,...' are the groups to which the search request issuer belongs.
https://docs.microsoft.com/en-us/azure/search/search-security-trimming-for-azure-search
You are building a Language Understanding model for an e-commerce platform. You need to construct an entity to capture billing addresses.
Which entity type should you use for the billing address?
Answer : A
An ML entity can be composed of smaller sub-entities, each of which can have its own properties. For example, Address could have the following structure:
Address: 4567 Main Street, NY, 98052, USA
Building Number: 4567
Street Name: Main Street
State: NY
Zip Code: 98052
Country: USA
https://docs.microsoft.com/en-us/azure/cognitive-services/luis/luis-concept-entity-types
You are building a social media messaging app.
You need to identify in real time the language used in messages.
Answer : D
You manage an application that stores data in a shared folder on a Windows server. You need to move the shared folder to Azure Storage. Which type of Azure Storage should you use?
Answer : C
You have a blog that allows users to append feedback comments. Some of the feedback comments contain harmful content that includes discriminatory language.
You need to create a prototype of a solution that will detect the harmful content. The solution must minimize development effort.
Which two actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
Answer : A, B
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are building a chatbot that will use question answering in Azure Cognitive Service for Language.
You have a PDF named Doc1.pdf that contains a product catalogue and a price list
You upload Doc1.pdf and train the model.
During testing, users report that the chatbot responds correctly to the following question: What is the price of
The chatbot fails to respond to the following question: How much does < product > cost?
You need to ensure that the chatbot responds correctly to both questions.
Solution: From Language Studio, you add alternative phrasing to the question and answer pair, and then retrain and republish the model.
Does this meet the goal?
Answer : A