- Home
- Microsoft Certification
- AZ-204 Exam
- Microsoft.AZ-204.dumpsfiles Dumps
Free Microsoft AZ-204 Exam Dumps Questions & Answers
| Exam Code/Number: | AZ-204Join the discussion |
| Exam Name: | Developing Solutions for Microsoft Azure |
| Certification: | Microsoft |
| Question Number: | 655 |
| Publish Date: | Sep 02, 2026 |
|
Rating
100%
|
|
Total 655 questions
Hotspot Question
You are developing an application that needs access to an Azure virtual machine (VM).
The access lifecycle for the application must be associated with the VM service instance.
You need to enable managed identity for the VM.
How should you complete the PowerShell segment? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Explanation:
Box 1: -IdentityType
Enable system-assigned managed identity on an existing Azure VM:
To enable a system-assigned managed identity, use the -IdentityType switch on the Update- AzVM cmdlet (see below).
Box 2: $SystemAssigned
$vm = Get-AzVM -ResourceGroupName myResourceGroup -Name myVM Update-AzVM - ResourceGroupName myResourceGroup -VM $vm -IdentityType SystemAssigned Reference:
https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/qs-configure-powershell-windows-vm
Hotspot Question
You are developing a containerized microservices application to be deployed by using Azure Container Apps. The application uses Dapr for service invocation between microservices.
You develop two services: OrderService and PaymentService.
OrderService must invoke a method named ProcessPayment on PaymentService.
You need to invoke the method.
How should you complete the code segment? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Hotspot Question
You develop an application that sells AI generated images based on user input. You recently started a marketing campaign that displays unique ads every second day.
Sales data is stored in Azure Cosmos DB with the date of each sale being stored in a property named 'whenFinished'.
The marketing department requires a view that shows the number of sales for each unique ad.
You need to implement the query for the view.
How should you complete the query? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Explanation:
https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/query/date-time-functions
Drag and Drop Question
You are developing an Azure solution.
You need to develop code to access a secret stored in Azure Key Vault.
How should you complete the code segment? To answer, drag the appropriate code segments to the correct location. Each code segment 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:
https://learn.microsoft.com/en-us/python/api/azure-keyvault-secrets/azure.keyvault.secrets.secretclient?view=azure-python#examples
Drag and Drop Question
You develop a bot by using Language Understanding Intelligence Service (LUIS) and the .NET Bot framework. You use LUIS in the Azure portal to optimize the bot.
You review the utterances and determine that users are requesting time and venue information for events.
You need to improve the prediction efficiency of the bot.
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.
NOTE: Each correct selection is worth one point.

Explanation:
Step 1: Create an intent for each event type
Identify your intents
Step 2: Add example utterances
Create example utterances for each intent
Step 3: Create a List Entity
Identify your entities
A list entity is an explicitly specified list of values. Each value consists of one or more synonyms.
In a travel app, you might choose to create a list entity to represent airport names.
References:
https://docs.microsoft.com/en-us/azure/cognitive-services/luis/luis-how-plan-your-app