Courseiva
Back to Microsoft Security Operations Analyst SC-200 questions

Scenario-based practice

Refer to the Exhibit Practice Questions

Practise Microsoft Security Operations Analyst SC-200 practice questions — original exam-style scenarios covering every exam domain, with detailed explanations, wrong-answer analysis, and common exam traps.

5
scenario questions
SC-200
exam code
Microsoft
vendor

Scenario guide

How to approach refer to the exhibit practice questions

Practise exhibit-style questions that ask you to read a topology, table, command output or diagram before choosing the best answer.

Quick answer

Exhibit-style questions test whether you can read a topology, command output, diagram or table before choosing the best answer.

How to extract the relevant detail from an exhibit.

How topology, command output or routing information affects the answer.

How to avoid answering from memory before reading the evidence.

How to map the exhibit back to the exam objective.

Related practice questions

Related SC-200 topic practice pages

Scenario questions usually connect to one or more exam topics. Use these links to review the underlying concepts behind the scenario.

Practice set

Practice scenarios

Question 1easymultiple choice
Full question →

Refer to the exhibit. You are reviewing an alert in Microsoft Defender for Endpoint. The alert details are shown. Which of the following actions should you take first?

Exhibit

Refer to the exhibit.
```
DeviceName: DESKTOP-ABC123
AlertTime: 2025-03-01T14:32:00Z
AlertTitle: Malware detected
Severity: High
Status: Active
```
Question 2hardmultiple choice
Full question →

Refer to the exhibit. You are analyzing a KQL query for a Microsoft Sentinel scheduled rule. The query is intended to detect devices that have both a high number of process executions and network connections to a single IP within an hour. However, the query returns no results even though there are devices meeting the criteria. What is the most likely cause?

Exhibit

Refer to the exhibit.

```kusto
// KQL query in Microsoft Sentinel
let threshold = 10;
DeviceProcessEvents
| where Timestamp > ago(1h)
| summarize ProcessCount = count() by DeviceName, InitiatingProcessFileName
| where ProcessCount > threshold
| join kind=inner (DeviceNetworkEvents
| where Timestamp > ago(1h)
| summarize NetworkCount = count() by DeviceName, RemoteIP
| where NetworkCount > threshold
) on DeviceName
| project DeviceName, InitiatingProcessFileName, RemoteIP, ProcessCount, NetworkCount
```
Question 3mediummultiple choice
Full question →

Refer to the exhibit. You have created a scheduled analytics rule in Microsoft Sentinel as shown. The rule is not generating any incidents, even though you know Copilot for Microsoft 365 is accessing sensitive files. What is the most likely cause?

Exhibit

Refer to the exhibit.

```json
{
  "properties": {
    "displayName": "Sensitive Data Access Alert",
    "severity": "Medium",
    "query": "OfficeActivity | where Operation == 'FileAccessed' and UserAgent contains 'Microsoft.Copilot' | project TimeGenerated, UserId, FileName",
    "queryFrequency": "PT1H",
    "queryPeriod": "PT1H",
    "triggerOperator": "GreaterThan",
    "triggerThreshold": 5
  }
}
```
Question 4hardmultiple choice
Full question →

You are a security analyst for a company that uses Azure Firewall. You are reviewing a custom rule deployed via Azure Firewall Manager. The exhibit shows the rule configuration. The rule is intended to block inbound traffic from known Tor exit nodes. However, a recent incident involved an attacker using a Tor exit node with IP 138.197.5.5 to access an internal web server on port 8080. The log shows the traffic was ALLOWED. What is the most likely reason the rule did not block the traffic?

Exhibit

Refer to the exhibit.

```json
{
  "properties": {
    "displayName": "Block Tor IPs",
    "description": "Blocks traffic from known Tor exit nodes.",
    "ruleType": "Prevention",
    "action": "Block",
    "priority": 100,
    "sourceAddress": ["138.197.0.0/16", "104.131.0.0/16"],
    "destinationAddress": ["*"],
    "sourcePorts": ["*"],
    "destinationPorts": ["443", "80"],
    "protocol": "TCP",
    "direction": "Inbound"
  }
}
```
Question 5easymultiple choice
Full question →

Refer to the exhibit. An admin creates this activity policy in Microsoft Defender for Cloud Apps. What will happen when a user fails to log in from 3 different IP addresses within 10 minutes?

Exhibit

Refer to the exhibit.
```json
// Microsoft Defender for Cloud Apps policy snippet
{
  "policyType": "Activity policy",
  "severity": "High",
  "description": "Detect multiple failed logins from different IPs",
  "filters": {
    "activity": "Failed login",
    "ip": {
      "differentCount": 3,
      "timeWindow": 10
    }
  },
  "actions": [
    {
      "type": "Block",
      "target": "User"
    }
  ]
}
```

These SC-200 practice questions are part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style SC-200 questions with detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics.