Microsoft

SC-200 Free Practice Questions — Page 13

Question 120

You have a Microsoft Sentinel workspace named SW1. You need to identify which anomaly rules are enabled in SW1. What should you review in Microsoft Sentinel?

A. Content hub
B. Entity behavior
C. Analytics
D. Settings
Show Answer
Correct Answer: C
Explanation:
In Microsoft Sentinel, anomaly rules are managed and viewed within the Analytics section. The Analytics page includes an Anomalies tab that displays anomaly rules in a grid, allowing you to see which anomaly rules are enabled in the workspace.

Question 121

You have an Azure subscription named Sub1 that uses Microsoft Defender for Cloud. You need to assign the PCI DSS 4.0 initiative to Sub1 and have the initiative displayed in the Defender for Cloud Regulatory compliance dashboard. From Security policies in the Environment settings, you discover that the option to add more industry and regulatory standards is unavailable. What should you do first?

A. Configure the Continuous export settings for Log Analytics.
B. Enable the Cloud Security Posture Management (CSPM) plan for the subscription.
C. Configure the Continuous export settings for Azure Event Hubs.
D. Disable the Microsoft Cloud Security Benchmark (MCSB) assignment.
Show Answer
Correct Answer: B
Explanation:
The Regulatory compliance dashboard and the ability to add industry and regulatory standards (such as PCI DSS 4.0) are part of Microsoft Defender for Cloud’s Cloud Security Posture Management (CSPM) plan. If CSPM is not enabled for the subscription, the option to add standards is unavailable. Enabling the CSPM plan first unlocks regulatory compliance initiatives and allows the PCI DSS 4.0 initiative to be assigned and displayed.

Question 122

You have a Microsoft 365 subscription that uses Microsoft Defender for Endpoint and contains a user named User1 and a Microsoft 365 group named Group1. All users are assigned a Defender for Endpoint Plan 1 license. You enable Microsoft Defender XDR Unified role-based access control (RBAC) for Endpoints & Vulnerability Management. You need to ensure that User1 can configure alerts that will send email notifications to Group1. The solution must follow the principle of least privilege. Which permissions should you assign to User1?

A. Defender Vulnerability Management - Remediation handling
B. Alerts investigation
C. Live response capabilities: Basic
D. Manage security settings
Show Answer
Correct Answer: D
Explanation:
Configuring alert email notifications in Microsoft Defender XDR requires the **Manage security settings** permission. Microsoft documentation explicitly states that only users with this permission can configure email notifications. Other roles, such as Alerts investigation, allow managing or investigating alerts but do not permit configuring notification settings. Therefore, assigning Manage security settings satisfies the requirement while following the principle of least privilege.

Question 123

HOTSPOT - You have a Microsoft 365 E5 subscription that uses Microsoft Defender XDR and contains two users named User1 and User2. You need to ensure that the users can perform searches by using the Microsoft Purview portal. The solution must meet the following requirements: • Ensure that User1 can search the Microsoft Purview Audit service logs and review the Microsoft Purview Audit service configuration. • Ensure that User2 can search Microsoft Exchange Online mailboxes. • Follow the principle of least privilege. To which Microsoft Purview role group should you add each user? To answer, select the appropriate options in the answer area NOTE: Each correct selection is worth one point.

Illustration for SC-200 question 123
Show Answer
Correct Answer: User1: Audit Reader User2: Data Investigator
Explanation:
Audit Reader provides least-privilege access to search Microsoft Purview Audit logs and view audit configuration. Data Investigator allows searching Microsoft 365 data, including Exchange Online mailboxes, without broader compliance admin rights.

Question 124

HOTSPOT - You have the resources shown in the following table. You have an Azure subscription that uses Microsoft Defender for Cloud. You need to use Defender for Cloud to protect VM1 and Server1. The solution must meet the following requirements: • Support Advanced Threat Protection and vulnerability assessment. • Register each SQL Server 2022 instance as a SQL virtual machine. • Minimize implementation and administrative effort. What should you deploy to each server? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Illustration for SC-200 question 124 Illustration for SC-200 question 124
Show Answer
Correct Answer: VM1: The Azure Monitor Agent and an Azure virtual machine extension Server1: The Azure Monitor Agent and an Azure virtual machine extension
Explanation:
Microsoft Defender for Cloud requires the Azure Monitor Agent (AMA) for Advanced Threat Protection and vulnerability assessment on both Azure VMs and Azure Arc–enabled servers. AMA replaces the legacy Log Analytics agent and works for Azure and on‑premises servers. The additional VM extension registers SQL Server 2022 as a SQL virtual machine, meeting the requirement with minimal implementation and administrative effort.

