Questions for the ACP-620 were updated on : Nov 21 ,2025
Team members need to indicate the affected feature when they report bugs in your company-
managed project.
● They need to select the affected feature from a dropdown list.
● They need to be able to select more than one affected feature per issue.
● Only project administrators should to be able to control and manage the feature list themselves.
Which field satisfies these requirements?
D
Explanation:
Components allow users to select multiple values from a predefined list (e.g., affected features).
They are managed by project administrators, making them ideal for controlled, multi-select
classification within a company-managed project.
The rule shown is configured to run in your project.
The rule actor is missing a permission which is causing the rule to error.
Identify that permission.
C
Explanation:
The Schedule Issues permission is required to edit date-related fields, such as the Due Date and Fix
Versions. Since the rule edits the Fix versions field and responds to Due Date changes, lacking this
permission will cause the rule to fail.
A user wants to set a field to a specific value when any issue in a project goes from the Open to
Pending status.
Identify two triggers that can be used in the automation rule. (Choose two.)
A, D
Explanation:
Field value changed: Can be used if you're targeting the Status field specifically to detect when it
changes from Open to Pending.
Issue transitioned: The most direct and reliable trigger for detecting a workflow transition from one
status (Open) to another (Pending).
Two boards display stories from a single project.
When team members view the backlog of both boards, they can only see the Color custom field on
one of the boards and not the other.
They want to see it on both boards.
Which configuration must be changed?
B
Explanation:
The Card layout controls which fields are displayed on issue cards in the backlog and board views. To
show the Color custom field on both boards, it must be added to the card layout configuration for
each board individually.
A team-managed project has a custom role in addition to the built-in roles.
New user Quinn needs to perform the following actions in the project:
● transition issues
● add comments
● remove watchers
● add attachments
● manage sprints
Which role will definitely grant him the permissions he needs?
C
Explanation:
In team-managed projects, only the Administrator role has full access to all permissions, including
advanced actions like managing sprints and removing watchers. While the Member and Custom roles
may cover some actions, only the Administrator role definitely grants all the listed capabilities.
Which statement about custom roles in team-managed projects is true?
C
Explanation:
In team-managed projects, custom roles are project-specific and do not apply globally across Jira.
They are created and managed within the individual project and cannot be reused in other projects.
You need a gadget to show only issues where status is In Progress and the assignee is the current
user viewing it.
Additionally, it should not use a saved filter and requires no additional configuration. Identify the
gadget that meets these requirements.
B
Explanation:
The Issues In Progress gadget automatically displays issues with the status "In Progress" that are
assigned to the current user viewing the dashboard. It requires no saved filter or additional
configuration, making it the best fit for the described scenario.
Your team wants to see the average number of days that resolved issues were open over a given
period displayed in a chart.
Which gadget meets this requirement?
A
Explanation:
The Resolution Time gadget displays the average number of days that resolved issues were open
over a specified period. It provides insights into how long issues took to resolve, aligning exactly with
the team's requirement.
You are reviewing the Created vs. Resolved Issues Report for the last fourteen days in your project.
The report is shown.
Created issues are represented by the top line, which is red and has dots for the data points on each
day. Resolved issues are represented by the bottom line, which is green and has dots for the data
points on each day.
Which conclusion can definitely be drawn from the report?
B
Explanation:
On June 29, the red line (created issues) is significantly above the green line (resolved issues),
indicating that more issues were created than resolved, meaning some issues remain unresolved as
of that date.
A shared dashboard contains the Issue Statistics gadget.
Amanda complains that the gadget displays 23 issues when she views it while other team members
report that they see 45 issues.
Select two reasons that explain why the numbers differ. (Choose two.)
B
Explanation:
Some of the issues are hidden by issue security levels: Amanda may not have permission to view
issues restricted by security levels, causing her to see fewer results.
She does not meet the currentUser() criteria in the saved filter: If the saved filter uses currentUser()
in its JQL and Amanda doesn’t match its logic, the results shown to her will differ from those seen by
others.
The Control Chart for the Orange team board is shown.
What two items can you interpret from this report? (Choose two.)
B, D
Explanation:
The minimum time shown is <1 minute, which indicates the fastest an issue transitioned to done.
The average time shown is 1w 13h 17m, which confirms that on average, issues take over one week
to complete.
You need to write a JQL query showing:
● issues where the Priority was High in the past and may or may not still be High
Identify two JQL statements that will return the correct results. (Choose two.)
C, D
Explanation:
priority changed to High before now(): This returns issues where the priority was set to High at any
point in the past, regardless of its current value.
priority was High: This returns issues that had High priority at some point, whether or not they still
have it. Both satisfy the requirement to show issues where the priority was High in the past and may
or may not still be.
You want to see how unresolved issues are trending over a given period. Namely, on any given day,
what is the average amount of time that issues were still unresolved.
What gadget displays this information?
B
Explanation:
The Average Age Chart shows the average age of unresolved issues over time. It helps visualize how
long, on average, issues have been open on any given day, which directly reflects how unresolved
issues are trending.
A user wants to add the label VIP to an issue when any member of the Executives group adds a
comment to it.
The configuration of the automation rule is shown.
The automation rule does not always execute as expected.
What is the cause of the problem?
D
Explanation:
The user condition is checking whether the reporter is in the Executives group, but the rule is
triggered when the issue is commented on. To work as intended, the condition should check whether
the commenter (i.e., user who triggered the rule) is in the Executives group - not the reporter.
You need to write a JQL query that returns all issues without the label "discard".
Identify the JQL statement that returns the correct results.
A
Explanation:
This JQL correctly returns all issues that do not have the label "discard", including those where the
labels field is empty. Without the OR labels is EMPTY clause, issues with no labels would be excluded.