[Q16-Q31] Top Microsoft AI-102 Courses Online - Updated [Feb-2022] | TestBraindump

[Q16-Q31] Top Microsoft AI-102 Courses Online - Updated [Feb-2022]

Share

Top Microsoft AI-102 Courses Online - Updated [Feb-2022]

AI-102 Practice Dumps - Verified By TestBraindump Updated 106 Questions


AI-102: Designing and Implementing an Azure AI Solution Certification Path

The Microsoft Designing and Implementing an Azure AI Solution Certification includes only one AI-100 Exam.


How to Register For Exam AI-102: Designing and Implementing a Microsoft Azure AI Solution?

Exam Register Link: https://examregistration.microsoft.com/?locale=en-us&examcode=AI-102&examname=Exam%20AI-102:%20Designing%20and%20Implementing%20a%20Microsoft%20Azure%20AI%20Solution&returnToLearningUrl=https%3A%2F%2Fdocs.microsoft.com%2Flearn%2Fcertifications%2Fexams%2Fai-102

 

NEW QUESTION 16
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:

Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/luis/client-libraries-rest-api

 

NEW QUESTION 17
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 18
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 then use the Smart Labeler tool.
Does this meet the goal?

  • A. No
  • B. Yes

Answer: A

Explanation:
The model need to be extended and retrained.
Note: Smart Labeler to generate suggested tags for images. This lets you label a large number of images more quickly when training a Custom Vision model.

 

NEW QUESTION 19
You need to upload speech samples to a Speech Studio project. How should you upload the samples?

  • A. Combine the speech samples into a single audio file in the .wma format and upload the file.
  • B. Upload individual audio files in the .wma format.
  • C. Upload a .zip file that contains a collection of audio files in the .wav format and a corresponding text transcript file.
  • D. Upload individual audio files in the FLAC format and manually upload a corresponding transcript in Microsoft Word format.

Answer: C

Explanation:
To upload your data, navigate to the Speech Studio . From the portal, click Upload data to launch the wizard and create your first dataset. You'll be asked to select a speech data type for your dataset, before allowing you to upload your data.
The default audio streaming format is WAV
Use this table to ensure that your audio files are formatted correctly for use with Custom Speech:

Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/how-to-custom-speech-test-and-train

 

NEW QUESTION 20
You plan to use containerized versions of the Anomaly Detector API on local devices for testing and in on-premises datacenters.
You need to ensure that the containerized deployments meet the following requirements:
* Prevent billing and API information from being stored in the command-line histories of the devices that run the container.
* Control access to the container images by using Azure role-based access control (Azure RBAC).
Which four 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 four.) NOTE: More than one order of answer choices is correct. You will receive credit for any of the correct orders you select.

Answer:

Explanation:

Explanation

Step 1: Pull the Anomaly Detector container image.
Step 2: Create a custom Dockerfile
Step 3: Push the image to an Azure container registry.
To push an image to an Azure Container registry, you must first have an image.
Step 4: Distribute the docker run script
Use the docker run command to run the containers.
Reference:
https://docs.microsoft.com/en-us/azure/container-registry/container-registry-intro

 

NEW QUESTION 21
You build a custom Form Recognizer model.
You receive sample files to use for training the model as shown in the following table.

Which three files can you use to train the model? Each correct answer presents a complete solution. (Choose three.) NOTE: Each correct selection is worth one point.

  • A. File2
  • B. File6
  • C. File4
  • D. File1
  • E. File3
  • F. File5

Answer: B,D,E

Explanation:
Input requirements
Form Recognizer works on input documents that meet these requirements:
Format must be JPG, PNG, PDF (text or scanned), or TIFF. Text-embedded PDFs are best because there's no possibility of error in character extraction and location.
File size must be less than 50 MB.
Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/form-recognizer/overview

 

NEW QUESTION 22
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:

Reference:
https://docs.microsoft.com/en-us/azure/search/cognitive-search-output-field-mapping

 

NEW QUESTION 23
You successfully run the following HTTP request.
POST https://management.azure.com/subscriptions/18c51a87-3a69-47a8-aedc-a54745f708a1/resourceGroups/RG1/providers/Microsoft.CognitiveServices/accounts/contosol/regenerateKey?api-version=2017-04-18 Body{"keyName": "Key2"} What is the result of the request?

  • A. The secondary subscription key was reset.
  • B. The primary subscription key and the secondary subscription key were rotated.
  • C. A key for Azure Cognitive Services was generated in Azure Key Vault.
  • D. A new query key was generated.

Answer: A

Explanation:
https://docs.microsoft.com/en-us/rest/api/searchmanagement/2021-04-01-preview/query-keys/create

 

NEW QUESTION 24
You are developing a streaming Speech to Text solution that will use the Speech SDK and MP3 encoding.
You need to develop a method to convert speech to text for streaming MP3 data.
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/cognitive-services/speech-service/how-to-use-codec-compressed-audio-input-streams?tabs=debian&pivots=programming-language-csharp

 

