TTechclick ⚡ XP 0% All lessons
IBM · SIEM · Interview Q&AInteractive · L1 / L2 / L3

IBM QRadar Interview Questions — SIEM Architecture & AQL Answers

Whether you are interviewing for a QRadar SOC analyst role or a SIEM engineer position, interviewers consistently probe four clusters: the QRadar architecture and component roles (Console, Event Processor, Flow Processor, App Host), log source configuration and the AQL query language for hunting, rules and building blocks that fire offenses with UBA overlay, and SOAR integration for automated response. This lesson works through 18 interview questions across those four areas — component responsibilities, log source protocols (syslog, JDBC, WinCollect, DSM), AQL syntax and aggregation, custom rules and building blocks, offense lifecycle, User Behavior Analytics, and QRadar SOAR playbooks — with crisp, scenario-led model answers grounded in IBM QRadar's current 2026 architecture.

📅 2026-06-20 · ⏱ 20 min · 18 interview Q&As · live scenario · 🏷 10-Q assessment + AI Tutor inline

⚡ Quick Answer

Crack your IBM QRadar SIEM interview with 18 real questions and model answers covering architecture, log sources, AQL, rules, offenses, UBA, and SOAR integration for 2026.

🎯 By the end you will be able to

Read as:

Pick where you want to start

1

Architecture & Components

Console, Event Processor, Flow Processor, App Host.

2

Log Sources & AQL

DSMs, syslog, WinCollect, AQL queries.

3

Rules, Offenses & UBA

Custom rules, building blocks, UBA risk.

4

SOAR & Scenarios

SOAR playbooks, case management, response.

🧠 Warm-up — 3 questions, no score

Just notice which ones make you pause. We answer all three inside the lesson.

1. What is the role of a Device Support Module (DSM) in IBM QRadar?

Answered in Log Sources & AQL.

2. In AQL, how do you limit a query to events from the last 24 hours?

Answered in Log Sources & AQL.

3. What is the difference between a QRadar Building Block and a Custom Rule?

Answered in Rules, Offenses & UBA.

Common interview slip

Many candidates confuse the QRadar Event Processor with the Console, or say 'AQL is just SQL — use WHERE date > X.' Both slips show shallow architecture knowledge.

The Console is only the management UI and search interface — it does not process events. Event Processors do the heavy lifting: they receive, normalise, correlate and store events in the Ariel database and fire rules. AQL is SQL-like but uses its own time syntax: LAST 24 HOURS or START/STOP epoch timestamps — not SQL date functions. And Building Blocks are reusable filter sets with no offense action; only Custom Rules generate offenses or trigger responses. Getting these three distinctions right is exactly what interviewers probe in a QRadar interview.

① Architecture & components — Console, processors and App Host

Q: Describe the main components of IBM QRadar and their roles.

Model answer: QRadar is built around four component types. The Console is the single management and search UI — it hosts the Offense Manager, the Log Activity and Network Activity tabs, and the AQL search interface, but it does not process events. Event Processors (EPs) are the workhorses: they receive raw log events from log sources, invoke the DSM parser to normalise them, evaluate custom rules, and write events to the Ariel database. Flow Processors (FPs) ingest NetFlow, IPFIX, sFlow and QRadar-generated flows to provide network behaviour visibility alongside events. The App Host is an optional dedicated appliance (or VM) that runs QRadar apps — UBA, the Pulse dashboard, QRadar Assistant — without consuming EP or Console CPU cycles. In an all-in-one lab deployment all roles run on a single appliance; in enterprise, EPs and FPs scale horizontally.

Q: How does an event travel from a firewall log to a QRadar offense?

Model answer: The firewall sends a syslog message to the Event Collector (a lightweight forwarder co-located with an EP or standalone). The collector forwards it to the Event Processor, which runs the matching DSM to parse and normalise fields (source IP, destination IP, port, username, log source type). The normalised event is written to the Ariel event store. Simultaneously, all active Custom Rules are evaluated against the incoming event stream. When rule conditions match (for example five failed logins from the same source in 10 minutes), QRadar creates or increments an Offense in the Offense Manager with a magnitude score (1–10) based on relevance, severity and credibility. Analysts triage offenses, not individual events.

