ACP-100 Exam QuestionsBrowse all questions from this exam

ACP-100 Exam - Question 18


Sundar's development projects are falling behind. He wants to write a JQL query to find issues that meet all three of these criteria:

1. He is the project lead of the project or the project is DEV.

2. fixVersion had been set to 4.3 at some point but was later removed.

3. Issues were created in the first 15 days of this month.

The Exhibit shows the JQL query he created.

Which statement about Sundar's query is true?

Show Answer
Correct Answer: BE

The query will not return the right set of issues because lines 2 and 3 are wrong. The specific issue here is with the condition 'FixVersion was 4.3 and FixVersion != 4.3 or FixVersion is EMPTY'. This statement is logically flawed, as it attempts to combine historical and current values in a way that might not accurately capture issues where the fixVersion was once set to 4.3 and then removed. Additionally, the created date condition 'Created > StartOfMonth() and Created < StartOfMonth('15')' should be corrected to accurately capture issues created within the first 15 days of the month.

Discussion

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

I think it is B

cloudstudy12358Option: B
Aug 30, 2021

The answers I chose were B

SyedMuhammadUmairMansoorOption: B
Nov 20, 2022

Line 2 and 3 are returning wrong value I tested it, B