NEW QUESTION 25
You are developing a service that records lectures given in English (United Kingdom).
You have a method named AppendToTranscriptFile that takes translated text and a language identifier.
You need to develop code that will provide transcripts of the lectures to attendees in their respective language. The supported languages are English, French, Spanish, and German.
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:

Explanation:
Box 1: {"fr", "de", "es"}
A common task of speech translation is to specify target translation languages, at least one is required but multiples are supported. The following code snippet sets both French and German as translation language targets.
static async Task TranslateSpeechAsync()
{
var translationConfig =
SpeechTranslationConfig.FromSubscription(SPEECH__SUBSCRIPTION__KEY, SPEECH__SERVICE__REGION); translationConfig.SpeechRecognitionLanguage = "it-IT";
// Translate to languages. See, https://aka.ms/speech/sttt-languages
translationConfig.AddTargetLanguage("fr");
translationConfig.AddTargetLanguage("de");
}
Box 2: TranslationRecognizer
After you've created a SpeechTranslationConfig, the next step is to initialize a TranslationRecognizer.
Example code:
static async Task TranslateSpeechAsync()
{
var translationConfig =
SpeechTranslationConfig.FromSubscription(SPEECH__SUBSCRIPTION__KEY, SPEECH__SERVICE__REGION); var fromLanguage = "en-US"; var toLanguages = new List<string> { "it", "fr", "de" }; translationConfig.SpeechRecognitionLanguage = fromLanguage; toLanguages.ForEach(translationConfig.AddTargetLanguage); using var recognizer = new TranslationRecognizer(translationConfig);
}

 

NEW QUESTION 26
You have receipts that are accessible from a URL.
You need to extract data from the receipts by using Form Recognizer and the SDK. The solution must use a prebuilt model.
Which client and method should you use?

  • A. the FormTrainingClienc client and the ScarcRecognizeContentFromUri method
  • B. the FormRecognizerClienc client and the ScarcRecognizeReceipcsFromUri method
  • C. the FormRecognizerClienc client and the ScarcRecognizeConcencFromUri method
  • D. the FormTrainingClient client and the ScarcRecognizeReceipcsFromUri method

Answer: D