Question 125

HOTSPOT - You have a Microsoft 365 subscription that uses Microsoft Defender for Endpoint Plan 2 and contains a Windows device named Device1. You initiate a live response session on Device1 and launch an executable file named File1.exe in the background. You need to perform the following actions: • Identify the command ID of File1.exe. • Interact with File1.exe. Which live response command should you run for each action? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Illustration for SC-200 question 125
Show Answer
Correct Answer: Identify the command ID of File1.exe: jobs Interact with File1.exe: fg
Explanation:
In live response, background executions are tracked as jobs. The jobs command lists running jobs and their command IDs. To interact with a background job, fg brings the specified command ID to the foreground.

Question 126

You have a Microsoft 365 subscription that uses Microsoft Defender XDR and contains a Windows device named Device1. The timeline of Device1 includes three files named File1.ps1, File2.exe, and File3.dll. You need to submit files for deep analysis in Microsoft Defender XDR. Which files can you submit?

A. File1.ps1 only
B. File2.exe only
C. File3.dll only
D. File2.exe and File3.dll only
E. File1.ps1 and File2.exe only
F. File1.ps1, File2.exe, and File3.dll
Show Answer
Correct Answer: D
Explanation:
Microsoft Defender XDR deep analysis supports only Portable Executable (PE) files. PE files include compiled binaries such as .exe and .dll (and also .sys). PowerShell scripts (.ps1) are text-based scripts, not PE files, and are not supported for deep analysis. Therefore, only File2.exe and File3.dll can be submitted.

Question 127

HOTSPOT - You have on-premises servers that run Windows Server. You have a Microsoft Sentinel workspace named SW1. SW1 is configured to collect Windows Security log entries from the servers by using the Azure Monitor Agent data connector. You plan to limit the scope of collected events to events 4624 and 4625 only. You need to use a PowerShell script to validate the syntax of the filter applied to the connector. How should you complete the script? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Illustration for SC-200 question 127
Show Answer
Correct Answer: Security!*[System[(EventID=4624 or EventID=4625)]] -FilterXPath
Explanation:
Azure Monitor Agent event filtering uses XPath syntax. To validate the same filter locally, the XPath query must be assigned as a string and tested with Get-WinEvent using the -FilterXPath parameter, which directly accepts XPath expressions.

Question 128

HOTSPOT - You have an Azure subscription that contains a Log Analytics workspace named Workspace1. You configure Azure activity logs and Microsoft Entra ID logs to be forwarded to Workspace1. You need to identify which Azure resources have been queried or modified by risky users. How should you complete the KQL query? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Illustration for SC-200 question 128
Show Answer
Correct Answer: MicrosoftGraphActivityLogs parse_url(RequestUri).Path
Explanation:
The KQL joins on UserId with AADRiskyUsers.Id and uses fields like RequestUri, RequestMethod, RequestId, and ResponseStatusCode, which are present in MicrosoftGraphActivityLogs. AzureActivity does not expose these columns. To extract the accessed or modified resource from Microsoft Graph requests, the resource path must be derived from the request URL, which is done using parse_url(RequestUri).Path.

Question 129

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. You have an Azure subscription that uses Microsoft Defender XDR. From the Microsoft Defender portal, you perform an audit search and export the results as a file named File1.csv that contains 10,000 rows. You use Microsoft Excel to perform Get & Transform Data operations to parse the AuditData column from File1.csv. The operations fail to generate columns for specific JSON properties. You need to ensure that Excel generates columns for the specific JSON properties in the audit search results. Solution: From Excel, you apply filters to the existing columns in File1.csv to reduce the number of rows, and then you perform the Get & Transform Data operations to parse the AuditData column. Does this meet the requirement?

A. Yes
B. No
Show Answer
Correct Answer: A
Explanation:
Excel’s Get & Transform only infers JSON properties from a limited initial set of rows (typically the first 1,000). If required properties appear later, columns won’t be generated. Filtering the CSV to reduce the number of rows before parsing the AuditData column ensures the relevant JSON properties are included in the sampled rows, allowing Excel to generate the needed columns.

$19

Get all 370 questions with detailed answers and explanations

  • Instant download HTML + PDF delivered the moment payment clears.
  • Secure Stripe checkout we never see or store your card details.
  • 7-day refund if files are defective see our refund policy.