Q: What is the Ariel database and why does QRadar use a time-series store rather than a relational RDBMS?

Model answer: Ariel is QRadar's proprietary high-speed time-series columnar store designed for security event volumes that would overwhelm a row-based relational database. Events and flows are appended in time order and indexed by time window, source IP, destination IP and QID (the QRadar event identifier). This lets AQL range scans across millions of events complete in seconds. The tradeoff is that Ariel is not a general-purpose RDBMS — you cannot do arbitrary JOINs across unrelated tables the way you would in SQL. For cross-dataset enrichment, QRadar uses Reference Sets, Reference Maps and Reference Tables loaded from threat-intel feeds or HR data, which rules can query at correlation time without a JOIN.

Q: What are Reference Sets, Reference Maps and Reference Tables in QRadar?

Model answer: These are QRadar's in-memory lookup structures that rules and AQL can query at real time. A Reference Set is a flat list of values (e.g. a list of known-bad IPs from a threat feed) — rules check 'is the source IP in this set?' A Reference Map is a key→value store (e.g. employee ID → department). A Reference Table is a key→(inner key→value) two-dimensional map (e.g. username → attribute → value). All three can be populated via the QRadar API, the Console UI or a scheduled feed, and they allow context enrichment during rule evaluation without re-parsing log data.

Figure 1 — QRadar event pipeline
Events travel from log source through DSM normalisation on the Event Processor to the Ariel store, where rules fire offenses.QRadar event pipelineLog sourcesyslog / WinCollectEvent Collectorreceives raw eventsEvent ProcessorDSM + rules + ArielOffense Managermagnitude scoredConsole/SOARanalyst triage
Events travel from log source through DSM normalisation on the Event Processor to the Ariel store, where rules fire offenses.
Figure 2 — QRadar component roles
The Console manages the deployment; Event and Flow Processors ingest data; the App Host runs UBA and apps.QRadar component rolesQRadar Consolemanagement & searchEvent ProcessorFlow ProcessorApp Host (UBA)Event CollectorAriel database
The Console manages the deployment; Event and Flow Processors ingest data; the App Host runs UBA and apps.
Name the component split in one sentence

When asked about QRadar architecture, lead with: 'The Console is the management and search UI; Event Processors normalise, correlate and store events in Ariel; Flow Processors handle NetFlow; the App Host runs UBA and apps.' That single sentence covers the four component types interviewers most often probe.

Quick check · Q1 of 10 · Remember

Which QRadar component receives raw log events, runs the DSM parser, evaluates custom rules, and writes events to the Ariel database?

Correct: b. The Event Processor is the workhorse — it receives events from log source collectors, runs the matching DSM to normalise them, evaluates Custom Rules against the event stream, and writes to the Ariel database. The Console is only the management and search UI; the App Host runs apps; the Flow Processor handles NetFlow/IPFIX.
👉 So far: QRadar components: Console = management/search UI only; Event Processor = DSM normalise + correlate + Ariel store; Flow Processor = NetFlow/IPFIX; App Host = UBA and apps. Ariel = time-series columnar store optimised for EPS-scale security events. Reference Sets/Maps/Tables = in-memory lookups for enrichment without JOINs.

② Log sources, flows & AQL — getting data in and querying it

Q: What log source protocols does QRadar support, and when do you use each?

Model answer: QRadar supports several ingest protocols. Syslog (UDP/TCP/TLS) is the most common — firewalls, Linux servers and network devices push events; use TCP or TLS for reliable delivery. WinCollect is IBM's Windows agent that reads the Windows Security, Application and System event logs and forwards them to QRadar — preferred over WMI because it is far lower overhead on domain controllers. JDBC pulls records from relational databases (e.g. Oracle, MSSQL audit tables) on a schedule — useful when the source cannot push syslog. The Log File Protocol retrieves flat log files from SFTP/FTP servers. REST API and vendor-specific connectors (e.g. Microsoft Graph, AWS CloudTrail) pull cloud and SaaS events. The DSM for each source parses the raw payload into QRadar's Common Event Format (QRadar taxonomy) fields.

