Exam ACP-100 All QuestionsBrowse all questions from this 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?

    Correct Answer: B

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

I think it is B

SyedMuhammadUmairMansoorOption: B

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

cloudstudy12358Option: B

The answers I chose were B