Exam2pass
0 items Sign In or Register
  • Home
  • IT Exams
  • Guarantee
  • FAQs
  • Reviews
  • Contact Us
  • Demo
Exam2pass > Microsoft > Microsoft Certifications > AZ-400 > AZ-400 Online Practice Questions and Answers

AZ-400 Online Practice Questions and Answers

Questions 4

HOTSPOT

You have an Azure virtual machine named web1.

You need to query the amount of free memory that was available on web1 during the past seven days. The solution must meet the following requirements:

1.

Display the data as a time chart.

2.

Calculate the average value per hour.

How should you complete the KQL query? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Hot Area:

Buy Now

Correct Answer:

Box 1: TimeGenerated>ago(7d)

Example:

// Find all processes that started in the last 3 days. ID 4688: A new process has been created.

let RunProcesses = SecurityEvent

| where TimeGenerated > ago(3d)

| where EventID == “4688”;

Box 2: bin(TimeGenerated, 1h)

Example:

// Find the 5 processes that were run the most

let Top5Processes =

RunProcesses

| summarize count() by Process | top 5 by count_; // Create a time chart of these 5 processes – hour by hour RunProcesses | where Process in (Top5Processes) | summarize count() by bin (TimeGenerated, 1h), Process | render timechart Reference:

https://marckean.com/2019/03/25/log-analytics-advanced-queries/

Questions 5

DRAG DROP

You need to find and isolate shared code. The shared code will be maintained in a series of packages.

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.

Select and Place:

Buy Now

Correct Answer:

Step 1: Create a dependency graph for the application

By linking work items and other objects, you can track related work, dependencies, and changes made over time. All links are defined with a specific link type. For example, you can use Parent/Child links to link work items to support a

hierarchical tree structure. Whereas, the Commit and Branch link types support links between work items and commits and branches, respectively.

Step 2: Group the related components.

Packages enable you to share code across your organization: you can compose a large product, develop multiple products based on a common shared framework, or create and share reusable components and libraries.

Step 3: Assign ownership to each component graph

References:

https://docs.microsoft.com/en-us/azure/devops/boards/queries/link-work-items-support-traceability?view=azure-devopsandtabs=new-web-form

https://docs.microsoft.com/en-us/visualstudio/releasenotes/tfs2017-relnotes

Questions 6

DRAG DROP

You have a project in Azure DevOps.

You need to configure a dashboard. The solution must include the following metrics:

1.

Bottlenecks in the software development process

2.

A burndown chart for the work in a single iteration

3.

How long it takes to close a work item after the item was started

Which type of widget should you use for each metric? To answer, drag the appropriate widget types to the correct metrics. Each widget type 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:

Buy Now

Correct Answer:

Box 1: Burndown chart

Bottlenecks in the software development process

Interpret a burndown or burnup chart

Your team can get immediate insight as to their progress and learn about their rhythm and behavior. Most burndown lines aren't straight lines. The team never moves at exactly one fixed velocity. Scope increases occur over time. For

example, if your projected completion date moves, you may want to ask one of these questions:

Are we adding too much scope?

Is the average burn rate changing, and if so, why?

Burndown charts also help teams understand risks to their release. If the projected end date exceeds the release target date, teams may need to reduce scope or lengthen the project. Burndown can also indicate that progress is greater than

expected, providing the uncommon, but wonderful option of adding scope.

As the following diagram shows, charts based on the burndown/burnup widgets provide many calculated elements.

Box 2: Cycle time

How long it takes to close a work item after the item was started

Cycle time measures the time it takes for your team to complete work items once they begin actively working on them.

Box 3: Sprint burndown

A burndown chart for the work in a single iteration

The definition of a sprint is a dedicated period of time in which a set amount of work will be completed on a project. It's part of the agile methodology, and an Agile project will be broken down into a number of sprints, each sprint taking the

project closer to completion.

The aim of a sprint is to make progress against the product goal. So the scrum team determines and agrees to a consistent duration for completing work. Most sprints range from two to four weeks — but should not be longer than one month.

Incorrect:

*

Velocity

Velocity metrics provide useful information, so teams can plan and forecast sprints and determine how well they estimate and meet planned commitments. You can get an indication of how much work a team can complete during a sprint

based on either a count of work items completed or the sum of estimates made for effort (product backlog items), story points (user stories), or size (requirements). Use velocity as an aid to determine team capacity and don't confuse it with

key performance indicators.

*

Cumulative flow diagram (CFD)

You use cumulative flow diagrams (CFD) to monitor the flow of work through a system. There are two CFD charts: the in-context report you can view from a team backlog or Kanban board and the CFD widget you can add to a dashboard.

CFDs help teams monitor the count of work items as they progressively move through various workflow states. These diagrams can show the flow of epics, features, user stories, issues, product backlog items, or requirements, depending on the process selected for your project

*

Lead time

Lead time measures the total time elapsed from the creation of work items to their completion.

Reference: https://learn.microsoft.com/en-us/azure/devops/report/dashboards/cycle-time-and-lead-time https://business.adobe.com/blog/basics/sprints . https://learn.microsoft.com/en-us/azure/devops/report/dashboards/configure-sprint-burndown

Questions 7

What should you use to implement the code quality restriction on the release pipeline for the investment planning applications suite?

