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

SC-200 Practice Question: summarize groups rows based on specified columns.

This SC-200 practice question tests your understanding of mitigate threats using microsoft sentinel. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. A key principle to apply: summarize groups rows based on specified columns.. 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 brute-force attacks on Microsoft Entra ID. The rule should generate an incident when a single user account fails to authenticate more than 10 times in 5 minutes from the same IP address. Which KQL operator is most appropriate to aggregate the count of failed sign-ins?

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

summarize

The `summarize` operator is the correct choice because it aggregates data into groups based on specified criteria, such as counting the number of failed sign-ins per user and IP address within a time window. In this scenario, you need to count events where `ResultType` indicates failure (e.g., 50053 or 50057), grouped by `UserPrincipalName` and `IPAddress`, and then filter for counts exceeding 10. The `summarize` operator with `count()` directly provides this aggregation, enabling the rule to trigger an incident when the threshold is met.

Key principle: summarize groups rows based on specified columns.

Answer analysis

Option-by-option breakdown

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

  • summarize

    Why this is correct

    summarize groups data by the specified columns (e.g., UserPrincipalName, IPAddress) and calculates an aggregate like count(), which is essential for detecting the threshold.

    Related concept

    summarize groups rows based on specified columns.

  • extend

    Why it's wrong here

    extend adds calculated columns to each row but does not aggregate data.

  • project

    Why it's wrong here

    project selects a subset of columns, it does not perform aggregation.

  • where

    Why it's wrong here

    where filters rows based on conditions but does not aggregate; it can only be used to filter the initial set before summarizing.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Microsoft often tests the distinction between row-level operators (`extend`, `project`, `where`) and aggregation operators (`summarize`, `make-series`), and the trap here is that candidates mistakenly choose `where` thinking it can count events by filtering for a threshold, but `where` only filters rows and cannot aggregate across multiple rows to produce a count.

Detailed technical explanation

How to think about this question

Under the hood, `summarize` in KQL uses a hash-based grouping mechanism to partition the input table into buckets defined by the `by` clause, then applies an aggregation function (e.g., `count()`, `dcount()`, `make_set()`) to each group. For detecting brute-force attacks, you would typically combine `summarize` with a time window using the `bin()` function on `TimeGenerated` (e.g., `bin(TimeGenerated, 5m)`) to ensure the count resets every 5 minutes, preventing cumulative counts from skewing detection. A real-world nuance is that failed sign-ins may include non-interactive or service principal attempts, so filtering `AppDisplayName` or `ClientAppUsed` might be necessary to avoid false positives from automated processes.

KKey Concepts to Remember

  • summarize groups rows based on specified columns.
  • summarize is used with aggregation functions like count(), sum(), avg(), min(), max().
  • summarize is essential for detecting thresholds in security analytics.
  • summarize can be combined with `bin()` for time-based aggregation.

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

summarize groups rows based on specified columns.

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. summarize groups rows based on specified columns. 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 summarize groups rows based on specified columns., 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 — summarize groups rows based on specified columns..

What is the correct answer to this question?

The correct answer is: summarize — The `summarize` operator is the correct choice because it aggregates data into groups based on specified criteria, such as counting the number of failed sign-ins per user and IP address within a time window. In this scenario, you need to count events where `ResultType` indicates failure (e.g., 50053 or 50057), grouped by `UserPrincipalName` and `IPAddress`, and then filter for counts exceeding 10. The `summarize` operator with `count()` directly provides this aggregation, enabling the rule to trigger an incident when the threshold is met.

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

Review summarize groups rows based on specified columns., then practise related SC-200 questions on the same topic to reinforce the concept.

What is the key concept behind this question?

summarize groups rows based on specified columns.

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

Last reviewed: Jun 30, 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.