ACP-100 Exam QuestionsBrowse all questions from this exam

ACP-100 Exam - Question 20


Tom has asked you why the numbers returned by his searches are not right. He shows you three JQL queries:

How can you fix this?

Show Answer
Correct Answer: BD

The discrepancy in the numbers is due to the exclusion of issues with empty fixVersion fields in the third query. When you query fixVersion != 1.1.0, it returns results where the fixVersion is explicitly set to a value other than 1.1.0 but does not account for issues where the fixVersion is empty. By using the query project = "Cake Baking" and (fixVersion is empty or fixVersion != 1.1.0), you include issues without any fixVersion specified, which fixes the count discrepancy.

Discussion

7 comments
Sign in to comment
DdaGOption: B
May 11, 2022

It is B, you need a FixVersion is EMPTY clause to catch all the tickets

RedBOption: B
Jul 7, 2021

The correct answer is B

cloudstudy12358Option: C
Aug 30, 2021

The answers I chose were C

SyedMuhammadUmairMansoorOption: B
Nov 20, 2022

B, Actually when you say fixversion != xyz, then first it will search the issues contains fixversion and then it will filter out from that no in xyz, so empty ones will not be listed.

SyedMuhammadUmairMansoorOption: B
Dec 2, 2022

B Actually when you say fixversion != xyz, then first it will search the issues contains fixversion and then it will filter out from that no in xyz, so empty ones will not be listed.

BetigoloOption: B
Dec 12, 2022

"B" - No question here. it's B

tk_tk_tkOption: B
May 25, 2023

I chose B