Q: What is AQL (Ariel Query Language) and how does it differ from standard SQL?

Model answer: AQL is QRadar's SQL-like query language for the Ariel event and flow stores. The syntax looks familiar — SELECT sourceip, COUNT(*) FROM events WHERE category=5002 GROUP BY sourceip — but several differences catch candidates. Time filtering uses LAST N HOURS/MINUTES or START/STOP epoch timestamps, not SQL date functions. Aggregate functions include UNIQUECOUNT (distinct count), SUM, MIN, MAX and AVG. Queries target named stores: events or flows (not custom table names). Field names follow QRadar taxonomy — sourceip, destinationip, username, qid, category — not the raw syslog field names. There are no cross-store JOINs; instead, use Reference Sets as lookup structures in WHERE clauses.

Q: Write an AQL query to find accounts with more than five failed logins in the last hour, grouped by username.

Model answer: A correct answer looks like: SELECT username, COUNT(*) as fail_count FROM events WHERE category = 5002 AND "Event Name" = 'Authentication Failed' GROUP BY username HAVING COUNT(*) > 5 LAST 1 HOURS. The key points to explain: category = 5002 is QRadar's low-level category for authentication failures; LAST 1 HOURS is the AQL time clause (not a WHERE predicate); HAVING filters on aggregate results just as in SQL; and username must be a mapped QRadar taxonomy field (the DSM must populate it — if the DSM leaves it blank, the query returns null values, which is a common root cause of empty AQL results).

Q: How do you onboard a new log source — say a Palo Alto NGFW — to QRadar?

Model answer: The steps are: (1) In the QRadar Console, go to Admin → Data Sources → Log Sources and add a new log source, selecting Palo Alto PA Series as the Log Source Type (the DSM that ships with QRadar or is installed from the IBM App Exchange). (2) Configure the protocol — typically Syslog UDP/TCP — and set the IP/hostname of the firewall so QRadar knows which incoming syslog source to associate with this log source definition. (3) On the Palo Alto, configure a Syslog Server Profile pointing to the QRadar EP's collector port (514 UDP or TCP). (4) After events arrive, verify them under Log Activity — check that the Log Source column shows 'Palo Alto' (not 'SIM Generic') and that fields like sourceip, destinationip, username and category are populated by the DSM (not blank). A SIM Generic or Unknown log source means the DSM did not match the payload format, which is the most common onboarding failure.

Figure 3 — AQL vs standard SQL
AQL is SQL-like but uses QRadar time clauses, taxonomy fields and no cross-store JOINs.AQL vs standard SQLAQL (QRadar)LAST 1 HOURS time clauseSELECT ... FROM eventsUNIQUECOUNT aggregateReference Set lookupsStandard SQLWHERE date > NOW()-1FROM any named tableCOUNT(DISTINCT col)JOIN to reference table
AQL is SQL-like but uses QRadar time clauses, taxonomy fields and no cross-store JOINs.
🗄
DSM
tap to flip

Device Support Module — the QRadar parser plug-in for one vendor or device type. It normalises raw log payloads into QRadar taxonomy fields (sourceip, destinationip, username, category). A 'SIM Generic' log source means no DSM matched the payload.

🔍
AQL LAST clause
tap to flip

AQL time filtering uses LAST N HOURS or LAST N MINUTES at the end of the SELECT, not SQL date functions. A query without a LAST clause scans the entire Ariel store and can take many minutes — always add LAST.

📋
Building Block
tap to flip

A Building Block in QRadar is a reusable named filter set with NO offense action. Other Custom Rules reference it by name to share complex filter logic — like 'Is External IP' or 'Is High-Value Asset'. Only Custom Rules have actions.

🤖
QRadar UBA
tap to flip

User Behavior Analytics — an App Host app that builds per-user ML baselines (login times, source IPs, data access) and scores deviation as a 0-100 risk score. Custom Rules can test UBA risk score, bridging behavioural and rule-based detection.

'AQL is just SQL' mistake

