Free AI-102 Exam Braindumps certification guide Q&A
AI-102 Certification Overview Latest AI-102 PDF Dumps
Schedule exam
Languages: English, Japanese, Chinese (Simplified), Korean
Retirement date: none
This exam measures your ability to accomplish the following technical tasks: plan and manage an Azure Cognitive Services solutions; implement Computer Vision solutions; implement natural language processing solutions; implement knowledge mining solutions; and implement conversational AI solutions.
NEW QUESTION # 35
You have 100 chatbots that each has its own Language Understanding model.
Frequently, you must add the same phrases to each model.
You need to programmatically update the Language Understanding models to include the new phrases.
How should you complete the code? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
Answer:
Explanation:
Explanation
Box 1: AddPhraseListAsync
Example: Add phraselist feature
var phraselistId = await client.Features.AddPhraseListAsync(appId, versionId, new PhraselistCreateObject
{
EnabledForAllModels = false,
IsExchangeable = true,
Name = "QuantityPhraselist",
Phrases = "few,more,extra"
});
Box 2: PhraselistCreateObject
Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/luis/client-libraries-rest-api
NEW QUESTION # 36
You are developing an application that will recognize faults in components produced on a factory production line. The components are specific to your business.
You need to use the Custom Vision API to help detect common faults.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.
Answer:
Explanation:
Explanation
Graphical user interface, text, application, chat or text message Description automatically generated
Step 1: Create a project
Create a new project.
Step 2: Upload and tag the images
Choose training images. Then upload and tag the images.
Step 3: Train the classifier model.
Train the classifier
Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/custom-vision-service/getting-started-build-a-classifie
NEW QUESTION # 37
You are developing the knowledgebase by using Azure Cognitive Search.
You need to process wiki content to meet the technical requirements.
What should you include in the solution?
- A. an indexer for Azure Blob storage attached to a skillset that contains the language detection skill
- B. an indexer for Azure Cosmos DB attached to a skillset that contains the document extraction skill and the text translation skill
- C. an indexer for Azure Cosmos DB attached to a skillset that contains the language detection skill and the text translation skill
- D. an indexer for Azure Blob storage attached to a skillset that contains the language detection skill and the text translation skill
Answer: B
Explanation:
The wiki contains text in English, French and Portuguese.
Scenario: All planned projects must support English, French, and Portuguese.
The Document Extraction skill extracts content from a file within the enrichment pipeline. This allows you to take advantage of the document extraction step that normally happens before the skillset execution with files that may be generated by other skills.
Note: The Translator Text API will be used to determine the from language. The Language detection skill is not required.
Reference:
https://docs.microsoft.com/en-us/azure/search/cognitive-search-skill-document-extraction
https://docs.microsoft.com/en-us/azure/search/cognitive-search-skill-text-translation
NEW QUESTION # 38
You are developing a solution for the Management-Bookkeepers group to meet the document processing requirements. The solution must contain the following components:
A From Recognizer resource
An Azure web app that hosts the Form Recognizer sample labeling tool
The Management-Bookkeepers group needs to create a custom table extractor by using the sample labeling tool.
Which three actions should the Management-Bookkeepers group perform in sequence? To answer, move the appropriate cmdlets from the list of cmdlets to the answer area and arrange them in the correct order.
Answer:
Explanation:
1 - Create a new project and load sample documents
2 - Label the sample documents
3 - Train a custom model.
Reference:
https://docs.microsoft.com/en-us/azure/applied-ai-services/form-recognizer/label-tool
NEW QUESTION # 39
You are building a model to detect objects in images.
The performance of the model based on training data is shown in the following exhibit.

