Atlassian ACP-610 Practice Test - Questions Answers, Page 2

List of questions
Question 11

Your team often accepts new requests from outside groups during an active sprint. You want to see if such frequent scope change mid-sprint is causing bottlenecks. Which report provides the needed insight?
The Cumulative Flow Diagram is the report that provides the needed insight to see if frequent scope change mid-sprint is causing bottlenecks. The Cumulative Flow Diagram shows the quantity and distribution of work items along different stages of a process over time. The report can help identify potential bottlenecks in the workflow by showing where work items accumulate or stagnate over time. For example, if the report shows a sudden increase or a wide band of work items in the ''In Progress'' stage, it may indicate that the team is overloaded with work or facing some blockers. If the team often accepts new requests from outside groups during an active sprint, the report can show how this affects the flow of work and the completion of the sprint goal.Reference:Managing Jira Projects Data Center and Server: Certification Bundle,Cumulative Flow Diagram
Question 12

You need to find all issues that were not competed in some past sprint, and that are now part of an active sprint. Identify two functions that you need to use in your JQL query. (Choose two.)
The two functions that are needed to use in the JQL query to find all issues that were not completed in some past sprint, and that are now part of an active sprint are closedSprints() and openSprints(). The closedSprints() function returns all issues that are assigned to a completed sprint. The openSprints() function returns all issues that are assigned to an incomplete sprint. By combining these two functions with the NOT operator, we can filter out the issues that belong to both a completed sprint and an incomplete sprint, and only get the issues that were not completed in some past sprint, and that are now part of an active sprint. For example, the JQL query could be:
project = XYZ AND issuekey NOT IN (closedSprints() AND openSprints())
This query will return all issues in project XYZ that are not in both a closed sprint and an open sprint, meaning they are either in a closed sprint only or an open sprint only. Since we are looking for issues that are now part of an active sprint, we can assume they are in an open sprint only.Reference:Advanced search reference - JQL functions,Modifying closedSprints() to return previous two Sprints,JQL - Explanation of what closedSprints() does
Question 13

You want to create a new Scrum board with the following requirements:
* Show all issue types from project BERT but do not show sub-tasks in the backlog
* Show only epics from project ERNIE
* Do not show issues from any other projects
Which board filler query meets these requirements?
The board filter query that meets these requirements is (project = BERT AND type not in subTasklssueTypesO) OR (project = ERNIE AND issuetype Epic). This query will show all issue types from project BERT except sub-tasks, as well as only epics from project ERNIE. It will not show issues from any other projects, as it uses the OR operator to combine two conditions that specify the project names. The other queries do not meet all the requirements, as they either include sub-tasks from project BERT, exclude epics from project ERNIE, or show issues from other projects.Reference:Configuring filters, Advanced searching - fields reference
Question 14

Some issues in your project have labels and others do not.
Some tasks in your project are identified by a distinct label: daily_business. You need to prevent these issues from being displayed on the team's Scrum board
Which solution meets this requirement?
The solution that meets this requirement is to update the board filter and add: AND (labels != daily.business OR labels IS EMPTY). This will exclude issues that have the label daily_business from the board filter, which determines which issues are displayed on the board. It will also include issues that have no labels at all, as some issues in your project may not have labels. The other solutions do not meet this requirement, as they either do not exclude issues with daily_business label, or exclude issues with no labels.Reference:Configuring filters, Advanced searching - operators reference
Question 15

You are reviewing the Velocity Chart for your team and notice that they completed more story points than they committed in their last sprint. You are definitely the only person who can add issues to sprints in your project. How did your learn complete more story points than they committed?
Question 16

Gen prioritizes and triages support requests as soon as they come in. She now wants to use drag-and-drop to:
* quickly assign and transition them to in Progress
* instantly associate them with Epics
Which board view will meet these requirements?
Question 17

The release manager is requesting a list of all issues included in a particular sprint. Which report will provide this information?
Question 18

Your team failed to meet their last sprint commitment and you want to investigate further. You need an agile report that:
* shows you a list of the incomplete issues in the sprint
* allows you to quickly view that list in the Issue Navigator
Which report meets this need?
Question 19

Analyze the Epic Report shown.
Identify why the epic completion date is hard to predict.
Question 20

A project was created with a shared configuration. Which two configurations were shared? (Choose two.
Question