This page was exported from IT Certification Exam Braindumps [ http://blog.braindumpsit.com ] Export date:Sun Oct 6 18:18:02 2024 / +0000 GMT ___________________________________________________ Title: Ultimate Guide to the AI-102 - Latest Jun 14, 2022 Edition Available Now [Q59-Q74] --------------------------------------------------- Ultimate Guide to the AI-102 - Latest Jun 14, 2022 Edition Available Now 2022 Updated Verified Pass AI-102 Exam - Real Questions and Answers Q59. You need to upload speech samples to a Speech Studio project. How should you upload the samples?  Combine the speech samples into a single audio file in the .wma format and upload the file.  Upload a .zip file that contains a collection of audio files in the .wav format and a corresponding text transcript file.  Upload individual audio files in the FLAC format and manually upload a corresponding transcript in Microsoft Word format.  Upload individual audio files in the .wma format. 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 WAVUse 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-trainQ60. You create a knowledge store for Azure Cognitive Search by using the following JSON.Use the drop-down menus to select the answer choice that completes each statement based on the information presented in the graphic. NOTE Each correct selection is worth one point. Q61. You are developing the smart e-commerce project.You need to design the skillset to include the contents of PDFs in searches.How should you complete the skillset design diagram? To answer, drag the appropriate services to the correct stages. Each service 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. Reference:https://docs.microsoft.com/en-us/azure/search/cognitive-search-concept-introhttps://docs.microsoft.com/en-us/azure/cognitive-services/computer-vision/overview-ocrQ62. You need to develop code to upload images for the product creation project. The solution must meet the accessibility requirements.How should you complete the code? To answer, select the appropriate options in the answer area.NOTE: Each correct selection is worth one point. Reference:https://github.com/Azure-Samples/cognitive-services-dotnet-sdk-samples/blob/master/documentation-samples/quickstarts/ComputerVision/Program.csQ63. You are building a multilingual chatbot.You need to send a different answer for positive and negative messages.Which two Text Analytics APIs should you use? Each correct answer presents part of the solution. (Choose two.) NOTE: Each correct selection is worth one point.  Linked entities from a well-known knowledge base  Sentiment Analysis  Key Phrases  Detect Language  Named Entity Recognition ExplanationB: The Text Analytics API’s Sentiment Analysis feature provides two ways for detecting positive and negative sentiment. If you send a Sentiment Analysis request, the API will return sentiment labels (such as “negative”,“neutral” and “positive”) and confidence scores at the sentence and document-level.D: The Language Detection feature of the Azure Text Analytics REST API evaluates text input for each document and returns language identifiers with a score that indicates the strength of the analysis.This capability is useful for content stores that collect arbitrary text, where language is unknown. Reference:https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/how-tos/text-analytics-how-to- sentiment-analysis?tabs=version-3-1https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/how-tos/text-analytics-how-to- language-detectionQ64. 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.  Remove the Guid.Parse(operationId) parameter.  Add code to verify the results.Status value.  Add code to verify the status of the txtHeaders.Status value.  Wrap the call to GetReadResultAsync within a loop that contains a delay. 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.csQ65. You deploy a web app that is used as a management portal for indexing in Azure Cognitive Search. The app is configured to use the primary admin key.During a security review, you discover unauthorized changes to the search index. You suspect that the primary access key is compromised.You need to prevent unauthorized access to the index management endpoint. The solution must minimize downtime.What should you do next?  Regenerate the primary admin key, change the app to use the secondary admin key, and then regenerate the secondary admin key.  Change the app to use a query key, and then regenerate the primary admin key and the secondary admin key.  Regenerate the secondary admin key, change the app to use the secondary admin key, and then regenerate the primary key.  Add a new query key, change the app to use the new query key, and then delete all the unused query keys. Q66. You plan to provision a QnA Maker service in a new resource group named RG1.In RG1, you create an App Service plan named AP1.Which two Azure resources are automatically created in RG1 when you provision the QnA Maker service? Each correct answer presents part of the solution.NOTE: Each correct selection is worth one point.  Language Understanding  Azure SQL Database  Azure Storage  Azure Cognitive Search  Azure App Service Reference:https://docs.microsoft.com/en-us/azure/cognitive-services/qnamaker/how-to/set-up-qnamaker-service-azure?tabs=v1#delete-azure-resources“When you create a QnAMaker resource, you host the data in your own Azure subscription. Azure Search is used to index your data.” & “When you create a QnAMaker resource, you host the runtime in your own Azure subscription. App Service is the compute engine that runs the QnA Maker queries for you.”Q67. You have a chatbot that uses a QnA Maker application.You enable active learning for the knowledge base used by the QnA Maker application.You need to integrate user input into the model.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. Graphical user interface, application Description automatically generatedStep 1: For the knowledge base, select Show active learning suggestions.In order to see the suggested questions, on the Edit knowledge base page, select View Options, then select Show active learning suggestions.Step 2: Approve and reject suggestions.Each QnA pair suggests the new question alternatives with a check mark, , to accept the question or an x to reject the suggestions. Select the check mark to add the question.Step 3: Save and train the knowledge base.Select Save and Train to save the changes to the knowledge base.Step 4: Publish the knowledge base.Select Publish to allow the changes to be available from the GenerateAnswer API.When 5 or more similar queries are clustered, every 30 minutes, QnA Maker suggests the alternate questions for you to accept or reject.Reference:https://docs.microsoft.com/en-us/azure/cognitive-services/qnamaker/how-to/improve-knowledge-baseQ68. You develop a test method to verify the results retrieved from a call to the Computer Vision API. The call is used to analyze the existence of company logos in images. The call returns a collection of brands named brands.You have the following code segment.For each of the following statements, select Yes if the statement is true. Otherwise, select No.NOTE: Each correct selection is worth one point. Reference:https://docs.microsoft.com/en-us/azure/cognitive-services/computer-vision/concept-detecting-facesQ69. You are building a chatbot that will provide information to users as shown in the following exhibit.Use the drop-down menus to select the answer choice that completes each statement based on the information presented in the graphic.NOTE: Each correct selection is worth one point. Explanation:Box 1: A Thumbnail cardA Thumbnail card typically contains a single thumbnail image, some short text, and one or more buttons.Incorrect Answers:an Adaptive card is highly customizable card that can contain any combination of text, speech, images, buttons, and input fields.a Hero card typically contains a single large image, one or more buttons, and a small amount of text.Box 2: an imageReference:https://docs.microsoft.com/en-us/microsoftteams/platform/task-modules-and-cards/cards/cards-referenceQ70. 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. Q71. Your company wants to reduce how long it takes for employees to log receipts in expense reports. All the receipts are in English.You need to extract top-level information from the receipts, such as the vendor and the transaction total. The solution must minimize development effort.Which Azure Cognitive Services service should you use?  Custom Vision  Personalizer  Form Recognizer  Computer Vision Azure Form Recognizer is a cognitive service that lets you build automated data processing software using machine learning technology. Identify and extract text, key/value pairs, selection marks, tables, and structure from your documents-the service outputs structured data that includes the relationships in the original file, bounding boxes, confidence and more.Form Recognizer is composed of custom document processing models, prebuilt models for invoices, receipts, IDs and business cards, and the layout model.Reference:https://docs.microsoft.com/en-us/azure/cognitive-services/form-recognizerQ72. You plan to build a chatbot to support task tracking.You create a Language Understanding service named lu1.You need to build a Language Understanding model to integrate into the chatbot. The solution must minimize development time to build the model.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.) Reference:https://docs.microsoft.com/en-us/azure/cognitive-services/luis/tutorial-intents-onlyQ73. 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. Q74. 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.) Reference:https://docs.microsoft.com/en-us/azure/cognitive-services/qnamaker/how-to/edit-knowledge-base Loading … For more info read reference: microsoft learning site AI-102 Skills measured Publish a Machine Learning Experiment with Microsoft Azure Machine Learning Studio Process and translate speech with Azure Cognitive Speech Services   Dumps Moneyack Guarantee - AI-102 Dumps Approved Dumps: https://www.braindumpsit.com/AI-102_real-exam.html --------------------------------------------------- Images: https://blog.braindumpsit.com/wp-content/plugins/watu/loading.gif https://blog.braindumpsit.com/wp-content/plugins/watu/loading.gif --------------------------------------------------- --------------------------------------------------- Post date: 2022-06-14 09:31:00 Post date GMT: 2022-06-14 09:31:00 Post modified date: 2022-06-14 09:31:00 Post modified date GMT: 2022-06-14 09:31:00