C1000-163 · Question #157
Which are the time criteria in AQL queries?
The correct answer is C. START, STOP, LAST, NOW, PARSEDATETIME. Option C correctly identifies all five time criteria in AQL (Ariel Query Language, used in IBM QRadar): START and STOP define an absolute time range's boundaries, LAST specifies a relative duration (e.g., LAST 24 HOURS), NOW represents the current timestamp, and PARSEDATETIME…
Question
Which are the time criteria in AQL queries?
Options
- ASTART, BETWEEN, LAST, NOW, PARSEDATETIME
- BSTART, STOP, BETWEEN, LAST
- CSTART, STOP, LAST, NOW, PARSEDATETIME
- DSTART, STOP, BETWEEN, FIRST
How the community answered
(37 responses)- A3% (1)
- B5% (2)
- C78% (29)
- D14% (5)
Explanation
Option C correctly identifies all five time criteria in AQL (Ariel Query Language, used in IBM QRadar): START and STOP define an absolute time range's boundaries, LAST specifies a relative duration (e.g., LAST 24 HOURS), NOW represents the current timestamp, and PARSEDATETIME converts a formatted date string into a usable time value.
Why the distractors fail:
- A swaps
STOPforBETWEEN-BETWEENis not an AQL time criterion; it's a comparison operator used in other SQL-like contexts. - B omits
NOWandPARSEDATETIME, giving only four criteria instead of five. - D replaces
NOWandPARSEDATETIMEwithFIRST, which is not an AQL time criterion at all.
Memory tip: Think of a timeline story - you START, you STOP, you look at what happened LAST, you check NOW, and if a date is in an unusual format you PARSEDATETIME it. The key discriminator is that STOP (not BETWEEN) closes the time window, and both NOW and PARSEDATETIME are needed for the full five.
Community Discussion
No community discussion yet for this question.