Explanation:
Explanation
To analyze receipts from a URL, use the StartRecognizeReceiptsFromUri method Example code:
private static async Task AnalyzeReceipt(
FormRecognizerClient recognizerClient, string receiptUri)
{
RecognizedFormCollection receipts = await recognizerClient.StartRecognizeReceiptsFromUri(new Uri(receiptUrl)).WaitForCompletionAsync(); Reference:
https://docs.microsoft.com/en-us/azure/applied-ai-services/form-recognizer/quickstarts/client-library

 

NEW QUESTION 27
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 28
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 create a web app named app1 that runs on an Azure virtual machine named vm1. Vm1 is on an Azure virtual network named vnet1.
You plan to create a new Azure Cognitive Search service named service1.
You need to ensure that app1 can connect directly to service1 without routing traffic over the public internet.
Solution: You deploy service1 and a public endpoint to a new virtual network, and you configure Azure Private Link.
Does this meet the goal?

  • A. No
  • B. Yes

Answer: A

Explanation:
Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/cognitive-services-virtual-networks?tabs=portal#use-private-endpoints

 

NEW QUESTION 29
You need to create a new resource that will be used to perform sentiment analysis and optical character recognition (OCR). The solution must meet the following requirements:
* Use a single key and endpoint to access multiple services.
* Consolidate billing for future services that you might use.
* Support the use of Computer Vision in the future.
How should you complete the HTTP request to create the new resource? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Box 1: PUT
Sample Request: PUT
https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/ Reference:
https://docs.microsoft.com/en-us/rest/api/deviceupdate/resourcemanager/accounts/create
https://www.analyticsvidhya.com/blog/2020/12/microsoft-azure-cognitive-services-api-for-ai-development/

 

NEW QUESTION 30
You build a conversational bot named bot1.
You need to configure the bot to use a QnA Maker application.
From the Azure Portal, where can you find the information required by bot1 to connect to the QnA Maker application?

  • A. Keys and Endpoint
  • B. Identity
  • C. Access control (IAM)
  • D. Properties

Answer: A

Explanation:
Explanation
Obtain values to connect your bot to the knowledge base
1.In the QnA Maker site, select your knowledge base.
2.With your knowledge base open, select the SETTINGS tab. Record the value shown for service name. This value is useful for finding your knowledge base of interest when using the QnA Maker portal interface. It's not used to connect your bot app to this knowledge base.
3.Scroll down to find Deployment details and record the following values from the Postman sample HTTP request:
4.POST /knowledgebases/<knowledge-base-id>/generateAnswer
5.Host: <your-host-url>
6.Authorization: EndpointKey <your-endpoint-key>
Reference:
https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-howto-qna
Topic 1, Wide World Importers
Case study
This is a case study. Case studies are not timed separately. You can use as much exam time as you would like to complete each case. However, there may be additional case studies and sections on this exam. You must manage your time to ensure that you are able to complete all questions included on this exam in the time provided.
To answer the questions included in a case study, you will need to reference information that is provided in the case study. Case studies might contain exhibits and other resources that provide more information about the scenario that is described in the case study. Each question is independent of the other questions in this case study.
At the end of this case study, a review screen will appear. This screen allows you to review your answers and to make changes before you move to the next section of the exam. After you begin a new section, you cannot return to this section.
To start the case study
To display the first question in this case study, click the button. Use the buttons in the left pane to explore the content of the case study before you answer the questions. Clicking these buttons displays information such as business requirements, existing environment, and problem statements. If the case study has an All Information tab, note that the information displayed is identical to the information displayed on the subsequent tabs. When you are ready to answer a question, click the button to return to the question.
Overview
Existing Environment
A company named Wide World Importers is developing an e-commerce platform.
You are working with a solutions architect to design and implement the features of the e-commerce platform.
The platform will use microservices and a serverless environment built on Azure.
Wide World Importers has a customer base that includes English, Spanish, and Portuguese speakers.
Applications
Wide World Importers has an App Service plan that contains the web apps shown in the following table.

Azure Resources
You have the following resources:
* An Azure Active Directory (Azure AD) tenant
* The tenant supports internal authentication.
* All employees belong to a group named AllUsers.
* Senior managers belong to a group named LeadershipTeam.
* An Azure Functions resource
* A function app posts to Azure Event Grid when stock levels of a product change between OK, Low Stock, and Out of Stock. The function app uses the Azure Cosmos DB change feed.
* An Azure Cosmos DB account
* The account uses the Core (SQL) API.
* The account stores data for the Product Management app and the Inventory Tracking app.
* An Azure Storage account
* The account contains blob containers for assets related to products.
* The assets include images, videos, and PDFs.
* An Azure Cognitive Services resource named wwics
* A Video Indexer resource named wwivi
Requirements
Business Goals
Wide World Importers wants to leverage AI technologies to differentiate itself from its competitors.
Planned Changes
Wide World Importers plans to start the following projects:
* A product creation project: Help employees create accessible and multilingual product entries, while expediting product entry creation.
* A smart e-commerce project: Implement an Azure Cognitive Search solution to display products for customers to browse.
* A shopping on-the-go project: Build a chatbot that can be integrated into smart speakers to support customers.
Business Requirements
Wide World Importers identifies the following business requirements for all the projects:
* Provide a multilingual customer experience that supports English, Spanish, and Portuguese.
* Whenever possible, scale based on transaction volumes to ensure consistent performance.
* Minimize costs.
Governance and Security Requirements
Wide World Importers identifies the following governance and security requirements:
* Data storage and processing must occur in datacenters located in the United States.
* Azure Cognitive Services must be inaccessible directly from the internet.
Accessibility Requirements
Wide World Importers identifies the following accessibility requirements:
* All images must have relevant alt text.
* All videos must have transcripts that are associated to the video and included in product descriptions.
* Product descriptions, transcripts, and all text must be available in English, Spanish, and Portuguese.
Product Creation Requirements
Wide World Importers identifies the following requirements for improving the Product Management app:
* Minimize how long it takes for employees to create products and add assets.
* Remove the need for manual translations.
Smart E-Commerce Requirements
Wide World Importers identifies the following requirements for the smart e-commerce project:
* Ensure that the Cognitive Search solution meets a Service Level Agreement (SLA) of 99.9% availability for searches and index writes.
* Provide users with the ability to search insight gained from the images, manuals, and videos associated with the products.
* Support autocompletion and autosuggestion based on all product name variants.
* Store all raw insight data that was generated, so the data can be processed later.
* Update the stock level field in the product index immediately upon changes.
* Update the product index hourly.
Shopping On-the-Go Requirements
Wide World Importers identifies the following requirements for the shopping on-the-go chatbot:
Answer common questions.
* Support interactions in English, Spanish, and Portuguese.
* Replace an existing FAQ process so that all Q&A is managed from a central location.
* Provide all employees with the ability to edit Q&As. Only senior managers must be able to publish updates.
* Support purchases by providing information about relevant products to customers. Product displays must include images and warnings when stock levels are low or out of stock.
Product JSON Sample
You have the following JSON sample for a product.

 

NEW QUESTION 31
......

New (2022) Microsoft AI-102 Exam Dumps: https://www.testbraindump.com/AI-102-exam-prep.html

Updated AI-102 Exam Dumps - PDF Questions and Testing Engine: https://drive.google.com/open?id=1FQysRy1CA5GQW1Pvm_auUa9Nwbb0yBjd