Answer:
Explanation:
Explanation
NEW QUESTION # 40
You successfully run the following HTTP request.
POST
https://management.azure.com/subscriptions/18c51a87-3a69-47a8-aedc-a54745f708a1/resourceGroups/RG1/pro Body{"keyName": "Key2"} What is the result of the request?
- A. The primary subscription key and the secondary subscription key were rotated.
- B. The secondary subscription key was reset.
- C. A key for Azure Cognitive Services was generated in Azure Key Vault.
- D. A new query key was generated.
Answer: D
Explanation:
Explanation
https://docs.microsoft.com/en-us/rest/api/searchmanagement/2021-04-01-preview/query-keys/create
NEW QUESTION # 41
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
Answer:
Explanation:
NEW QUESTION # 42
You are building a retail chatbot that will use a QnA Maker service.
You upload an internal support document to train the model. The document contains the following question: "What is your warranty period?" Users report that the chatbot returns the default QnA Maker answer when they ask the following question: "How long is the warranty coverage?" The chatbot returns the correct answer when the users ask the following question: 'What is your warranty period?" Both questions should return the same answer.
You need to increase the accuracy of the chatbot responses.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. (Choose three.)
Answer:
Explanation:
Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/qnamaker/how-to/edit-knowledge-base
NEW QUESTION # 43
You are developing a method that uses the Computer Vision client library. The method will perform optical character recognition (OCR) in images. The method has the following code.
During testing, you discover that the call to the GetReadResultAsync method occurs before the read operation is complete.
You need to prevent the GetReadResultAsync method from proceeding until the read operation is complete.
Which two actions should you perform? Each correct answer presents part of the solution. (Choose two.) NOTE: Each correct selection is worth one point.
- A. Add code to verify the results.Status value.
- B. Add code to verify the status of the txtHeaders.Status value.
- C. Remove the Guid.Parse(operationId) parameter.
- D. Wrap the call to GetReadResultAsync within a loop that contains a delay.
Answer: A,D
Explanation:
Example code :
do
{
results = await client.GetReadResultAsync(Guid.Parse(operationId));
}
while ((results.Status == OperationStatusCodes.Running ||
results.Status == OperationStatusCodes.NotStarted));
Reference:
https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/dotnet/ComputerVision/ComputerVisionQuickstart.cs
NEW QUESTION # 44
You are building an Azure Cognitive Search custom skill.
You have the following custom skill schema definition.
For each of the following statements, select Yes if the statement. Otherwise, select No.
NOTE: Each correct selection is worth one point.
Answer:
Explanation:
Explanation:
Box 1: Yes
Once you have defined a skillset, you must map the output fields of any skill that directly contributes values to a given field in your search index.
Box 2: Yes
The definition is a custom skill that calls a web API as part of the enrichment process.
Box 3: No
For each organization identified by entity recognition, this skill calls a web API to find the description of that organization.
Reference:
https://docs.microsoft.com/en-us/azure/search/cognitive-search-output-field-mapping
NEW QUESTION # 45
You are developing the chatbot.
You create the following components:
* A QnA Maker resource
* A chatbot by using the Azure Bot Framework SDK
You need to add an additional component to meet the technical requirements and the chatbot requirements. What should you add?
- A. Microsoft Translator
- B. chatdown
- C. Language Understanding
- D. IDispatch
Answer: C
NEW QUESTION # 46
You are developing the knowledgebase by using Azure Cognitive Search.
You need to build a skill that will be used by indexers.
How should you complete the code? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Answer:
Explanation:
Reference:
https://docs.microsoft.com/en-us/azure/search/cognitive-search-skill-entity-recognition
NEW QUESTION # 47
You are creating an enrichment pipeline that will use Azure Cognitive Search. The knowledge store contains unstructured JSON data and scanned PDF documents that contain text.
Which projection type should you use for each data type? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Answer:
Explanation:
Reference:
https://docs.microsoft.com/en-us/azure/search/knowledge-store-projection-overview
NEW QUESTION # 48
You run the following command.
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
Answer:
Explanation:
Explanation
Text Description automatically generated
Box 1: Yes
http://localhost:5000/status
: Also requested with GET, this verifies if the api-key used to start the container is valid without causing an endpoint query.
Box 2: Yes
The command saves container and LUIS logs to output mount at C:\output, located on container host
Box 3: Yes
http://localhost:5000/swagger
: The container provides a full set of documentation for the endpoints and a Try it out feature. With this feature, you can enter your settings into a web-based HTML form and make the query without having to write any code. After the query returns, an example CURL command is provided to demonstrate the HTTP headers and body format that's required.
Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/luis/luis-container-howto
NEW QUESTION # 49
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 develop an application to identify species of flowers by training a Custom Vision model. You receive images of new flower species.
You need to add the new images to the classifier.
Solution: You add the new images and labels to the existing model. You retrain the model, and then publish the model.
Does this meet the goal?
- A. No
- B. Yes
Answer: B
Explanation:
The model needs to be extended and retrained.
NEW QUESTION # 50
You need to develop an automated call handling system that can respond to callers in their own language. The system will support only French and English.
Which Azure Cognitive Services service should you use to meet each requirement? To answer, drag the appropriate services to the correct requirements. Each service may be used once, more than once, or not at all. You may need to drag the split bat between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
Answer:
Explanation:
Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/how-tos/text-analytics-how-to-language-detection
https://docs.microsoft.com/en-us/azure/cognitive-services/translator/translator-overview
NEW QUESTION # 51
You are developing a text processing solution.
You develop the following method.
You call the method by using the following code.
GetKeyPhrases(textAnalyticsClient, "the cat sat on the mat");
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
Answer:
Explanation:
Explanation
Box 1: Yes
The Key Phrase Extraction API evaluates unstructured text, and for each JSON document, returns a list of key phrases.
Box 2: No
'the' is not a key phrase.
This capability is useful if you need to quickly identify the main points in a collection of documents. For example, given input text "The food was delicious and there were wonderful staff", the service returns the main talking points: "food" and "wonderful staff".
Box 3: No
Key phrase extraction does not have confidence levels.
Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/how-tos/text-analytics-how-to-keyword-
NEW QUESTION # 52
You have the following C# method.
You need to deploy an Azure resource to the East US Azure region. The resource will be used to perform sentiment analysis.
How should you call the method?
- A. create_resource("res1", "TextAnalytics", "Standard", "East US")
- B. create_resource("res1", "ContentModerator", "Standard", "East US")
- C. create_resource("res1", "TextAnalytics", "S0", "eastus")
- D. create_resource("res1", "ContentModerator", "S0", "eastus")
Answer: C
Explanation:
Explanation
To perform sentiment analysis, we specify TextAnalytics, not ContentModerator.
Possible SKU names include: 'F0','F1','S0','S1','S2','S3','S4','S5','S6','S7','S8' Possible location names include: westus, eastus Reference:
https://docs.microsoft.com/en-us/powershell/module/az.cognitiveservices/new-azcognitiveservicesaccount
NEW QUESTION # 53
You are developing an application that includes language translation.
The application will translate text retrieved by using a function named getTextToBeTranslated. The text can be in one of many languages. The content of the text must remain within the Americas Azure geography.
You need to develop code to translate the text to a single language.
How should you complete the code? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Answer:
Explanation:
NEW QUESTION # 54
Select the answer that correctly completes the sentence.
Answer:
Explanation:
Explanation
NEW QUESTION # 55
You have an existing Azure Cognitive Search service.
You have an Azure Blob storage account that contains millions of scanned documents stored as images and PDFs.
You need to make the scanned documents available to search as quickly as possible. What should you do?
- A. Split the data into multiple blob containers. Create an indexer for each container. Increase the search units. Within each indexer definition, schedule a sequential execution pattern.
- B. Split the data into multiple blob containers. Create a Cognitive Search service for each container. Within each indexer definition, schedule the same runtime execution pattern.
- C. Split the data into multiple virtual folders. Create an indexer for each folder. Increase the search units.Within each indexer definition, schedule the same runtime execution pattern.
- D. Create a Cognitive Search service for each type of document.
Answer: C
Explanation:
Reference:
https://docs.microsoft.com/en-us/azure/search/search-howto-indexing-azure-blob-storage
NEW QUESTION # 56
......
To prepare for the AI-102 certification exam, candidates need to have a strong understanding of machine learning algorithms, data analysis and visualization, and cloud computing technologies. They also need to have a deep understanding of the Azure platform and its various services, including Azure Cognitive Services, Azure Machine Learning, and Azure Databricks.
The Best Microsoft AI-102 Study Guides and Dumps of 2023: https://www.dumpstillvalid.com/AI-102-prep4sure-review.html
Top Microsoft AI-102 Exam Audio Study Guide! Practice Questions Edition: https://drive.google.com/open?id=1-znFC-t1fr7izmKyffcWWeDFY1JrG0fJ