Candidates who call AQL 'just SQL' usually forget the LAST time clause and UNIQUECOUNT. Always show the LAST N HOURS syntax in any AQL answer — an AQL query without a time bound is a performance anti-pattern and a real red flag in an interview. Also name the stores: events and flows, not arbitrary table names.

Quick check · Q2 of 10 · Apply

A new Palo Alto firewall is sending syslog to QRadar but all events appear under 'SIM Generic' log source type. What is the most likely cause?

Correct: c. SIM Generic means QRadar received syslog but no DSM matched the payload format, so it fell back to the generic parser. The fix is to install or update the Palo Alto PA Series DSM from the IBM App Exchange and set the log source type correctly. The Flow Processor, AQL and offense magnitude are unrelated to log source normalisation.
👉 So far: Log source protocols: syslog (push), WinCollect (Windows agent), JDBC (pull from DBs), Log File Protocol (SFTP), REST APIs (cloud). DSM parses raw payload to QRadar taxonomy. AQL time clauses: LAST N HOURS or START/STOP epoch — not SQL date functions. Aggregate: UNIQUECOUNT, SUM, MIN, MAX. Stores: events and flows.

③ Rules, offenses & UBA — correlation and behavioural detection

Q: What is the difference between a Custom Rule and a Building Block?

Model answer: A Custom Rule is a full correlation object: it defines test conditions (AND/OR logic over event properties, counts, time windows, Reference Set lookups) and specifies an action — generate an offense, add an event to an existing offense, log to a certain log source, or dispatch a response. A Building Block has identical condition syntax but has no action and never creates an offense. Its sole purpose is to be a reusable named filter referenced by other rules, avoiding copy-paste logic. For example, a 'Is External IP' Building Block checks whether an IP is outside RFC 1918; multiple rules reference that Building Block instead of each repeating the subnet list. The interview one-liner: Building Block = reusable filter, no action; Custom Rule = same conditions + an action.

Q: Explain the QRadar offense lifecycle from creation to closure.

Model answer: An Offense is created when a Custom Rule fires and its action is 'Create an offense' or 'Assign events to an offense.' QRadar scores it with a magnitude (1–10) that is a weighted composite of relevance (how critical the destination asset is, per the Asset Profile), severity (the rule's configured severity) and credibility (confidence in the log source's data quality). The offense collects correlated events from the same source IP (or username) over its active window. Analysts triage offenses in the Offense Manager: they assign the offense to themselves, mark it Active/Under Investigation, investigate with AQL searches and the Offense Summary, then either close it (with a reason: Resolved, False Positive, No Further Action) or escalate it to a SOAR case. Offenses that receive no new correlated events for the inactive offense timeout (configurable, default 5 days) are automatically closed. Tuning tip: if a rule is generating too many low-quality offenses, increase the event count threshold in the rule conditions or set it to only add events to an existing offense rather than always creating a new one.

Q: What is QRadar User Behavior Analytics (UBA) and how does it score users?

Model answer: QRadar UBA is an app installed on the App Host that adds a machine-learning risk layer on top of QRadar's rule-based correlation. UBA ingests identity data (Active Directory, LDAP, HR feeds) and QRadar events to build a behavioural baseline per user — normal login times, usual source IPs, typical data access patterns. When user activity deviates from baseline — late-night logins, access from a new country, sudden bulk file downloads — UBA assigns an ML-based risk score (0–100) to the user. High-risk users appear in the UBA dashboard. Critically, UBA risk scores are available as a test in Custom Rules: a rule can fire 'offense on brute-force AND user-risk > 70', dramatically reducing false positives compared to a count-only rule. The interview point: UBA adds ML-scored user risk that Custom Rules can consume, bridging behavioural and rule-based detection.

Q: How do you tune a rule that is generating too many false-positive offenses?

