Your company recently created an internal IT project to track hardware requests. View the project configuration below: Project: Hardware request Project lead: Allen Frank Default Assignee: Project lead
To test the triaging process you create the first issue in the project and select the Macbook 13" component. You don t update the assignee field and leave it to the default value of Automatic.
Based on the current configuration, which value will the assignee field show after creating the test issue?
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())
Your team uses Story Points for estimation and tracking.
You performed several actions in the active sprint.
Which two actions are reflected as scope change? (Choose two.)
Answer : C, D
The two actions that are reflected as scope change are dragging an estimated story from the backlog to the sprint and modifying the estimate value on a committed story. Scope change is a measure of how much work was added or removed from a sprint after it started. It is calculated by comparing the total story points committed at the start of the sprint and the total story points completed at the end of the sprint. If you add or remove issues from a sprint, or change their estimates, you are changing the scope of the sprint. The other actions mentioned in the question do not affect the scope of the sprint, as they do not change the amount of work planned or done in the sprint.Reference: Viewing the Velocity Chart, Scope change
Your team works in a project that uses only one workflow, a simplified workflow.
The configuration of the corresponding Kanban board is shown:
Which statement is definitely true?