All projects use only a single simplified workflow which has three statuses:
* Open
* In Progress
* Closed
Each status allows all statuses to transition to it
You need to identify oil issues that were in the Closed status at some point in their lifecycle.
Select the correct JQL query.
Development team A is consistently overestimating the work they can complete per sprint. They want to be able to compare work committed and work completed in sprints over time. Which single report provides this information?
You just started working as a scrum master in the Engine team.
The first thing you do is to analyze the Velocity Chart of the team's scrum board as shown
Kim needs a single dashboard gadget that displays the following information for issues in her project:
* the total count of all issues
* the total count of each issue type
* the distribution of each issue type as a percentage
* a graphical chart display of that percentage
Which gadget meets this need?
Answer : E
The gadget that meets Kim's need is theIssue Statisticsgadget. This gadget displays the collection of issues returned from a filter, broken down by a field. Kim can configure the gadget to use her project as the filter, and the issue type as the field. The gadget will then show the following information for issues in her project:
the total count of all issues
the total count of each issue type
the distribution of each issue type as a percentage
a graphical chart display of that percentage
The other gadgets are not suitable because:
TheHeat Mapgadget displays issues from a project or filter, grouped by a statistic type, in a heat map format. Issues can be grouped by any statistic type (e.g. Status, Priority, Assignee, etc). However, this gadget does not show the total count of all issues, nor the distribution of each issue type as a percentage.
TheTwo Dimensional Filter Statisticsgadget displays issues from a filter in a table format, where each cell shows the number of issues for a given combination of two statistics types (e.g. Status vs Priority, Assignee vs Issue Type, etc). This gadget does not show the total count of all issues, nor a graphical chart display of that percentage.
TheFilter Resultsgadget displays the results of an issue filter on the dashboard. This gadget does not show any summary or breakdown of the issues by any field, nor a graphical chart display of that percentage.
TheIssues in Progressgadget displays all issues that are in progress and assigned to the user viewing the dashboard. This gadget does not show any information about other issues or issue types in the project, nor a graphical chart display of that percentage.
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.)
Answer : A, E
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())
Analyze the Epic Report shown.
Identify why the epic completion date is hard to predict.
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?