SC-200 Manage a security operations environment Practice Question
This SC-200 practice question tests your understanding of manage a security operations environment. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. 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.
Exhibit
Refer to the exhibit.
```kusto
let TimeWindow = 1h;
let Threshold = 10;
SigninLogs
| where TimeGenerated >= ago(TimeWindow)
| where ResultType == "50057"
| summarize FailedAttempts = count() by UserPrincipalName, IPAddress
| where FailedAttempts > Threshold
| join kind=inner (
SigninLogs
| where TimeGenerated >= ago(TimeWindow)
| where ResultType == "0"
| summarize SuccessfulSignIns = count() by UserPrincipalName, IPAddress
) on UserPrincipalName, IPAddress
| project UserPrincipalName, IPAddress, FailedAttempts, SuccessfulSignIns
```
The exhibit shows a KQL query used in a Microsoft Sentinel analytics rule. The rule is intended to detect brute-force attacks by identifying IP addresses that have more than 10 failed sign-ins (result code 50057) followed by a successful sign-in (result code 0) within an hour. However, the rule is not triggering alerts even though you are confident such patterns exist. What is the most likely issue?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue: "most likely"
Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
Exhibit
Refer to the exhibit.
```kusto
let TimeWindow = 1h;
let Threshold = 10;
SigninLogs
| where TimeGenerated >= ago(TimeWindow)
| where ResultType == "50057"
| summarize FailedAttempts = count() by UserPrincipalName, IPAddress
| where FailedAttempts > Threshold
| join kind=inner (
SigninLogs
| where TimeGenerated >= ago(TimeWindow)
| where ResultType == "0"
| summarize SuccessfulSignIns = count() by UserPrincipalName, IPAddress
) on UserPrincipalName, IPAddress
| project UserPrincipalName, IPAddress, FailedAttempts, SuccessfulSignIns
```
A
The threshold is too high.
Why wrong: 10 failed attempts is a common threshold.
B
The time window is too short to capture the pattern.
Why wrong: 1 hour is reasonable for a brute-force attack.
C
The query does not ensure the successful sign-in occurred after the failed attempts.
Without temporal ordering, the successful sign-in could have occurred before the failed attempts, which would not indicate a successful brute-force.
D
The query does not consider the same IP address across different users.
Why wrong: The join includes IPAddress, so it does consider same IP.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The query does not ensure the successful sign-in occurred after the failed attempts.
The query likely uses a join that pairs failed sign-ins with successful sign-ins based on the same IP address but does not enforce that the successful sign-in occurred after the failed attempts. This means it could pair a successful sign-in that happened before the failed ones, which would not constitute a brute-force attack. The rule is designed to detect a pattern of many failures followed by a success within an hour; without a temporal condition ensuring the success comes after the failures, the rule may not trigger correctly. Option C correctly identifies this issue. Option A (threshold too high) is incorrect because the threshold of 10 is set and presumably appropriate. Option B (time window too short) is incorrect because the time window is one hour, which is reasonable. Option D (not considering same IP across different users) is less likely because the join likely uses IP address, which is already considering the same IP across users.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✗
The threshold is too high.
Why it's wrong here
10 failed attempts is a common threshold.
✗
The time window is too short to capture the pattern.
Why it's wrong here
1 hour is reasonable for a brute-force attack.
✓
The query does not ensure the successful sign-in occurred after the failed attempts.
Why this is correct
Without temporal ordering, the successful sign-in could have occurred before the failed attempts, which would not indicate a successful brute-force.
Clue confirmation
The clue word "most likely" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
✗
The query does not consider the same IP address across different users.
Why it's wrong here
The join includes IPAddress, so it does consider same IP.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Many certification questions include familiar terms but test a specific constraint. Read the exact wording before choosing an answer that is generally true but wrong for this case.
Detailed technical explanation
How to think about this question
This question should be treated as a scenario, not a definition check. Identify the problem, the constraint and the best action. Then compare each option against those facts.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
Use explanations to understand the rule behind the answer.
TExam Day Tips
→Underline the problem statement mentally.
→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
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
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. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.
Related glossary terms
Concepts from this question explained
These glossary pages explain the core terms tested in this SC-200 question in full detail.
Identify which SC-200 exam domain this question belongs to, then review the specific concept being tested. Practise related questions in that domain and focus on understanding why each wrong answer is tempting — not just why the correct answer is right.
Manage a security operations environment — This question tests Manage a security operations environment — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: The query does not ensure the successful sign-in occurred after the failed attempts. — The query likely uses a join that pairs failed sign-ins with successful sign-ins based on the same IP address but does not enforce that the successful sign-in occurred after the failed attempts. This means it could pair a successful sign-in that happened before the failed ones, which would not constitute a brute-force attack. The rule is designed to detect a pattern of many failures followed by a success within an hour; without a temporal condition ensuring the success comes after the failures, the rule may not trigger correctly. Option C correctly identifies this issue. Option A (threshold too high) is incorrect because the threshold of 10 is set and presumably appropriate. Option B (time window too short) is incorrect because the time window is one hour, which is reasonable. Option D (not considering same IP across different users) is less likely because the join likely uses IP address, which is already considering the same IP across users.
What should I do if I get this SC-200 question wrong?
Identify which SC-200 exam domain this question belongs to, then review the specific concept being tested. Practise related questions in that domain and focus on understanding why each wrong answer is tempting — not just why the correct answer is right.
Are there clue words in this question I should notice?
Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
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 →
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.
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.
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.
Sign in to join the discussion.