An issue was created with the following attributes:
* Issue type: Story
* Priority: Blocker
* Labels: Tools, DevOps
* Reporter: A.Grant
An excerpt of the board's swimlane configuration is shown.
In which swimlane will the issue appear?
Answer : B
The issue will appear in theExpediteswimlane, because it matches the querypriority = Blocker. Swimlanes are used to group issues on the board based on a common attribute, such as assignee, epic, or a custom query. The board's swimlane configuration shows that the first swimlane is Expedite, which has the querypriority = Blocker. This means that any issue with a blocker priority will be placed in this swimlane, regardless of its other attributes. The other swimlanes have different queries that do not match the issue's attributes, such as type, labels, or reporter. Therefore, the issue will not appear in those swimlanes. The last swimlane is Everything Else, which is the default swimlane for any issue that does not match any of the previous queries. However, since the issue matches the Expedite query, it will not fall into this swimlane either. Hence, the correct answer is B.Reference:[Configuring swimlanes], [Using swimlanes]
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 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?
Answer : C
The reason why your team completed more story points than they committed in their last sprint is that someone increased the story point value on an issue mid-sprint. This will increase the total story points completed at the end of the sprint, but not affect the total story points committed at the start of the sprint. Therefore, it will result in a positive scope change. The other reasons mentioned in the question do not explain why your team completed more story points than they committed, as they either do not affect story points at all, or affect both committed and completed story points equally.Reference: Viewing the Velocity Chart, Scope change
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())
A team currently uses a single project to track both features and tasks. They will be adopting aqile practices, as follows:
* Features will be developed during three week iterations.
* Tasks will be handled based on priority and rank and released incrementally as needed.
they want to use agile boards with minimal disruption to their current configuration. Which solution will meet their requirements?
Answer : E
The solution that will meet the team's requirements of using agile boards with minimal disruption to their current configuration is to use a Kanban board for tasks and a Scrum board for features in the current project. This way, they can use different agile methodologies for different issue types without creating a new project or changing their existing configuration. They can use a Kanban board for tasks to handle them based on priority and rank and release them incrementally as needed. They can use a Scrum board for features to develop them during three week iterations with sprints and backlogs. The other solutions are either not feasible or not optimal for their needs. Therefore, the correct answer is E.Reference: [Creating a board], [Using a Scrum board], [Using a Kanban board]
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?
The ''Open issues filter of your project shows bugs, along with epics and stones.
You then view the project's Scrum board where you only see epics and stories but not bugs.
Which configuration is responsible for this behavior?
Answer : A