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: B

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
Nov 11, 2023

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

RedB
Jan 7, 2023

The correct answer is B

cloudstudy12358
Feb 28, 2023

The answers I chose were C

SyedMuhammadUmairMansoor
May 20, 2024

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
Jun 2, 2024

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.

Betigolo
Jun 12, 2024

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

tk_tk_tkOption: B
Nov 25, 2024

I chose B