Model answer: Start with the data: in Log Activity, run an AQL query to count how many events match the rule's conditions over the past week. Then examine the false-positive offenses — what do the source IPs, usernames or asset tags have in common? Common tuning levers: (1) Raise the event count threshold — change 'more than 3 events' to 'more than 10'. (2) Add exclusions via a Building Block — create a 'Excluded Trusted Scanners' Reference Set and add a negative test 'source IP is NOT in Excluded Trusted Scanners'. (3) Layer an asset criticality condition — only fire when destination asset value is High or Critical. (4) Add a time-of-day constraint — business-hours logins from internal IPs are benign; after-hours are suspicious. (5) If the rule fires on a specific benign log source, add an exclusion for that log source type. Always test the tuned rule in simulation mode (Disable the action, check Log Activity matches) before enabling it live. The gold principle: tune with data, not guesses — let AQL counts guide every change.

Figure 4 — QRadar offense magnitude
Offense magnitude (1-10) is a weighted composite of relevance, severity and credibility.QRadar offense magnitudeMagnitude (1-10)weighted composite scoreRelevanceasset criticality valueSeverityrule configured weightCredibilitylog source confidence
Offense magnitude (1-10) is a weighted composite of relevance, severity and credibility.
Test rule changes in simulation mode first

Before enabling a newly tuned rule in production, disable its offense action and watch Log Activity to verify the rule conditions match the right events and not benign ones. In QRadar this is called running the rule in 'simulation' or 'test' mode. Stating this habit in an interview shows operational maturity, not just conceptual knowledge.

▶ Watch a failed-login offense fire — and see why a false-positive fires too

Step through how five failed logins from one IP become a QRadar offense. Press Play for the real attack path, then Break it to see the scanner false-positive and how a Reference Set exclusion fixes it.

① Failed loginsFive SSH authentication failures arrive from 203.0.113.50 within 10 minutes — all targeting the same domain controller.
② DSM normaliseThe Linux syslog DSM parses each event, maps the source IP to sourceip, sets category=5002 (Authentication Failed), and writes to Ariel.
③ Rule firesThe 'Brute Force Login' Custom Rule — 5+ failures from one IP in 10 min — matches. Its action: create an offense.
④ Offense createdQRadar creates offense 'Multiple Authentication Failures' with magnitude based on the domain controller's asset criticality (Relevance=High).
Press Play to watch a brute-force attack become a QRadar offense. Then press Break it to see the scanner false-positive.
Quick check · Q3 of 10 · Understand

What is the key difference between a QRadar Building Block and a Custom Rule?

Correct: a. A Building Block is a named, reusable filter set with no offense action — it is referenced by Custom Rules to share complex logic. Only Custom Rules have an action (create/update offense, dispatch response). Neither is limited by where they run; both are configured in the same Rule Editor GUI.
👉 So far: Building Block = reusable filter, no offense action. Custom Rule = same conditions + action (create offense, response). Offense magnitude = relevance + severity + credibility (1-10). UBA adds ML user-risk score (0-100) usable as a Custom Rule test condition. Tune rules by raising event thresholds, adding Reference Set exclusions, and filtering by asset criticality.

④ SOAR & scenarios — automated response and day-2 operations

Q: What is QRadar SOAR and how does it connect to QRadar SIEM?

Model answer: QRadar SOAR (Security Orchestration, Automation and Response — formerly IBM Resilient) is a separate product that provides case management, playbook automation and cross-tool orchestration for incident response teams. The integration works bi-directionally: a QRadar Custom Rule action can automatically open a SOAR case from an offense (via the SOAR app in QRadar), pushing offense details, associated events and asset data into the case. Inside SOAR, a playbook (a defined workflow) can run automatically — for example, enriching an IP via VirusTotal, querying EDR for the endpoint, isolating the host, and notifying the team on Slack. SOAR can also add notes back to the QRadar offense and close it when the case is resolved. The clean split: QRadar SIEM detects and correlates; QRadar SOAR automates the response workflow and manages the case to closure.

Q: Describe how you would respond to a ransomware offense in QRadar end to end.

