Microsoft Designing and Implementing a Microsoft Azure AI Solution - AI-102무료 덤프문제 풀어보기
You have an Azure subscription.
You are building a chatbot that will use an Azure OpenAI model.
You need to deploy the model.
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.

You are building a chatbot that will use an Azure OpenAI model.
You need to deploy the model.
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.

정답:

Explanation:

You are building a chatbot that will use an Azure OpenAI model.
You need to deploy the model in your Azure subscription.
Key Steps to Deploy an Azure OpenAI Model for a Chatbot:
Apply for access to Azure OpenAI
Azure OpenAI is a gated service and requires approval before you can provision resources.
Provision an Azure OpenAI resource
After approval, you must provision an Azure OpenAI resource in your subscription.
Deploy the GPT model
Since the chatbot requires natural language understanding and conversation, you deploy a GPT model (e.g., GPT-4, GPT-3.5).
Actions That Are Not Required for this Question:
Provision Azure API Management # Not needed for basic deployment (used only for advanced API management scenarios).
Deploy the embeddings model # Used for search/RAG, not necessary for chatbot baseline.
Deploy the DALL-E model # Used for image generation, not chatbot text responses.
Correct Order:
Apply for access to Azure OpenAI.
Provision an Azure OpenAI resource.
Deploy the GPT model.
Verified Answer (Sequence):
Apply for access to Azure OpenAI
Provision an Azure OpenAI resource
Deploy the GPT model
Microsoft References:
Quickstart: Get started with Azure OpenAI
Deploying models in Azure OpenAI
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.

NOTE: Each correct selection is worth one point.

정답:

Explanation:

Platform as a service (PaaS) database offerings in Azure require less setup and configuration effort than Infrastructure as a Service (IaaS) database offerings.
Yes
PaaS abstracts away the OS, patching, backups, and much of the infrastructure management. IaaS requires users to configure and manage VMs and databases manually.
Platform as a service (PaaS) database offerings in Azure provide end users with the ability to control and update the operating system version.
No
In PaaS, the OS and platform management are handled by Azure. Users cannot directly control or update the OS version. This is a responsibility difference between IaaS and PaaS.
All relational and non-relational platform as a service (PaaS) database offerings in Azure can be paused to reduce costs.
No
Not all PaaS database services support pausing. For example, Azure SQL Database serverless can auto-pause, but Azure Cosmos DB and provisioned SQL databases cannot. Hence this statement is incorrect.
Correct Responses:
Yes
No
No
Microsoft References
Azure SQL Database - PaaS overview
What is PaaS?
Serverless compute tier in Azure SQL Database (auto-pause)
You are using a Language Understanding service to handle natural language input from the users of a web- based customer agent.
The users report that the agent frequently responds with the following generic response: " Sorry, I don ' t understand that. " You need to improve the ability of the agent to respond to requests.
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.)

The users report that the agent frequently responds with the following generic response: " Sorry, I don ' t understand that. " You need to improve the ability of the agent to respond to requests.
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.)

정답:

Explanation:
- enable active learning
- validate the utterances
- train and republish
https://docs.microsoft.com/en-us/azure/cognitive-services/luis/luis-how-to-review-endpoint-utterances#log- user-queries-to-enable-active-learning
https://docs.microsoft.com/en-us/azure/cognitive-services/luis/luis-concept-prebuilt-model
You are building an app that will perform translations by using the Azure Al Translator service.
You need to ensure that the app will translate user-inputted text.
How should you complete the code? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

You need to ensure that the app will translate user-inputted text.
How should you complete the code? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

정답:

Explanation:

In the Azure AI Translator .NET SDK ( Azure.AI.Translation.Text ), the TextTranslationClient exposes TranslateAsync overloads that accept a target language (e.g., " fr " ) and an input string to translate. The call returns a Response < IReadOnlyList < TranslatedTextItem > > . Each TranslatedTextItem includes the automatically detected source language ( DetectedLanguage.Language ) and a collection of translations in Translations . To print the translated text for the first target language, read translation.Translations[0].Text .
Therefore:
Use TranslateAsync(targetLanguage, input) to perform the translation.
Output translation.Translations[0].Text to display the translated result.
Microsoft References
TextTranslationClient.TranslateAsync method (overloads, usage). Microsoft Learn TextTranslationClient class overview. Microsoft Learn TranslatedTextItem model and Translations property (array of translation results).
Quickstart: Translator text client libraries (end-to-end usage pattern). Microsoft Learn
Select the answer that correctly completes the sentence.


정답:

Explanation:

