ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 44 - ACP-610 discussion

Report
Export

Paul and Tessa are in the Auditors role of every project.

You need to write a JQL query that shows Issues reported by either of them that are still unassigned.

Select the correct JQL query.

A.
Reporter IN (Paul, Tessa) AND Assignee IS EMPTY
Answers
A.
Reporter IN (Paul, Tessa) AND Assignee IS EMPTY
B.
Reporter IN (Auditors) AND assignee - EMPTY
Answers
B.
Reporter IN (Auditors) AND assignee - EMPTY
C.
Reporter IN membersOfCAuditors') AND assignee = NULL
Answers
C.
Reporter IN membersOfCAuditors') AND assignee = NULL
D.
Reporter IS Paul OR Reporter IS Tessa AND Assignee IS NULL
Answers
D.
Reporter IS Paul OR Reporter IS Tessa AND Assignee IS NULL
E.
(Reporter - Paul OR Reporter -- Tessa) AND Assignee - Unassigned
Answers
E.
(Reporter - Paul OR Reporter -- Tessa) AND Assignee - Unassigned
Suggested answer: A

Explanation:

The correct JQL query to find issues reported by either Paul or Tessa that are still unassigned is: Reporter IN (Paul, Tessa) AND Assignee IS EMPTY. This query uses the IN operator to specify a list of values for the Reporter field, and the IS EMPTY operator to check if the Assignee field has no value. The other options are incorrect because they use invalid syntax or operators, such as ''-'', NULL, or Unassigned. For more information on JQL syntax and operators, seeJQL operatorsandUse advanced search with Jira Query Language (JQL).Reference:JQL operators,Use advanced search with Jira Query Language (JQL)

asked 16/09/2024
Manish Chaudhary
37 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first