Model answer: When QRadar fires a high-magnitude ransomware offense (triggered by rules detecting mass file-rename events from endpoint logs plus unusual outbound connections to uncategorised IPs from the same host), the response path is: (1) Triage in Offense Manager — confirm the source IP, the affected asset's criticality, and drill into the offense's associated events. (2) AQL investigation — query events and flows to find all destination IPs the host contacted and all users logged in at that time. (3) Escalate to SOAR — the 'Create SOAR Case' action (or an automatic rule action) opens a SOAR incident. (4) Playbook runs — isolate the endpoint via EDR integration, block the C2 IPs on the firewall via SOAR's network device integrations, and notify the IR team. (5) Close the loop — SOAR updates the QRadar offense with investigation notes and closes it after containment is confirmed. The architecture point: QRadar surfaces what happened and which assets are involved; SOAR orchestrates what to do across every tool in the stack.

Q: How do you manage and upgrade QRadar in a distributed deployment?

Model answer: In a distributed deployment the Console is the central manager — all configuration, rule editing, offense management and user access happens here. Event and Flow Processors are managed agents that phone home to the Console. Patching follows IBM Fix Pack releases; the Console is patched first, then EPs and FPs in sequence, because a Console version must always be equal to or higher than its managed processors. Capacity planning keys on Events Per Second (EPS) — each EP appliance has a licensed EPS ceiling; when approaching it you add an EP and use the routing rules to distribute log sources across EPs. Data retention is configured per-store (events, flows, payloads) in days; raw payloads are the largest store and are often set shorter than event metadata. The QRadar System Health dashboard shows EPS, FPS, queue depths and disk utilisation — the first place to look when analysts report slow searches.

Q: A security analyst says QRadar searches are slow and offenses are delayed. How do you troubleshoot?

Model answer: Start with Admin → System Health to check three metrics: (1) EPS rate — if events per second is near or above the EP's licensed ceiling, the EP is backlogged; distribute load to another EP or reduce noisy log sources. (2) Ariel queue depth — a growing queue means events are arriving faster than the EP can index them; again, check EPS and disk I/O. (3) Disk utilisation — if the data partition is above 85%, Ariel performance degrades; shorten retention or add storage. For search speed specifically, check whether the AQL query is missing a LAST time bound — a query with no time constraint scans the entire Ariel store, which can take many minutes. Advise analysts to always include LAST N HOURS. If the issue persists after ruling out capacity, check for a runaway rule — a rule with no count threshold or time window that fires on every event can flood the rule engine; use the Rule Performance view in the Console to identify high-firing rules.

Figure 5 — QRadar SOAR response flow
A QRadar offense triggers a SOAR case; playbooks enrich, contain and close the incident automatically.QRadar SOAR response flowQRadar offenserule fires, magnitudeSOAR caseauto-created from EPPlaybook runsenrich + isolateContainmentEDR + firewall blockClosureoffense updated
A QRadar offense triggers a SOAR case; playbooks enrich, contain and close the incident automatically.

Priya at SecureFinance in Hyderabad faces this

SecureFinance's QRadar is generating a high-magnitude offense titled 'Multiple Authentication Failures' every morning at 9:05 AM — the exact time the IT team runs an automated vulnerability scanner that authenticates to servers. The offense fires 15-20 times a day and is drowning out real detections.

Likely cause

The Custom Rule triggering the offense counts more than 5 failed logins from any source IP in 10 minutes. The vulnerability scanner uses service credentials that sometimes fail authentication before succeeding, tripping the rule without any real attack. There is no exclusion for known scanner IP addresses.

Diagnosis

In Log Activity, Priya runs AQL: SELECT sourceip, COUNT(*) FROM events WHERE category=5002 GROUP BY sourceip LAST 2 HOURS. The scanner's IP appears with the highest count every morning. The offense source IP matches the scanner. The offense times align exactly with the scan schedule.

Log Activity → AQL search → Offense Manager → Admin → Rules → Edit Rule
Fix

Create a Reference Set named 'Approved Vulnerability Scanners' and add the scanner's IP. Edit the offending Custom Rule to add a negative test: 'source IP is NOT in Approved Vulnerability Scanners'. Deploy the updated rule. Alternatively, create a Building Block 'Is Approved Scanner' and reference it in all authentication-failure rules to centralise the exclusion logic.

Verify

The next morning at 9:05 AM no new 'Multiple Authentication Failures' offense is created for the scanner IP. Log Activity still shows the scanner's failed authentication events (they are not dropped), but the rule no longer fires. Real authentication-failure offenses from unknown IPs still appear as expected.