Comprehensive Detailed Explanation
Relational databases (such as Azure SQL Database, SQL Server, or Azure Database for PostgreSQL) are designed for structured data and ACID-compliant transactions.
Let's analyze the options:
Changes to relationships between entities
While relational databases do handle relationships (via primary/foreign keys), this phrase alone does not describe the core usage scenario for "high volume." Geographically distributed writes This is better suited to NoSQL databases (e.g., Azure Cosmos DB) because they are optimized for global distribution and multi-region writes.
Transactional writes
Correct.
Relational databases excel at handling large volumes of transactional operations (INSERT, UPDATE, DELETE) while ensuring consistency, integrity, and rollback capabilities.
This is the primary workload for OLTP (Online Transaction Processing) systems.
Writes that have varying data structures
This is a use case for NoSQL/document databases like MongoDB or Azure Cosmos DB, not relational systems which require structured schema.
The answer: Transactional writes
Microsoft References
Azure SQL Database - transactional processing
Data store considerations: relational vs non-relational
OLTP vs OLAP
You have an Azure subscription that contains a Microsoft Foundry resource.
You need to build an app that will suggest product names from a given product description.
Which Foundry model should you use?
You need to build an app that will suggest product names from a given product description.
Which Foundry model should you use?
정답: A
You plan to use Microsoft Foundry to implement a Retrieval Augmented Generation (RAG) pattern.
You have grounding data stored in an Azure Files share.
You need to configure a Microsoft Foundry project to ensure that a model can use the grounding data.
Which actions should you perform in sequence? To answer, drag the appropriate actions to the correct order.
Each action 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.

You have grounding data stored in an Azure Files share.
You need to configure a Microsoft Foundry project to ensure that a model can use the grounding data.
Which actions should you perform in sequence? To answer, drag the appropriate actions to the correct order.
Each action 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.

정답:

Explanation:
Step 1: Create a project. (Given)
Step 2: Add a data connection.
Step 3: Add a deployment.
Explanation:
Add a data connection: Before the model can " see " your grounding data stored in an Azure Files share, you must establish a connection. This step allows the project to securely access and index the external data source so it can be used for retrieval.
Add a deployment: In Microsoft Foundry, you don ' t just " add a model " in a vacuum; you must deploy a specific model (such as a GPT-4 chat model or an embedding model) to make it active and available to interact with your data and respond to queries.
You are designing a solution that will answer questions about human resources (HR) policies stored in the PDF format.
You need to ensure that the identical answer to a specific question is returned every time. The solution must minimize development effort Which service should you include in the solution?
You need to ensure that the identical answer to a specific question is returned every time. The solution must minimize development effort Which service should you include in the solution?
정답: A
설명: (Fast2test 회원만 볼 수 있음)
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.


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: Adaptive card
Box 2: an image
Reference:
https://docs.microsoft.com/en-us/microsoftteams/platform/task-modules-and-cards/cards/cards-reference
https://docs.microsoft.com/en-us/composer/how-to-send-cards?tabs=v1x
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 have a chatbot that uses question answering in Azure Cognitive Service for Language Users report that the responses of the chatbot lack formality when answering spurious questions You need to ensure that the chatbot provides formal responses to spurious questions.
Solution: From Language Studio, you change the chitchat source to qna_chitchat_professional.tsv. and then retrain and republish the model.
Does this meet the goal?
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 have a chatbot that uses question answering in Azure Cognitive Service for Language Users report that the responses of the chatbot lack formality when answering spurious questions You need to ensure that the chatbot provides formal responses to spurious questions.
Solution: From Language Studio, you change the chitchat source to qna_chitchat_professional.tsv. and then retrain and republish the model.
Does this meet the goal?
정답: A
설명: (Fast2test 회원만 볼 수 있음)
You have an Azure subscription that contains a Language service resource named ta1 and a virtual network named vnet1. You need to ensure that only resources in vnet1 can access ta1. What should you configure?
정답: B
설명: (Fast2test 회원만 볼 수 있음)
You have a product knowledgebase that contains multiple PDF documents.
You need to build a chatbot that will provide responses based on data in the knowledgebase. The solution must minimize development effort and costs. What should you include in the solution?
You need to build a chatbot that will provide responses based on data in the knowledgebase. The solution must minimize development effort and costs. What should you include in the solution?
정답: B
You are developing an application that will use Azure Cognitive Search for internal documents.
You need to implement document-level filtering for Azure Cognitive Search.
Which three actions should you include in the solution? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
You need to implement document-level filtering for Azure Cognitive Search.
Which three actions should you include in the solution? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
정답: A,E,F
설명: (Fast2test 회원만 볼 수 있음)