
HOTSPOT - You have an Azure subscription that contains an Azure AI Video Indexer account. You need to add a custom brand and logo to the indexer and configure an exclusion for the custom brand. How should you complete the REST API call? To a...Author: Elijah · Last updated May 3, 2026 |
You have a local folder that contains the files shown in the following table. You need to analyze the files by using Azure AI Video Index...Author: NightmareDragon2025 · Last updated May 3, 2026 |
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 build a language model by using a Language Understanding service. The language model is used to search for information on a contact list by using an intent named FindContact. A conversational expert provides you with the following ...In this scenario, you are using Language Understanding (LUIS) to create an intent called FindContact and you want to use a list of phrases to train the model to identify specific search requests for contacts based on location (e.g., "London," "Seattle," "Ukraine"). The key here is to determine if creating a new pattern for the FindContact intent will meet the goal. Let's break it down: Explanation of the solution: A) Yes - Reasoning: When you're training a language model using Language Understanding (LUIS), you define intents that capture user goals and provide examples (or patterns) of how users might express those goals. A pattern is a specific form of training example that allows LUIS to recognize how certain words or phrases match the intent. - FindContact intent: If you want to recognize queries like "Find contacts in London," "Who do I know in Seattle," and "Search for contacts in Ukraine," a pattern could be used to capture those types of phrases. A ... Author: Alexander · Last updated May 3, 2026 |
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 traini...In this scenario, you are developing an application to identify species of flowers by training a Custom Vision model, and you want to add new images of flowers to the classifier. Evaluation of the solution: Smart Labeler Tool in Custom Vision: - The Smart Labeler tool is designed to assist in labeling new images when training a Custom Vision model. It helps by suggesting labels for the new images based on the existing labeled data in the model. - It can automatically predict what label (e.g., flower species) should be applied to the new images based on the model's prior training. - After adding the new images, using the Smart Labeler tool helps in labeling the images correctly, thus making the process of adding new data more efficient. Explanation of the solution: A) Yes - Reasoning: The solution meets the goal because after adding the new images to the training set, the Smart Labeler tool will automatically suggest the correct labels... Author: Emily · Last updated May 3, 2026 |
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 re...In this scenario, the goal is to add new images and labels to an existing flower species classifier and retrain the model to identify new species. Let's evaluate the solution: 1. Adding new images and labels: This is the correct step for introducing new data to the model. New images and their associated labels need to be added to the training data so that the model can learn to identify the new species. 2. Retraining the model: After adding the new images and labels, retraining the model is necessary to ensure that the model is updated with the new data. This ensures the model can classify both old and new species accurately. 3. Publishing the model: Once the retraining process is complet... Author: Aditya · Last updated May 3, 2026 |
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 ...The solution described in the scenario involves creating a new model and then uploading the new images and labels. Let’s break down the reasoning: Analysis of the Solution: - Creating a new model: If you create a new model, this means you are starting fresh and training the model from scratch with the new images and labels, rather than updating the existing model. - Uploading new images and labels: This step is essential in adding the new data, but if you create a new model, you're not leveraging the existing model that already contains knowledge of the previous flower species. Does this meet the goal? The goal is to add new images to a... Author: Emily · Last updated May 3, 2026 |
HOTSPOT - 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 Ger...Author: Aarav · Last updated May 3, 2026 |
DRAG DROP - You train a Custom Vision model used in a mobile app. You receive 1,000 new images that do not have any associated data. You need to use the images to retrain the model. The solution must minimize how long it takes to retrain the model. Which three actions should you perform in the Custom Vision portal? To...Author: Krishna · Last updated May 3, 2026 |
You are building a Conversational Language Understanding model for an e-commerce chatbot. Users can speak or type their billing address when prompted by the chatbot. You need to const...To capture billing addresses in a Conversational Language Understanding (CLU) model for an e-commerce chatbot, the entity needs to identify and extract structured information like street address, city, state, and zip code from user inputs, whether they are spoken or typed. Let's evaluate each entity type: 1. A) Machine learned: - Machine learned entities are typically used when the entity needs to recognize complex, varied, and unstructured data, such as dates, locations, or other highly variable inputs. In the case of a billing address, which is relatively structured but can have variations in phrasing and formatting, a machine learning-based approach could be useful, but it would require more training data and fine-tuning. This is a good option for extracting structured information like addresses, especially if the addresses are expected to vary in format. 2. B) Regex: - Regex (regular expressions) are very useful for extracting structured patterns (like phone numbers, dates, or specific formats). However, addresses can have varied formats (e.g., different ways of writing the street, city, or state), so using Regex would require very complex and potentially error-prone patterns. It's not the best choice for billing addresses, as the format can differ from user to user and may not be fully captured by a single regex pattern. 3. C) List: - A List entity type is used when there is a ... Author: William · Last updated May 3, 2026 |
You are building an Azure WebJob that will create knowledge bases from an array of URLs. You instantiate a QnAMakerClient object that has the relevant API keys and assign the object to a variable named client. You need to develop a method to create the knowledge bases. Which two actions should...In the context of developing an Azure WebJob that creates knowledge bases from an array of URLs using the QnAMakerClient, the solution requires understanding the process of creating a knowledge base (KB) in QnA Maker. Option A: Create a list of FileDTO objects that represents data from the WebJob. - Reasoning: This option is incorrect because FileDTO is not the standard object needed to create a knowledge base in QnA Maker. To create a knowledge base, you do not need to first create a list of FileDTO objects; instead, you will need to prepare data in a specific format (such as QnADTO or CreateKbDTO) which will be used in the process. Option B: Call the client.Knowledgebase.CreateAsync method. - Reasoning: This option is correct because the method `CreateAsync` is responsible for creating a knowledge base in QnA Maker. This method requires data in the form of `CreateKbDTO` or QnADTO objects to create the knowledge base asynchronously. Without calling `CreateAsync`, the knowledge base won't be created. This is the critical step in the process. ... Author: Liam · Last updated May 3, 2026 |
HOTSPOT - 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. ...Author: Amelia · Last updated May 3, 2026 |
You are building a conversational language understanding model. You need to enable active learning....To enable active learning in a conversational language understanding model, you need to incorporate methods that facilitate the continuous improvement of the model by collecting user feedback, identifying uncertain predictions, and retraining the model with new data. Let's evaluate each option: Option A: Add show-all-intents=3Dtrue to the prediction endpoint query. - Reasoning: This option is incorrect. Adding the `show-all-intents=true` parameter to the prediction endpoint query in your model's API request helps you retrieve a broader set of possible intents that the model considers for a given user input, but it does not enable active learning. Active learning requires feedback loops and retraining with new data, which this option does not provide. Instead, this is more for debugging or exploring the model's decision-making process. Option B: Enable speech priming. - Reasoning: This option is incorrect. Speech priming generally refers to techniques that help improve automatic speech recognition (ASR) by providing context or preparing the model with specific phrases or words. While useful for voice models, this does not directly enable active learning in a conversational model. Active learning is more focused on iterating and improving a model based on user feedback or retraining, which this option does not address. Option... Author: SilverBear · Last updated May 3, 2026 |
HOTSPOT - You run the following command. For each of the following statements, select Yes if the statement is true. Otherwise, select No....Author: Sam · Last updated May 3, 2026 |
You are building a Language Understanding model for an e-commerce platform. You need to construct an entity to capture billing addresses...To capture billing addresses in a language understanding model, it is crucial to choose an entity type that can effectively handle various address formats and ensure the model is capable of extracting relevant address components (e.g., street name, city, state, postal code). Let's evaluate each option: Option A: Machine Learned - Reasoning: This option is correct in many cases. A machine-learned entity type uses a model trained on data to identify and extract entities based on examples, and is well-suited to capturing complex or varied structures like billing addresses. Since billing addresses can vary greatly in format (e.g., street names, city names, zip codes, and countries), machine learning models can generalize and identify these entities from different phrasing and formats, which makes it a good choice. This entity type learns from labeled examples to better generalize over time. Option B: Regex - Reasoning: This option is incorrect for most cases. While regex can be useful for simple, structured patterns (e.g., capturing dates or phone numbers), it may not be ideal for billing addresses because addresses are diverse in format and structure. Regex patterns would need to be very complex to handle all possible variations of an address (street names, cities, states, postal codes), and even then, they would be prone to errors and limitations when dealing with edge cases. It’s also difficult to maintain and scale regex for all possible address formats. Option C: GeographyV2 - Reasoning: This option is incorrect f... Author: Isabella · Last updated May 3, 2026 |
You need to upload speech samples to a Speech Studio project for use in training. How should you up...When uploading speech samples for use in training a model in Speech Studio, the best option depends on factors such as the file format, compatibility, organization, and efficiency of the process. Option A: Combine the speech samples into a single audio file in the .wma format and upload the file. - Rejected: This option may cause issues since Speech Studio typically expects individual audio samples, and combining them into one large file could limit flexibility for training. Additionally, the .wma format is not as widely accepted as other formats like .wav or FLAC for speech processing tasks. Option B: Upload a .zip file that contains a collection of audio files in the .wav format and a corresponding text transcript file. - Selected: This option is the most suitable. The .wav format is widely supported for speech data, and a .zip file allows for efficient batch uploading of multiple files (both audio and transcripts) in one package. The corresponding text transcript file ensures that each audio file is properly labeled with its transcription, a key component for training models. This option provi... Author: CrimsonViperX · Last updated May 3, 2026 |
You are developing a method for an application that uses the Translator API. The method will receive the content of a webpage, and then translate the content into Greek (el). The result will also contain a transliteration that uses the Roman alphabet. You need to create the URI for the call to the Translator API. You have the following URI. https://api.cognitive.microsofttranslator.com/translate?api-versio...To develop a method for the application using the Translator API to translate content into Greek with transliteration, we need to consider the specific requirements for translation, language settings, and transliteration in the URI query parameters. Option A: `toScript=3DCyrl` - Rejected: This query parameter would specify Cyrillic as the script for the output. However, for Greek language translation and transliteration, Cyrillic is not applicable. Greek uses a unique alphabet and does not require Cyrillic transliteration. Hence, this option is not appropriate. Option B: `from=3Del` - Rejected: The `from` query parameter defines the source language for translation. However, since the task specifies translating a webpage into Greek (el), the source language would typically need to be defined dynamically based on the content's original language. Hardcoding "el" would indicate that the source is Greek, but the use case is to translate from another language (not Greek) into Greek. Therefore, this is not the correct choice for our scenario. Option C: `textType=3Dhtml` - Selected: This parameter specifies that the content to be translated is in HTML format. Since web pages are typically formatted in HTML, this parameter ensures that the translation API correctly interprets the structure of the content and handles it accordingly. This is critical if you're translating a webpage, as HTML contains both t... Author: Sofia · Last updated May 3, 2026 |
You have a chatbot that was built by using the Microsoft Bot Framework. You need to debug the chatbot endpoint remotely. Which two tools should you install on a local computer? Each correct ans...When debugging a chatbot endpoint remotely that was built using the Microsoft Bot Framework, the two tools that are most useful for the task are those that allow monitoring traffic, interacting with the bot, and tunneling remote traffic for local testing. Let’s review the options: Option A: Fiddler - Selected: Fiddler is a web debugging tool that can intercept and inspect HTTP/HTTPS traffic between your bot and the remote service. This makes it valuable for debugging endpoints because you can monitor the communication between the bot and any APIs or services it calls, including seeing request and response details. This tool is particularly useful for identifying issues in how the bot communicates over the network. Option B: Bot Framework Composer - Rejected: Bot Framework Composer is a visual tool used to design, build, and test bots, but it's not focused on debugging live endpoint communication. It's useful for building and managing the bot’s logic and dialog flow, but not specifically for remote endpoint debugging. This tool would not help in debugging an endpoint that is already deployed. Option C: Bot Framework Emulator - Selected: The Bot Framework Emulator is a local desktop application that allows developers to test and debug their bots. It connects to the bot’s endpoint and can simulate conversations, making it an excellent choice for debugging how the bot interacts with users. It can also show the messages exchanged between the bot and the user and inspect the response... Author: Siddharth · Last updated May 3, 2026 |
DRAG DROP - 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 increas...Author: Sara · Last updated May 3, 2026 |
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 build a language model by using a Language Understanding service. The language model is used to search for information on a contact list by using an intent named FindContact. A conversational expert provides you with the ...To assess if creating a new intent for location meets the goal, let’s first break down the task: - The goal is to implement the provided phrase list for the FindContact intent. These phrases involve location-based queries for searching contacts, such as "Find contacts in London," "Who do I know in Seattle?" and "Search for contacts in Ukraine." - These queries all revolve around locations, so the intent must focus on recognizing both the location (like London, Seattle, Ukraine) and the user's goal (finding contacts). Now, let’s evaluate the solution: Creating a new intent for location: - This approach could be helpful if you want to separate location recognition from the main task of finding contacts. - However, it doesn’t directly address the need to match phrases like “Find contacts in London” to the primary FindContact intent. Instead, this approach might focus solely on understanding l... Author: Ethan · Last updated May 3, 2026 |
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 build a language model by using a Language Understanding service. The language model is used to search for information on a contact list by using an intent named FindContact. A conversational expert provides you with the ...Author: Evelyn · Last updated May 3, 2026 |
You are training a Language Understanding model for a user support system. You create the first intent named GetContactDetails and add 200 examples. You need...To address the problem of decreasing the likelihood of a false positive in the GetContactDetails intent, we need to analyze the options based on the goal of reducing incorrect matches. Analysis of Options: - A) Enable active learning: - Active learning is a technique where the model identifies uncertain predictions and requests additional labeled data for those uncertain cases. While it could improve the model over time, it’s not a direct way to reduce false positives initially. It’s more focused on refining the model through ongoing feedback and would be useful in scenarios where the model frequently encounters ambiguous or uncertain inputs. - Not ideal for immediately reducing false positives because it’s a longer-term solution. - B) Add a machine-learned entity: - Entities are used to capture specific pieces of information (such as a phone number or an email address). Adding a machine-learned entity can help the model identify key elements within the user’s input more effectively. However, this would not necessarily reduce false positives unless the input specifically requires extracting more detailed information related to GetContactDetails. - Less relevant here since the main concern is reducing incorrect matches, not identifying specific entities. - C) Add additional examples to the GetContactDetails intent: - Adding more examples could indeed help improve the model’s understanding of the GetContactDetails intent, espe... Author: Aditya · Last updated May 3, 2026 |
DRAG DROP - You are building a Language Understanding model for purchasing tickets. You have the following utterance for an intent named PurchaseAndSendTickets. Purchase [2 audit business] tickets to [Paris] [next Monday] and send tickets to [[email protected]] You need to select the entity types. The solution must use built-in entity types to minimize training data whenever possible. Which entity type should you use for each label? To answer, drag the appropr...Author: SilverBear · Last updated May 3, 2026 |
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 pe...Author: Kai · Last updated May 3, 2026 |
You build a Conversational Language Understanding model by using the Language Services portal. You export the model as a JSON file as shown in the following sample. ...Author: ElectricLionX · Last updated May 3, 2026 |
You are examining the Text Analytics output of an application. The text analyzed is: `Our tour guide took us up the Space Needle during our trip to Seattle last week.` The response contains the data...Author: VioletCheetah55 · Last updated May 3, 2026 |
SIMULATION - You need to configure bot12345678 support the French (FR-FR) language. Export the bot to C:ResourcesBotBot1.zip. To com...To address the task of configuring bot12345678 to support the French (FR-FR) language and exporting it to C:ResourcesBotBot1.zip using the Microsoft Bot Framework Composer, let's review the possible steps and scenarios for configuring the bot. Key Considerations: - Configuring bot for a new language involves making sure the bot is able to handle interactions in French (FR-FR). - The task specifies using Microsoft Bot Framework Composer to achieve the configuration. - The bot must be exported in the format Bot1.zip and saved to the specified directory. Steps to Approach the Task: 1. Configure Bot for French Language (FR-FR): - In Bot Framework Composer, you would configure the language settings to support French. This usually involves modifying the bot's language settings or providing language-specific content such as responses, dialog prompts, etc. - You will need to ensure that the language settings or locale settings are adjusted to French (FR-FR), so the bot can respond appropriately to French-language users. 2. Exporting the Bot: - After configuring the bot for the French language, you would export the bot from Bot Framework Composer into a .zip file, typically using the Export feature within the Composer interface. - The path C:ResourcesBotBot1.zip indicates where you should export the file. Common Options and Their Applicability: 1. Option 1: Configure Language and Export Using Composer Interface: - In this option, the steps would include navigating to the language settings in Bot Framework Composer, configuring it for French, and then using the Export ... Author: Siddharth · Last updated May 3, 2026 |
You need to measure the public perception of your brand on social media by using natural language proc...To measure public perception of your brand on social media using natural language processing (NLP), the best Azure service to use is A) Language service. Here's why: 1. Language service is specifically designed for text analytics tasks like sentiment analysis, entity recognition, language detection, and key phrase extraction. This service is highly suited for analyzing text data from social media posts, customer reviews, etc., to measure public perception by identifying sentiment (positive, negative, neutral) and key themes related to your brand. 2. Content Moderator is aimed at detecting and filtering offensive content, such as inappropriate text, images, or videos. While useful for maintaining the safety of your online platforms, it doesn't provide the sentiment analysis or NLP capabilities needed to measure public perception. 3. Computer Vision is focused on analyz... Author: Sofia · Last updated May 3, 2026 |
HOTSPOT - You are developing an application that includes language translation. The application will translate text retrieved by using a function named get_text_to_be_translated. 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. ...Author: Maya · Last updated May 3, 2026 |
SIMULATION - Use the following login credentials as needed: To enter your username, place your cursor in the Sign in box and click on the username below. To enter your password, place your cursor in the Enter password box and click on the password below. Azure Username: [email protected] - Azure Password: XXXXXXXXXXXX - The following information is for technical support purposes only: Lab Instance: 12345678 - Task - You need to create and publish a Language Understa...To complete the task of creating and publishing a Language Understanding (classic) model named 1u12345678 with an intent of Travel that includes an utterance of Boat, you should follow these steps: 1. Sign in to the Language Understanding (LUIS) portal using the provided credentials and navigate to the Language Understanding (classic) model section. 2. Create a new model with the specified name 1u12345678. 3. Add the Travel intent and include the Boat utterance under that intent. 4. After configuring the model, publish it to make it live. Explanation of selected option: - Language Understanding (classic) is the selected option because you need to create a LUIS model and train it with intents and utterances. The task explicitly mentions creating a Language Understanding (classic) model, and LUIS is the Azure service used for intent-based models and natural language processing. Why other options are rejected: 1. Language Understanding (v2): This is a newer version of LUIS. The ta... Author: Michael · Last updated May 3, 2026 |
You have a Language service resource that performs the following: * Sentiment analysis * Named Entity Recognition (NER) * Personally Identifiable Information (PII) identification You need to prevent the resource from persisting input d...To prevent the Language service resource from persisting input data after it is analyzed, you need to configure the query parameter `loggingOptOut`. Explanation: 1. `loggingOptOut`: - Selected Option: This query parameter controls whether the service logs the input data for future analysis or improvements. By setting `loggingOptOut=true`, the data will not be stored by the service after it is processed. This ensures that the input data is discarded after analysis, complying with privacy or compliance requirements. This option is specifically designed to address scenarios where you want to prevent data retention and ensure that input data is not saved for future use. 2. Why other options are rejected: - `model-version`: This parameter specifies the version of the model to use for the request. It doesn’t have anything to do with data retention or logging, so it is not relevant for preventing data persistence. - `piiCategories`: This parameter is used to specify which Per... Author: Zara · Last updated May 3, 2026 |
You have an Azure Cognitive Services model named Model1 that identifies the intent of text input. You develop an app in C# named App1. You need to con...To configure App1 to use Model1, an Azure Cognitive Services model that identifies the intent of text input, we need to integrate the app with an Azure Cognitive Services API that can process natural language input and identify intent. Here's a breakdown of the options: 1. A) Universal.Microsoft.CognitiveServices.Speech - This package is designed for speech-related operations such as converting speech to text or recognizing speech commands. While it is part of Azure Cognitive Services, it is focused on speech recognition and processing. Since Model1 deals with text input and intent recognition, this package is not the most suitable. 2. B) SpeechServicesToolkit - The SpeechServicesToolkit is a set of tools related to speech processing, similar to the Universal.Microsoft.CognitiveServices.Speech package. It focuses on improving the experience for speech-related services, but it does not target intent recognition from text input, which is required for your app. Therefore, it's not the right choice. 3. C) Azure.AI.Language.Conversations - This package is specifically design... Author: NebulaEagle11 · Last updated May 3, 2026 |
HOTSPOT - You are building content for a video training solution. You need to create narration to accompany the video content. The solution must use Custom Neural Voice. What should you use to create a custom neural voice, and which service should you use to generate the ...Author: ThunderBear · Last updated May 3, 2026 |
HOTSPOT - You are building a call handling system that will receive calls from French-speaking and German-speaking callers. The system must perform the following tasks: * Capture inbound voice messages as text. * Replay messages in English on demand. Which Azure Cognitive Services services...Author: Oscar · Last updated May 3, 2026 |
You are building a social media extension that will convert text to speech. The solution must meet the following requirements: * Support messages of up to 400 characters. * Provide users with multiple voice options. * Minimize costs. You create an A...In order to meet the requirements for the social media extension that converts text to speech and provides multiple voice options, we need to select the appropriate Speech API endpoint that allows us to access the available voice options. Here's a breakdown of each option: 1. A) https://uksouth.api.cognitive.microsoft.com/speechtotext/v3.0/models/base - This endpoint is part of the Speech-to-Text service, which is designed for transcribing speech into text. It does not provide any functionality for converting text to speech or listing available voices. Therefore, this endpoint is not suitable for this requirement. 2. B) https://uksouth.customvoice.api.speech.microsoft.com/api/texttospeech/v3.0/longaudiosynthesis/voices - This endpoint is related to Custom Voice in Azure Cognitive Services, specifically for generating long audio synthesis with custom voices. While it might support custom voice options, it's primarily focused on custom voice models, and may not be necessary for the standard voice options you are looking for in a cost-effective solution. 3. C) https://uksouth.tts.speech.microsoft.com/cognitiveservices/voices/list ... Author: RadiantJaguar56 · Last updated May 3, 2026 |
You develop a custom question answering project in Azure Cognitive Service for Language. The project will be used by a chatbot. You need to configure the p...To configure your custom question answering project in Azure Cognitive Service for Language to engage in multi-turn conversations, you need a method that allows the chatbot to handle and remember context across multiple turns. Let's analyze each option to determine which is best suited for this requirement: 1. A) Add follow-up prompts - Follow-up prompts are typically used to create a conversation flow where the system can prompt the user for further information. This is useful in cases where the chatbot needs to engage in multi-turn interactions by asking the user for clarification or additional details after a question has been answered. It helps manage conversational context and ensures a smoother dialogue by allowing the bot to ask for additional information as needed. This is the most suitable option for enabling multi-turn conversations. 2. B) Enable active learning - Active learning refers to the process of continuously improving the model by gathering user feedback and training the model based on that feedback. While active learning can improve the chatbot's accuracy over time, it doesn't directly support the concept of multi-turn conversations. It focuses on model improvement rather than on how the bot handles ongoing conversations. Therefore, this o... Author: Isabella1 · Last updated May 3, 2026 |
HOTSPOT - You are building a solution that students will use to find references for essays. You use the following code to start building the solution. For each of the following statements, select Yes is th...Author: Kai99 · Last updated May 3, 2026 |
You train a Conversational Language Understanding model to understand the natural language input of users. You need to evaluate the accuracy of the model before deploying it. What are two methods you can use? Each c...To evaluate the accuracy of a trained Conversational Language Understanding (CLU) model, it's important to use methods that allow for detailed performance assessment, focusing on how well the model understands user input and responds accordingly. Let's go through each option: 1. A) From the language authoring REST endpoint, retrieve the model evaluation summary - This option allows you to programmatically access a summary of the model's evaluation through the language authoring REST endpoint. The evaluation summary typically provides metrics such as accuracy, intent detection performance, and entity recognition, which are essential for understanding how well the model performs. Retrieving the evaluation summary can give you key insights into the model’s readiness before deployment. This is a valid and effective method for evaluating the model’s accuracy. 2. B) From Language Studio, enable Active Learning, and then validate the utterances logged for review - Active Learning in Language Studio allows you to improve the model over time by reviewing user inputs (utterances) and refining the model based on feedback. While this process is crucial for iterative improvements and ensuring the model can handle new or edge cases, it is primarily focused on enhancing the model post-training rather than evaluating its current accuracy. Active learning does not provide an immediate evaluation of the model's accuracy before deployment, so it’s less effective for pre-deployment evaluation. 3. C) From Language Studio, select Model performance - Model performance in Language Studio provides a detailed eva... Author: Oliver · Last updated May 3, 2026 |
DRAG DROP - You develop an app in C# named App1 that performs speech-to-speech translation. You need to configure App1 to translate English to German. How should you complete the SpeechTranslationConfig object? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, ...Author: Zara1234 · Last updated May 3, 2026 |
You have an Azure subscription that contains an Azure Cognitive Service for Language resource. You need to identify the URL of the REST interface for the ...To identify the URL of the REST interface for the Azure Cognitive Service for Language resource, you need to access the information that includes the endpoint URL. Let's analyze each blade to determine the correct one: 1. A) Identity - The Identity blade is used to configure managed identities for Azure services, enabling the Cognitive Service to authenticate to other Azure resources. This blade does not contain information related to the REST interface or endpoint URL. It is not relevant to identifying the REST API URL for the service. 2. B) Keys and Endpoint - The Keys and Endpoint blade contains the endpoint URL and keys for the Cognitive Service. The endpoint URL is the base URL you need to use when making requests to the REST API for the Cognitive Service. This is the exact blade you need to access to find the REST interface URL for the Language service. It provides the critical information required to integrate with the API. 3. C) Networking... Author: Ella · Last updated May 3, 2026 |
DRAG DROP - You are building a transcription service for technical podcasts. Testing reveals that the service fails to transcribe technical terms accurately. You need to improve the accuracy of the service. Which five actions should you perform in sequence? To a...Author: Isabella · Last updated May 3, 2026 |
You are building a retail kiosk system that will use a custom neural voice. You acquire audio samples and consent from the voice talent. You need to cre...When building a voice talent profile for a retail kiosk system, the key factors to consider are the quality and variety of the data needed to create a realistic, high-quality synthetic voice. Let’s evaluate each option: A) a .zip file that contains 10-second .wav files and the associated transcripts as .txt files This option offers multiple short audio samples, each with a corresponding transcript. The variety of short samples is beneficial for capturing nuances in speech, pitch, tone, and clarity. It is ideal for training a synthetic voice, as having multiple shorter clips ensures flexibility and broad coverage of the voice talent’s range. This is the preferred method for creating a robust neural voice model. B) a five-minute .flac audio file and the associated transcript as a .txt file While this option provides a longer recording with a corresponding transcript, it may lack variety in speech patterns or tone variations compared to multiple shorter clips. Although it could still be used for training, it doesn't give the same level of flexibility as multiple short clips, especially for a retail kiosk that may require varied responses and ... Author: BlazingPhoenix22 · Last updated May 3, 2026 |
DRAG DROP - You have a Language Understanding solution that runs in a Docker container. You download the Language Understanding container image from the Microsoft Container Registry (MCR). You need to deploy the container image to a host computer. Which three actions should you perform in s...Author: Ahmed97 · Last updated May 3, 2026 |
HOTSPOT - You are building a text-to-speech app that will use a custom neural voice. You need to create an SSML file for the app. The solution must ensure that the voice profile meets the following requirements: * Expresses a calm tone * Imitates the voice of a young adult female How should you...Author: Kai99 · Last updated May 3, 2026 |
HOTSPOT - You have a collection of press releases stored as PDF files. You need to extract text from the files and perform sentiment analysis. Which service should you use for each task? To answer, select th...Author: Chloe · Last updated May 3, 2026 |
You have a text-based chatbot. You need to enable content moderation by using the Text Moderation API of Content Moderator. Which two service responses should you use? Each correct answer...To enable content moderation using the Text Moderation API, it's important to focus on detecting inappropriate or harmful content in the chatbot’s text input. Let's evaluate each option based on its role in content moderation: A) Personal data Personal data moderation ensures that any sensitive or personally identifiable information is detected and flagged. This is important for privacy and compliance reasons. While it’s crucial for data protection, it does not directly relate to general content moderation for inappropriate or harmful language. Therefore, this option is not essential for content moderation in a chatbot focused on text moderation. B) The adult classification score This score evaluates whether the content contains adult material, such as explicit or sexual content. The adult classification score is vital for filtering inappropriate content in text-based systems, especially when dealing with user-generated content that might include explicit language. This option is useful for content moderation in the chatbot. C) Text classification Text classification is the process of categorizing text into predefined categories such as spam, violence, or hate speech. This is key for general content moderation, as it helps id... Author: Joseph · Last updated May 3, 2026 |
HOTSPOT - You are developing a text processing solution. You have the function shown below. For the second argument, you call the function and specify the following string. Our tour of Paris included a visit to the Eiffel T...Author: Emma · Last updated May 3, 2026 |
HOTSPOT - You are building an Azure web app named App1 that will translate text from English to Spanish. You need to use the Text Translation REST API to perform the translation. The solution must ensure that you have data sovereignty in the United States. How should you complet...Author: Rohan · Last updated May 3, 2026 |
DRAG DROP - You have a Docker host named Host1 that contains a container base image. You have an Azure subscription that contains a custom speech-to-text model named model1. You need to run model1 on Host1. Which three actions should you perform in sequence? To ...Author: IronLion88 · Last updated May 3, 2026 |
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 build a language model by using a Conversational Language Understanding. The language model is used to search for information on a contact list by using an intent named FindContact. A conversational expert provides you with the following list of phrases to us...Evaluation: The goal here is to implement a language model using Conversational Language Understanding (CLU) and create a FindContact intent. The expert has provided a list of phrases that should be used to train the model. Let’s break down the options: A) Yes Creating a new utterance for each phrase provided (e.g., "Find contacts in London," "Who do I know in Seattle?" and "Search for contacts in Ukraine") does meet the goal. In CLU, utterances represent the different ways users might express the same or similar intent. By adding the provided phrases as new utterances for the FindContact intent, the system learns various ways to recognize and respond to the user's query. This method is a valid solution because it allows the language model to recognize these phrases and interpret them correctl... Author: Liam · Last updated May 3, 2026 |
DRAG DROP - You have a question answering project in Azure Cognitive Service for Language. You need to move the project to a Language service instance in a different Azure region. Which three actions should you perform in sequence? To answer, m...Author: Ishaan · Last updated May 3, 2026 |