Quick check · Q4 of 10 · Analyze

Analysts complain that QRadar AQL searches are very slow. What is the fastest first check to identify whether a missing time clause is the cause?

Correct: c. An AQL query without a LAST or START/STOP time clause scans the full Ariel event store, which can take many minutes even on fast hardware. Checking for missing LAST clauses is the quickest diagnostic step before investigating capacity. Rebooting the EP, raising magnitude thresholds or adding a Flow Processor do not address the query design issue.
👉 So far: QRadar SOAR = case management + playbook automation; auto-creates cases from QRadar offenses, enriches and contains via integrations, writes notes back to QRadar. Slow searches = missing LAST clause or EP at EPS capacity. Slow offenses = Ariel queue depth or rule engine overloaded — check System Health EPS, queue depth, disk utilisation.

🤖 Ask the AI Tutor

Tap any question — instant, scoped to this lesson. No login, no waiting.

Pre-curated from vendor docs + community Q&A, scoped to this lesson. For a live prod issue, paste your export into chat.techclick.in.

📝 Wrap-up assessment — six more

You've answered 4 inline. Six left. 70% (7 of 10) marks the lesson complete on your profile. Tap Submit all answers at the end.

Q5 · Remember

What does a 'SIM Generic' log source type in QRadar indicate?

Correct: b. SIM Generic means QRadar received events from the source but no installed DSM matched the payload format, so normalisation fell back to the generic parser — taxonomy fields like sourceip and category will be unpopulated. Fix: install the correct vendor DSM from IBM App Exchange and set the log source type explicitly.
Q6 · Understand

Why is the Ariel database described as a time-series columnar store rather than a relational RDBMS?

Correct: b. Ariel appends events in time order and indexes them for fast range scans, enabling AQL to search millions of events in seconds. A row-based RDBMS cannot sustain the write throughput and range-scan performance needed at SIEM scale. There are no arbitrary JOINs in Ariel; cross-dataset enrichment uses Reference Sets and Maps.
Q7 · Apply

An analyst queries AQL for failed logins in the last 24 hours but the search takes 15 minutes. What is the most likely cause?

Correct: c. An AQL query without a LAST or START/STOP time clause scans the full Ariel event store, which can take many minutes regardless of hardware. Adding LAST 24 HOURS at the end of the SELECT restricts the scan to recent data and typically reduces query time from minutes to seconds. DSM, magnitude thresholds and the Flow Processor are unrelated to AQL query performance.
Q8 · Analyze

A Custom Rule fires a high-magnitude offense every morning when the vulnerability scanner runs. What is the best fix?

Correct: b. The best practice is to add the scanner's IP to a Reference Set (e.g. 'Approved Vulnerability Scanners') and add a negative test to the rule: 'source IP is NOT in Approved Vulnerability Scanners'. This preserves detection of real attacks from unknown IPs while suppressing the known-good scanner. Disabling or deleting breaks detection; reducing magnitude hides all severities.
Q9 · Evaluate

You need to detect lateral movement when a user account logs into more than three unique hosts in five minutes AND the account has a UBA risk score above 60. Which QRadar design achieves this with least false positives?

Correct: a. A single Custom Rule using UNIQUECOUNT on destination IP within a 5-minute window combined with a UBA risk score test is the correct design — it minimises false positives by requiring both the behavioural pattern (rapid lateral movement) and a pre-elevated risk score. Building Blocks have no action; a Flow Processor rule operates on network flows, not user identity; a scheduled report is not real-time detection.
Q10 · Evaluate

QRadar offenses are delayed by 20 minutes after events arrive. Admin → System Health shows the Ariel queue depth is growing. What is the first remediation to try?

Correct: c. A growing Ariel queue means events arrive faster than the EP can index them — typically because a noisy log source is spiking EPS near or above the licensed ceiling. The remediation is to identify the highest-volume log sources (Log Activity → Log Source statistics), reduce their verbosity or route them to an additional EP. Deleting offenses frees no indexing capacity; disabling UBA affects scoring, not indexing; the inactive timeout controls closure, not throughput.
Lesson complete — saved to your profile.
Almost! You need 70% (7 of 10) — re-read the path that tripped you up and tap "Try again".

