Microsoft Designing and Implementing a Microsoft Azure AI Solution - AI-102무료 덤프문제 풀어보기
You have an Azure subscription that contains an Azure OpenA1 resource named AH.
You plan to build an app named App1 that will write press releases by using AM.
You need to deploy an Azure OpenA1 model for Appl. The solution must minimize development effort.
Which three actions should you perform in sequence in Azure OpenAI Studio? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

You plan to build an app named App1 that will write press releases by using AM.
You need to deploy an Azure OpenA1 model for Appl. The solution must minimize development effort.
Which three actions should you perform in sequence in Azure OpenAI Studio? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

정답:

Explanation:

Comprehensive Detailed Explanation
The requirement:
You have an Azure OpenAI resource.
You want to build an app (App1) that writes press releases.
The solution must minimize development effort.
Step 1 - Select the model deployment
Since press release generation requires natural language generation, the best choice is GPT-3.5 Turbo.
The text-embedding-ada-002 model is used for semantic search and embeddings, not text generation, so it's not appropriate here.
Step 2 - Apply a system message template
Azure OpenAI Studio provides pre-built system message templates to speed up development.
For writing press releases, the correct template is the Marketing Writing Assistant template.
This minimizes development effort since it already configures prompt engineering for marketing copywriting.
Step 3 - Deploy the solution
Once the deployment and template are configured, you deploy the solution to a new web app so it can be used as App1.
Correct Sequence:
Create a deployment that uses the GPT-3.5 Turbo model.
Apply the Marketing Writing Assistant system message template.
Deploy the solution to a new web app.
Microsoft References
Azure OpenAI Studio - Getting Started
Azure OpenAI GPT-3.5 models
Azure OpenAI Studio system message templates
You have an Azure subscription that contains an Azure App Service app named Appl.
You provision a multi-service Azure Cognitive Services resource named CSAccount1.
You need to configure App1 to access CSAccount1. The solution must minimize administrative effort.
What should you use to configure App1?
You provision a multi-service Azure Cognitive Services resource named CSAccount1.
You need to configure App1 to access CSAccount1. The solution must minimize administrative effort.
What should you use to configure App1?
정답: A
Select the answer that correctly completes the sentence.


정답:

Explanation:
a tabular form of rows and columns
Rationale
Relational data is, by definition, data that adheres to the relational model .
In the relational model, data is organized into tables , which consist of rows (records or tuples) and columns (fields or attributes). This is known as the tabular form .
The other options are incorrect:
Unstructured data is the opposite of relational data.
A hierarchical folder structure is used for file organization, not the logical structure of relational data.
Comma-separated value (CSV) files can contain relational data, but the core definition of relational data is the tabular structure , not the file format itself.
Select the answer that correctly completes the sentence.


정답:

Explanation:
Semi-structured data
Let's break down the options:
Graph data
Used in graph databases (e.g., Azure Cosmos DB Gremlin API, Neo4j).
Represents nodes and edges with relationships.
JSON is not graph data.
Relational data
Stored in relational databases with tables, rows, and columns.
JSON does not follow a fixed schema with rows/columns.
Semi-structured data
Correct.
JSON, XML, and Avro are common examples of semi-structured data.
They don't require a rigid schema like relational data, but still have organizational elements (tags, key-value pairs).
JSON is widely used in NoSQL/document databases like Azure Cosmos DB.
Unstructured data
Examples: images, videos, free text, audio.
JSON does not fit here because it has a defined structure with keys and values.
The answer: Semi-structured data
Microsoft References
Structured, semi-structured, and unstructured data
What is semi-structured data?
Azure Cosmos DB and JSON data model
You are developing the knowledgebase by using Azure Cognitive Search.
You need to meet the knowledgebase requirements for searching equivalent terms.
What should you include in the solution?
You need to meet the knowledgebase requirements for searching equivalent terms.
What should you include in the solution?
정답: A
설명: (Fast2test 회원만 볼 수 있음)
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 회원만 볼 수 있음)
You have an Azure OpenAl resource named Al1 that hosts three deployments of the GPT 3.5 model. Each deployment is optimized for a unique workload.
You plan to deploy three apps. Each app will access Al1 by using the REST API and will use the deployment that was optimized for the app ' s intended workload.
You need to provide each app with access to Al1 and the appropriate deployment. The solution must ensure that only the apps can access Al1.
What should you use to provide access to Al1, and what should each app use to connect to its appropriate deployment? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

You plan to deploy three apps. Each app will access Al1 by using the REST API and will use the deployment that was optimized for the app ' s intended workload.
You need to provide each app with access to Al1 and the appropriate deployment. The solution must ensure that only the apps can access Al1.
What should you use to provide access to Al1, and what should each app use to connect to its appropriate deployment? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

정답:

Explanation:
Provide access to AI1 by using: A bearer token
Connect to the deployment by using: A deployment name
To ensure only your apps can access the Azure OpenAI resource, authenticate with Microsoft Entra ID (Azure AD) and obtain a Bearer token (ideally via managed identity ). This avoids sharing long-lived API keys and lets you scope access by app identity and Azure RBAC. Microsoft's guidance recommends token- based auth for Azure OpenAI and shows how to acquire a bearer token/managed identity token for calls When calling the REST API , Azure OpenAI requires you to specify the deployment name to select which model deployment to use. The REST route includes {deployment-id} (deployment name) in the path, e.g., ...
/openai/deployments/{deployment-id}/chat/completions. This is explicitly documented as a key difference from OpenAI's public API, which takes only a model.
Therefore:
Access method: Bearer token (via Entra ID/managed identity)
Deployment selector: Deployment name in the REST path
Microsoft References
Authenticate to Azure OpenAI with Microsoft Entra ID / Managed identity (bearer token): guidance and how- to Azure OpenAI request header recommends token-based authentication (Bearer).
Azure OpenAI requires deployment name in API calls; REST path uses
You Build a bot in JavaScript.
From the Azure Command-Line interface (CLI), you run the following command.
az bot prepare-deploy
You need to deploy the bot to Azure.
Which three Azure CLl commands should you run in sequence? To answer, move the appropriate commands from the list of commands to the answer area and arrange them in the client order.

From the Azure Command-Line interface (CLI), you run the following command.
az bot prepare-deploy
You need to deploy the bot to Azure.
Which three Azure CLl commands should you run in sequence? To answer, move the appropriate commands from the list of commands to the answer area and arrange them in the client order.

정답:

Explanation:
To deploy the bot to Azure, you should run the following three Azure CLI commands in sequence:
az deployment group create This command will create the Azure resources for your bot using an ARM template and a parameters file. You need to specify the resource group name, the template file path, and the parameters file path. For example:
az deployment group create --resource-group myResourceGroup --template-file
"deploymentTemplates\template-with-preexisting-rg.json" --parameters "deploymentTemplates\parameters- for-template-BotApp-with-rg.json" This command will also output the app ID and password of your bot, which you will need for the next command1.
az webapp deployment source config-zip This command will deploy your bot code to the app service that you created in the previous step. You need to specify the resource group name, the app service name, and the zip file path of your bot code. For example:
az webapp deployment source config-zip --resource-group myResourceGroup --name myBotAppService --src
"code.zip"
This command will also output the URL of your bot endpoint, which you will need for the next command2.
az ad app update This command will update your bot registration with the endpoint URL of your bot. You need to specify the app ID of your bot and the endpoint URL. For example:
az ad app update --id myBotAppId --set replyUrls="https://myBotAppService.azurewebsites.net/api
/messages"
This command will complete the deployment process and make your bot ready to be tested3.