Exam ACP-600 All QuestionsBrowse all questions from this exam
Question 48

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.)

    Correct Answer: B, D

    To list all features shipped in a specific version like 1.0, the JQL queries need to specify the project, the issue type, and the fixVersion. The correct queries are 'project = GPS AND type = Feature AND fixVersion in (1.0)' and 'project = GPS AND type = Feature AND fixVersion in releasedVersions()'. These queries correctly filter issues by the specified version that has been released.

Discussion
tonycamachoOptions: BD

Correct answer B&D