A. a trigger

B. a pre-deployment approval

C. a post-deployment approval

D. a deployment gate

Buy Now

Correct Answer: D

Questions 8

Your company is building a mobile app that targets Android and iOS devices. Your team uses Azure DevOps to manage all work items and release cycles. You need to recommend a solution to perform the following tasks:

1.

Collect crash reports for issue analysis.

2.

Distribute beta releases to your testers.

3.

Get user feedback on the functionality of new apps. What should you include in the recommendation?

A. the Microsoft Test and Feedback extension

B. Microsoft Visual Studio App Center integration

C. Azure Application insights widgets

D. Jenkins integration

Buy Now

Correct Answer: B

References: https://marketplace.visualstudio.com/items?itemName=ms.vss-exploratorytesting-web

Questions 9

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.

Your company has a project in Azure DevOps for a new web application.

You need to ensure that when code is checked in, a build runs automatically.

Solution: From the Triggers tab of the build pipeline, you select Enable continuous integration.

Does this meet the goal?

A. Yes

B. No

Buy Now

Correct Answer: A

In Visual Designer you enable continuous integration (CI) by:

1.

Select the Triggers tab.

2.

Enable Continuous integration.

A continuous integration trigger on a build pipeline indicates that the system should automatically queue a new build whenever a code change is committed.

References:

https://docs.microsoft.com/en-us/azure/devops/pipelines/get-started-designer

Questions 10

You have a build pipeline in Azure Pipelines.

You create a Slack App Integration.

You need to send build notifications to a Slack channel named #Development.

What should you do first?

A. Configure a service connection.

B. Create a service hook subscription.

C. Create a project-level notification.

D. Create a global notification.

Buy Now

Correct Answer: B

Create a service hook for Azure DevOps with Slack to post messages to Slack in response to events in your Azure DevOps organization, such as completed builds, code changes, pull requests, releases, work items changes, and more. Note:

1. Go to your project Service Hooks page: https://{orgName}/{project_name}/_settings/serviceHooksSelect Create Subscription.

3.

Choose the types of events you want to appear in your Slack channel.

4.

Paste the Web Hook URL from the Slack integration that you created and select Finish.

5.

Now, when the event you configured occurs in your project, a notification appears in your team's Slack channel.

Reference: https://docs.microsoft.com/en-us/azure/devops/service-hooks/services/slack

Questions 11

You are designing the security validation strategy for a project in Azure DevOps. You need to identify package dependencies that have known security issues and can be resolved by an update. What should you use?

A. Octopus Deploy

B. Jenkins

C. Gradle

D. SonarQube

Buy Now

Correct Answer: A

Reference: https://octopus.com/docs/packaging-applications

Questions 12

You have a GitHub repository that is integrated with Azure Boards. Azure Boards has a work item that has the number 715.

You need to ensure that when you commit source code in GitHub, the work item is updated automatically.

What should you include in the commit comments?

A. the URL of the work item

B. AB#715

C. @715

D. #715

Buy Now

Correct Answer: B

Link GitHub commits, pull requests, and issues to work items in Azure Boards

Use AB# mention to link from GitHub to Azure Boards work items

From a GitHub commit, pull request or issue, use the following syntax to create a link to your Azure Boards work item. Enter the AB#ID within the text of a commit message. Or, for a pull request or issue, enter the AB#ID within the title or

description (not a comment).

AB#{ID}

For example, AB#125 will link to work item ID 125.

Reference:

https://learn.microsoft.com/en-us/azure/devops/boards/github/link-to-from-github

Questions 13

You have an app that is deployed to two environments named Production-A and Production-B by using Azure Pipelines.

You need to configure a release pipeline that will mark the app as complete and ready for release into the Production-B environment. The solution must meet the following requirements:

1.

Ensure that there are no active Azure Monitor alerts in the Production-A environment before the app is marked as complete.

2.

Minimize administrative effort. What should you do?

A. To the Production-B environment stage, add a pre-deployment gate that will query Azure Monitor.

B. To the Production-A environment stage, add a post-deployment gate that will query Azure Monitor.

C. To the Production-A environment stage, add a post-deployment approval.

D. To the Production-A environment stage, add a pre-deployment gate that will query Azure Monitor.

Buy Now

Correct Answer: B

Exam Code: AZ-400
Exam Name: Designing and Implementing Microsoft DevOps Solutions
Last Update: Jun 08, 2025
Questions: 614

PDF (Q&A)

$45.99
ADD TO CART

VCE

$49.99
ADD TO CART

PDF + VCE

$59.99
ADD TO CART

Exam2Pass----The Most Reliable Exam Preparation Assistance

There are tens of thousands of certification exam dumps provided on the internet. And how to choose the most reliable one among them is the first problem one certification candidate should face. Exam2Pass provide a shot cut to pass the exam and get the certification. If you need help on any questions or any Exam2Pass exam PDF and VCE simulators, customer support team is ready to help at any time when required.

Home | Guarantee & Policy |  Privacy & Policy |  Terms & Conditions |  How to buy |  FAQs |  About Us |  Contact Us |  Demo |  Reviews

2025 Copyright @ exam2pass.com All trademarks are the property of their respective vendors. We are not associated with any of them.