Atlassian Certified Professional – Jira Service Management Administrator (ACP-600) — Question 24
Your development team has just released their first version of a GPS tracker yesterday. The next product release is not due for another 3 months.
Which two JQL queries, when executed today, will list all features shipped in the 1.0 version? (Choose two.)
Answer options
- A. project = GPS AND issuetype Feature AND fixVersion = released()
- B. project = GPS AND type = Feature AND fixVersion in (1.0)
- C. project = GPS AND issuetype = Feature AND fixVersion(s) IS NOT EMPTY
- D. project = GPS AND type = Feature AND fixVersion in releasedVersions()
- E. project = GPS AND type = Feature AND fixVersion(s) = "1.0"
- F. project = GPS AND issuetype = Feature AND fixVersion in 1.0
Correct answer: C, E
Explanation
The correct answers, C and E, identify features that have a fixVersion specified and those matching the exact version '1.0', respectively. Option A is incorrect as it uses 'released()', which won't specify the version correctly. Option B lacks the correct syntax for specifying the version. Option D uses 'releasedVersions()', which also does not pinpoint the 1.0 version specifically. Option F is syntactically incorrect as it does not properly reference the version.