Question 415 of 1,639
Mitigate threats using Microsoft SentinelmediumMultiple ChoiceObjective-mapped

SC-200 Mitigate threats using Microsoft Sentinel Practice Question

This SC-200 practice question tests your understanding of mitigate threats using microsoft sentinel. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. A key principle to apply: the 'join' operator combines rows from two or more tables.. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

A SOC analyst is creating a scheduled analytics rule in Microsoft Sentinel to detect potential account compromise. The rule should trigger when a user account is created in Microsoft Entra ID and, within one hour, that same account is used to sign in from an unfamiliar location. The queries use the AuditLogs table for account creation and the SigninLogs table for sign-ins. Which KQL operator should be used to correlate these two events from different tables within a specific time window?

Question 1mediummultiple choice
Full question →

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

join

The correct answer is B (join) because the scenario requires correlating two events from different tables (AuditLogs and SigninLogs) based on a common field (e.g., UserPrincipalName) and within a specific time window (one hour). The join operator in KQL allows you to combine rows from two tables by matching keys, and you can use the 'where' clause on the time fields to enforce the one-hour window. This is the only operator that supports row-wise correlation across tables with a time constraint.

Key principle: The 'join' operator combines rows from two or more tables.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • where

    Why it's wrong here

    Incorrect. The 'where' operator filters rows in a single table and cannot join multiple sources.

  • join

    Why this is correct

    Correct. The 'join' operator can combine rows from two tables based on a common key and a time window, enabling correlation of account creation and sign-in events.

    Related concept

    The 'join' operator combines rows from two or more tables.

  • union

    Why it's wrong here

    Incorrect. The 'union' operator appends rows from multiple tables but does not correlate them.

  • summarize

    Why it's wrong here

    Incorrect. The 'summarize' operator aggregates data within a single table and cannot join tables.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often confuse union (which stacks rows) with join (which correlates rows), especially when the question mentions 'different tables' and 'time window' — union cannot enforce a time-based relationship between rows from separate tables.

Detailed technical explanation

How to think about this question

Under the hood, the join operator in KQL uses hash matching to combine rows from the left and right tables based on the specified key (e.g., UserPrincipalName). To enforce the one-hour time window, you must add a condition in the 'on' clause or in a subsequent 'where' clause comparing timestamps (e.g., on $left.TimeGenerated between $right.TimeGenerated and $right.TimeGenerated + 1h). A subtle behavior: if the time fields are not indexed or if the tables are large, the join can be resource-intensive; using 'kind=leftouter' or 'kind=inner' with a time-bounded condition can improve performance.

KKey Concepts to Remember

  • The 'join' operator combines rows from two or more tables.
  • It requires a common key (e.g., UserPrincipalName) to match rows.
  • 'join' supports time-based correlation using `lookback` or `within` clauses.
  • Various join kinds (e.g., `inner`, `leftouter`) control how rows are matched.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

The 'join' operator combines rows from two or more tables.

Real-world example

How this comes up in practice

A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. The 'join' operator combines rows from two or more tables. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.

What to study next

Got this wrong? Here's your next step.

Review the 'join' operator combines rows from two or more tables., then practise related SC-200 questions on the same topic to reinforce the concept.

Related practice questions

Related SC-200 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free SC-200 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this SC-200 question test?

Mitigate threats using Microsoft Sentinel — This question tests Mitigate threats using Microsoft Sentinel — The 'join' operator combines rows from two or more tables..

What is the correct answer to this question?

The correct answer is: join — The correct answer is B (join) because the scenario requires correlating two events from different tables (AuditLogs and SigninLogs) based on a common field (e.g., UserPrincipalName) and within a specific time window (one hour). The join operator in KQL allows you to combine rows from two tables by matching keys, and you can use the 'where' clause on the time fields to enforce the one-hour window. This is the only operator that supports row-wise correlation across tables with a time constraint.

What should I do if I get this SC-200 question wrong?

Review the 'join' operator combines rows from two or more tables., then practise related SC-200 questions on the same topic to reinforce the concept.

What is the key concept behind this question?

The 'join' operator combines rows from two or more tables.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Keep practising

More SC-200 practice questions

Last reviewed: Jun 11, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This SC-200 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SC-200 exam.