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 need to recommend an integration strategy for the build process of a Java application. The solution must meet the following requirements:
✑ The build must access an on-premises dependency management system.
✑ The build outputs must be stored as Server artifacts in Azure DevOps.
✑ The source code must be stored in a Git repository in Azure DevOps.
Solution: Configure the build pipeline to use a Microsoft-hosted agent pool running the Windows Server 2019 with Visual Studio 2019 image. Include the Java Tool
Installer task in the build pipeline.
Does this meet the goal?
A. Yes
B. No
Show Answer
Correct Answer: B
Explanation: The solution does not meet the requirements. A Microsoft-hosted agent cannot reliably access an on-premises dependency management system because it runs outside your private network. A self-hosted agent is typically required to reach on-premises resources. Storing source code in Azure DevOps Git and publishing build outputs as Azure DevOps Server artifacts are supported, but the hosted agent choice fails the on-premises access requirement.
Question 207
DRAG DROP -
You have an app named App1. You have a Log Analytics workspace named Workspace1 that contains a table named AppEvents. App1 writes logs to
Workspace1.
You need to query the AppEvents table. The solution must meet the following requirements:
✑ Only query rows for a column named Name that starts with the following text: "Clicked Create New Ticket."
✑ Calculate the number of daily clicks per user.
✑ Return the top 10 users based on their number of clicks for any day.
✑ Sort the results based on the highest number of clicks.
✑ Ignore any users who have less than three daily clicks.
In which order should you arrange the query statements? To answer, move all statements from the list of statements to the answer area and arrange them in the correct order.
Select and Place:
Show Answer
Correct Answer: AppEvents
| where Name startswith "Clicked Create New Ticket"
| summarize NumberOfClicks = count() by bin(TimeGenerated, 1d), UserId
| where NumberOfClicks >= 3
| top 10 by NumberOfClicks desc
Explanation: Filter the source rows first, then aggregate daily clicks per user, filter aggregated results to at least three clicks, and finally return the top 10 sorted by click count descending.
Question 208
DRAG DROP -
You have a web app named App1 that is hosted on multiple servers. App1 uses Application Insights in Azure Monitor.
You need to compare the daily CPU usage from the last week for all servers.
How should you complete the query? To answer, drag the appropriate values to the correct targets. Each value 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.
Select and Place:
Explanation: To compare daily CPU usage over the last 7 days across servers, summarize the average value by cloud_RoleInstance and daily time bins, then visualize the results with a timechart.
Question 209
HOTSPOT -
You have a virtual machine that runs Windows Server 2019 and is managed by using Desired State Configuration (DSC).
You have the following DSC configuration.
You have the following Local Configuration Manager (LCM) configuration.
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
Hot Area:
Show Answer
Correct Answer: No
No
Yes
Explanation: The File resource depends on the WindowsFeature resource, so the Web-Server feature is installed before the file is copied. ApplyAndMonitor detects and logs configuration drift but does not automatically reapply the configuration. ConfigurationModeFrequencyMins is 60, so drift (such as uninstalling Web-Server) is checked and reported within about 60 minutes.
Question 210
HOTSPOT -
You are creating a YAML-based Azure pipeline to deploy an Azure Data Factory instance that has the following requirements:
✑ If a Data Factory instance exists already, the instance must be overwritten.
✑ No other resources in a resource group named Fabrikam must be affected.
How should you complete the code? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:
Show Answer
Correct Answer: Action: Create Or Update Resource Group
Deployment mode: Incremental
Explanation: Use Create or Update Resource Group to deploy to the target resource group, creating it if needed. Use Incremental deployment so the Data Factory is updated/replaced while leaving other existing resources in the Fabrikam resource group unchanged.
Question 211
DRAG DROP -
You need to deploy a new project in Azure DevOps that has the following requirements:
* The lead developer must be able to create repositories, manage permissions, manage policies, and contribute to the repository.
* Developers must be able to contribute to the repository and create branches, but NOT bypass policies when pushing builds.
* Project managers must only be able to view the repository.
* The principle of least privilege must be used.
You create a new Azure DevOps project team for each role.
To which Azure DevOps groups should you add each team? To answer, drag the appropriate groups to the correct teams. Each group 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.
Select and Place:
Explanation: Readers have view-only access. Contributors can contribute and create branches but cannot bypass branch policies by default. Project Administrators can manage repositories, permissions, and policies while also contributing, satisfying the lead developer requirements with least privilege.
Question 212
DRAG DROP -
You have an Azure Key Vault that contains an encryption key named key1.
You plan to create a Log Analytics workspace that will store logging data.
You need to encrypt the workspace by using key1.
Which four 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.
Select and Place:
Show Answer
Correct Answer: Register the Azure subscription to allow cluster creation.
Create a Log Analytics cluster.
Grant permissions to the key vault.
Link the workspace.
Explanation: Customer-managed keys for Log Analytics require a dedicated cluster. First register the subscription for cluster creation, then create the cluster, grant the cluster's managed identity access to the Key Vault key, and finally link the workspace to the cluster.
Question 213
DRAG DROP -
You have an Azure subscription that uses Azure Monitor and contains a Log Analytics workspace.
You have an encryption key.
You need to configure Azure Monitor to use the key to encrypt log data.
Which five 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: More than one order of answer choices is correct. You will receive credit for any of the correct orders you select.
Select and Place:
Show Answer
Correct Answer: Create an Azure key vault and store the key
Create an Azure Monitor Logs dedicated cluster that has a system-assigned managed identity
Grant the system-assigned managed identity Key permissions for the key vault
Configure the key vault properties for the cluster
Link the Log Analytics workspace to the cluster
Explanation: For customer-managed keys in Azure Monitor Logs, you create the Key Vault and key, create the dedicated cluster with a managed identity, grant the identity access to the key, configure the cluster to use the key, and then link the Log Analytics workspace. The first two steps can be interchanged.
Question 214
DRAG DROP -
You are using the Dependency Tracker extension in a project in Azure DevOps.
You generate a risk graph for the project.
What should you use in the risk graph to identify the number of dependencies and the risk level of the project? To answer, drag the appropriate elements to the correct data points. Each element 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.
Select and Place:
Show Answer
Correct Answer: Number of dependencies: Link width
Risk level: Link color
Explanation: In the Dependency Tracker risk graph, thicker links represent more dependencies, while link colors indicate risk status (for example, green for on track and red for at risk).
Question 215
HOTSPOT -
You plan to use Desired State Configuration (DSC) to maintain the configuration of a server that runs Windows Server 2019.
The server must have the following features installed:
✑ A web server
✑ An email server
How should you complete the DSC configuration file? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:
Show Answer
Correct Answer: Name = @("SMTP-Server", "Web-Server")
Ensure = "Present"
Explanation: Use the WindowsFeatureSet DSC resource with the feature names for the SMTP Server and Web Server roles/features. The Ensure property specifies that the features must be present.
$19
Get all 534 questions with detailed answers and explanations
Instant download HTML + PDF delivered the moment payment clears.
Secure Stripe checkout we never see or store your card details.
7-day refund if files are defective see our refund policy.