Question 1,198 of 1,639
Manage a security operations environmenthardMultiple ChoiceObjective-mapped

Quick Answer

The correct answer is that the query may miss unhealthy agents not detected due to lookback period misconfiguration, specifically when the lookback window equals the run frequency. This creates a gap because the rule only examines the last 5 minutes of data, so if an agent’s heartbeat interval is longer than 5 minutes—say 10 minutes—the last heartbeat could fall outside the lookback window, and the rule will never see the missing signal. On the SC-200 exam, this scenario tests your understanding of scheduled analytics rules in Microsoft Sentinel, where the lookback period must be longer than the run frequency to avoid blind spots. A common trap is assuming equal values are safe, but they actually create a race condition where the rule and heartbeat cycle can desynchronize. Remember the memory tip: “Lookback must outrun the run—if they match, you’ll miss the catch.”

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

let HeartbeatThreshold = 5m;
Heartbeat
| summarize LastHeartbeat = max(TimeGenerated) by Computer
| where LastHeartbeat < ago(HeartbeatThreshold)
| project Computer, LastHeartbeat, Status = 'Unhealthy'

Refer to the exhibit. A KQL query is used in a Microsoft Sentinel scheduled analytics rule to detect unhealthy agents. The rule runs every 5 minutes and has a lookback period of 5 minutes. What is the potential issue?

Question 1hardmultiple choice
Full question →

Exhibit

let HeartbeatThreshold = 5m;
Heartbeat
| summarize LastHeartbeat = max(TimeGenerated) by Computer
| where LastHeartbeat < ago(HeartbeatThreshold)
| project Computer, LastHeartbeat, Status = 'Unhealthy'

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

The query may miss agents with no heartbeat in the last 5 minutes due to the lookback period matching the run frequency.

Option C is correct because the rule runs every 5 minutes with a 5-minute lookback, creating a gap: if an agent sends a heartbeat at 0:01 and the rule runs at 0:05, the heartbeat falls within the lookback window. However, if the agent misses a heartbeat cycle (e.g., heartbeat interval is 10 minutes), the rule may not detect the absence because the lookback window only covers the last 5 minutes, and the last heartbeat might be older than 5 minutes. This means agents with no heartbeat in the last 5 minutes could be missed, especially if the heartbeat interval is longer than the lookback period.

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 query will return all computers as unhealthy because the threshold is too high.

    Why it's wrong here

    The threshold is 5 minutes, not too high.

  • The query will not return any results because Heartbeat data is not in the workspace.

    Why it's wrong here

    Heartbeat data is typically available.

  • The query may miss agents with no heartbeat in the last 5 minutes due to the lookback period matching the run frequency.

    Why this is correct

    The lookback period is too short, causing gaps.

    Related concept

    Read the scenario before looking for a memorised answer.

  • The query will cause a runtime error because ago() is misused.

    Why it's wrong here

    ago() is used correctly.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates assume matching the lookback to the run frequency ensures complete coverage, but they overlook that the data source (Heartbeat) may have a longer generation interval, causing missed detections.

Detailed technical explanation

How to think about this question

The Heartbeat table is populated by the Log Analytics agent (or Azure Monitor Agent) every 10 minutes by default (configurable). In a scheduled analytics rule with a 5-minute run frequency and 5-minute lookback, the rule evaluates only the last 5 minutes of data. If an agent's last heartbeat was 6 minutes ago, it will not appear in the query results, causing the rule to incorrectly consider the agent as healthy (since no heartbeat is returned) or fail to detect the unhealthy state. This is a classic 'blind spot' issue where the lookback period is too short relative to the data generation interval.

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.

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

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

An e-commerce site experiences heavy traffic on Black Friday and near-zero traffic during off-peak weeks. Rather than provisioning permanent large VMs, the team uses auto-scaling groups that add capacity automatically under load and reduce it overnight. Questions like this test whether you understand elasticity, availability zones, and cloud compute scaling patterns.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

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?

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 may miss agents with no heartbeat in the last 5 minutes due to the lookback period matching the run frequency. — Option C is correct because the rule runs every 5 minutes with a 5-minute lookback, creating a gap: if an agent sends a heartbeat at 0:01 and the rule runs at 0:05, the heartbeat falls within the lookback window. However, if the agent misses a heartbeat cycle (e.g., heartbeat interval is 10 minutes), the rule may not detect the absence because the lookback window only covers the last 5 minutes, and the last heartbeat might be older than 5 minutes. This means agents with no heartbeat in the last 5 minutes could be missed, especially if the heartbeat interval is longer than the lookback period.

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

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

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 →

How Courseiva writes practice questions · Editorial policy

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