🧠 In your own words

Type one line: what is a QRadar Building Block and how does it differ from a Custom Rule? Then compare with the expert version.

Expert version: A Building Block in QRadar is a reusable named filter set with no offense action — it captures a complex logical condition (such as 'Is External IP' or 'Is High-Value Asset') so multiple Custom Rules can reference it by name without duplicating the logic. A Custom Rule uses the same condition-editor syntax but adds an action: create an offense, update an existing offense, or dispatch a response action. The clean one-liner: Building Block equals reusable filter with no action; Custom Rule equals same conditions plus an action that generates an offense or triggers a response.

🗣 Teach a friend

Best way to lock it in — explain it in one line to a teammate. Tap to generate a paste-ready summary.

📖 Glossary

Event Processor (EP)
The QRadar component that receives raw events from log sources, invokes the DSM parser to normalise them, evaluates Custom Rules, and writes to the Ariel time-series database. EPs scale horizontally to support higher EPS.
DSM (Device Support Module)
A QRadar parser plug-in for a specific vendor or device type. The DSM maps raw log payload fields to QRadar taxonomy fields (sourceip, destinationip, username, category). SIM Generic means no DSM matched.
Ariel Database
QRadar's proprietary high-speed time-series columnar store for events and flows. Optimised for SIEM-scale append and time-range scans via AQL; no general-purpose SQL JOINs.
AQL (Ariel Query Language)
QRadar's SQL-like search dialect. Uses LAST N HOURS or START/STOP time clauses, QRadar taxonomy field names, UNIQUECOUNT/SUM aggregates, and queries the events or flows named stores.
Building Block
A named, reusable filter set in QRadar's rule editor with no offense action. Referenced by Custom Rules to share complex logic without duplication. Only Custom Rules generate offenses or response actions.
Offense
A QRadar incident object created when a Custom Rule fires. Aggregates correlated events from one source, scored by magnitude (1-10): relevance (asset criticality) + severity (rule weight) + credibility (log source quality).
Reference Set
A QRadar in-memory flat list of values (IPs, usernames) that Custom Rules and AQL can look up at correlation time. Used for threat intel feeds, exclusion lists and asset classification without relational JOINs.
UBA (User Behavior Analytics)
QRadar App Host application that builds per-user ML behavioural baselines and scores deviation as a 0-100 risk score. UBA risk can be tested as a condition in Custom Rules to reduce false positives.
QRadar SOAR
Formerly IBM Resilient — QRadar's Security Orchestration, Automation and Response product. Automates incident response via playbooks, creates cases from QRadar offenses and orchestrates containment actions across the security tool stack.
WinCollect
IBM's lightweight Windows agent that reads Windows Security, Application and System event logs and forwards them to QRadar. Preferred over WMI for Windows log collection due to lower overhead on domain controllers.

📚 Sources

  1. IBM — IBM QRadar SIEM Architecture: Console, Event Processors, Flow Processors and App Host. ibm.com/docs/qradar
  2. IBM — QRadar Device Support Modules (DSM) configuration guide and App Exchange. ibm.com/docs/qradar/dsm
  3. IBM — Ariel Query Language (AQL) reference: syntax, time clauses, aggregates and Reference Sets. ibm.com/docs/qradar/aql
  4. IBM — QRadar Custom Rules and Building Blocks: conditions, actions, offense lifecycle and tuning. ibm.com/docs/qradar/rules
  5. IBM — QRadar User Behavior Analytics (UBA): ML risk scoring and Custom Rule integration. ibm.com/security/security-intelligence/uba
  6. IBM — QRadar SOAR (formerly Resilient): playbooks, case management and SIEM integration. ibm.com/security/security-intelligence/qradar/soar

What's next?

Done with the interview prep? Go deeper on QRadar design — the Ariel database internals, writing complex AQL pivot queries, tuning false-positive-heavy rules, configuring UBA ML baselines, and orchestrating multi-step SOAR playbooks across your security tool stack.