Practice Free AZ-400 Exam Online Questions
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 an Azure pipeline that is used to deploy a web app. The pipeline includes a test suite named TestSuite1. TestSuite1 is used to validate the operations of the web app.
TestSuite1 fails intermittently.
You identify that the failures are unrelated to changes in the source code and execution environment.
You need to minimize troubleshooting effort for the TestSuite1 failures.
Solution: You increase code coverage.
Does this meet the goal?
- A . Yes
- B . No
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 an Azure pipeline that is used to deploy a web app. The pipeline includes a test suite named TestSuite1. TestSuite1 is used to validate the operations of the web app.
TestSuite1 fails intermittently.
You identify that the failures are unrelated to changes in the source code and execution environment.
You need to minimize troubleshooting effort for the TestSuite1 failures.
Solution: You enable aky test management.
Does this meet the goal?
- A . Yes
- B . No
You use GitHub for source control and project-related discussions.
You receive a notification when an entry is made to any team discussion.
You need to ensure that you receive email notifications only for discussions in which you commented or in which you are mentioned.
Which two Noti cations settings should you clear? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.
- A . Automatically watch teams
- B . Participating
- C . Automatically watch repositories
- D . Watching
Your company has a project in Azure DevOps for a new application. The application will be deployed to several Azure virtual machines that run Windows Server 2019.
You need to recommend a deployment strategy for the virtual machines.
The strategy must meet the following requirements:
✑ Ensure that the virtual machines maintain a consistent configuration.
✑ Minimize administrative effort to configure the virtual machines.
What should you include in the recommendation?
- A . Azure Resource Manager templates and the PowerShell Desired State Configuration (DSC) extension for Windows
- B . Deployment YAML and Azure pipeline deployment groups
- C . Azure Resource Manager templates and the Custom Script Extension for Windows
- D . Deployment YAML and Azure pipeline stage templates
Your company has a project in Azure DevOps for a new application. The application will be deployed to several Azure virtual machines that run Windows Server 2019.
You need to recommend a deployment strategy for the virtual machines.
The strategy must meet the following requirements:
✑ Ensure that the virtual machines maintain a consistent configuration.
✑ Minimize administrative effort to configure the virtual machines.
What should you include in the recommendation?
- A . Azure Resource Manager templates and the PowerShell Desired State Configuration (DSC) extension for Windows
- B . Deployment YAML and Azure pipeline deployment groups
- C . Azure Resource Manager templates and the Custom Script Extension for Windows
- D . Deployment YAML and Azure pipeline stage templates
Your company has a project in Azure DevOps for a new application. The application will be deployed to several Azure virtual machines that run Windows Server 2019.
You need to recommend a deployment strategy for the virtual machines.
The strategy must meet the following requirements:
✑ Ensure that the virtual machines maintain a consistent configuration.
✑ Minimize administrative effort to configure the virtual machines.
What should you include in the recommendation?
- A . Azure Resource Manager templates and the PowerShell Desired State Configuration (DSC) extension for Windows
- B . Deployment YAML and Azure pipeline deployment groups
- C . Azure Resource Manager templates and the Custom Script Extension for Windows
- D . Deployment YAML and Azure pipeline stage templates
Your company plans to use an agile approach to software development.
You need to recommend an application to provide communication between members of the development team who work in locations around the world.
The applications must meet the following requirements:
✑ Provide the ability to isolate the members of different project teams into separate communication channels and to keep a history of the chats within those channels.
✑ Be available on Windows 10, Mac OS, iOS, and Android operating systems.
✑ Provide the ability to add external contractors and suppliers to projects.
✑ Integrate directly with Azure DevOps.
What should you recommend?
- A . Microsoft Project
- B . Bamboo
- C . Microsoft Lync
- D . Microsoft Teams
Your company creates a web application.
You need to recommend a solution that automatically sends to Microsoft Teams a daily summary of the exceptions that occur in the application.
Which two Azure services should you recommend? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.
- A . Azure Logic Apps
- B . Azure Pipelines
- C . Microsoft Visual Studio App Center
- D . Azure DevOps Project
- E . Azure Application Insights
HOTSPOT
Your company has an Azure subscription.
The company requires that all resource groups in the subscription have a tag named organization set to a value of Contoso.
You need to implement a policy to meet the tagging requirement.
How should you complete the policy? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Explanation:
Box 1: " Microsoft.Resources/subscriptions/resourceGroups"
Box 2: "Deny",
Sample – Enforce tag and its value on resource groups
},
"policyRule": {
"if": {
"allOf": [
{
" eld": "type",
"equals": "Microsoft.Resources/subscriptions/resourceGroups"
},
{
"not": {
" eld": "[concat(‘tags[‘,parameters(‘tagName’), ‘]’)]", "equals": "[parameters(‘tagValue’)]"
}
}
]
}, "then": { "effect": "deny"
}
}
}
}
Reference: https: //docs.microsoft.com/en-us/azure/governance/policy/samples/enforce-tag-on-resource-groups
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 integrate a cloud-hosted Jenkins server and a new Azure DevOps deployment.
You need Azure DevOps to send a notification to Jenkins when a developer commits changes to a branch in Azure Repos.
Solution: You add a trigger to the build pipeline.
Does this meet the goal?
- A . Yes
- B . No