ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 47 - ACP-610 discussion

Report
Export

Auditors group contains only two members; Adam and Eve.

You need to create a quick filter that shows overdue issues assigned to either of them

Which JQL query is always correct?

A.
duedate <= currentLogin() AND assignee in membersOf('auditors')
Answers
A.
duedate <= currentLogin() AND assignee in membersOf('auditors')
B.
due - overdueQ AND assignee in membersOfC'auditors')
Answers
B.
due - overdueQ AND assignee in membersOfC'auditors')
C.
duedate < startOfDay() AND assignee in (Adam, Eve)
Answers
C.
duedate < startOfDay() AND assignee in (Adam, Eve)
D.
due <= now AND assignee in (Adam. Eve)
Answers
D.
due <= now AND assignee in (Adam. Eve)
E.
due < - '0' AND assignee - Adam OR assignee - Eve
Answers
E.
due < - '0' AND assignee - Adam OR assignee - Eve
Suggested answer: C

Explanation:

This JQL query is always correct because it uses theduedatefield, which is a date picker that stores a date value without a time component, and thestartOfDay()function, which returns the start of the current day (i.e., midnight). This query will return all issues that have a due date before today and are assigned to either Adam or Eve. The other queries are either incorrect or unreliable because they use different fields or functions that may not work as expected. For example, theduefield is a date time picker that stores both a date and a time value, and thecurrentLogin()function returns the date and time of the current user's last login, which may vary depending on the user and their timezone.Reference:: https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-fields/#Advancedsearchingfieldsreference-DuedateDuedate https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-functions/#Advancedsearchingfunctionsreference-startOfDaystartOfDay

asked 16/09/2024
Batista Moreira
38 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first