Microsoft

SC-200 Free Practice Questions — Page 15

Question 146

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 Portable Executable (PE) files, including .exe and .dll files. A .ps1 PowerShell script is not a PE file and cannot be submitted for deep analysis. Therefore, File2.exe and File3.dll are supported, while File1.ps1 is not.

Question 147

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 147
Show Answer
Correct Answer: $events = 'Security!*[System[(EventID=4624 or EventID=4625)]]' Get-WinEvent -LogName 'Security' -FilterXPath $events
Explanation:
Azure Monitor Agent Windows event filters use XPath syntax. To validate the same filter in PowerShell, pass the XPath expression to Get-WinEvent with the -FilterXPath parameter.

Question 148

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 148
Show Answer
Correct Answer: MicrosoftGraphActivityLogs (parse_url(RequestUri).Path)
Explanation:
The query joins on UserId == AADRiskyUsers.Id and later uses RequestUri, RequestMethod, RequestId, and ResponseStatusCode, which match the MicrosoftGraphActivityLogs schema. The resource path is extracted from the Graph request URL using parse_url(RequestUri).Path.

Question 149

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:
Yes. Excel's Get & Transform infers JSON properties from the first portion of the data (notably the first 1,000 rows when expanding AuditData). Filtering the dataset before parsing can bring the desired records into the sampled set, allowing Excel to generate columns for those JSON properties.

Question 150

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 Defender, you modify the search criteria of the audit search to reduce the number of returned records, and then you export the results. From Excel, you perform the Get & Transform Data operations by using the new export. Does this meet the requirement?

A. Yes
B. No
Show Answer
Correct Answer: A
Explanation:
Yes. Excel's Power Query infers JSON properties from a limited sample (notably the first 1,000 rows when expanding the AuditData JSON). If relevant properties only appear later in a large export, the corresponding columns are not generated. Narrowing the audit search so fewer records are returned increases the likelihood that the needed JSON properties are present within the sampled rows, allowing Excel to generate those columns.

Question 151

You have an Azure subscription that contains a user named User1 and a Microsoft Sentinel workspace named WS1. WS1 uses Microsoft Defender for Cloud. You have the Microsoft security analytics rules shown in the following table. User1 performs an action that matches Rule1, Rule2, Rule3, and Rule4. How many incidents will be created in WS1?

A. 1
B. 2
C. 3
D. 4
Show Answer
Correct Answer: D
Explanation:
In Microsoft Sentinel, each analytics rule creates its own incident by default unless incident grouping is explicitly configured for that rule. The prompt does not state that incident grouping is configured. Therefore, if User1 matches Rule1, Rule2, Rule3, and Rule4, four incidents are created—one per analytics rule.

Question 152

HOTSPOT - You have a Microsoft 365 subscription that uses Microsoft Defender XDR and contains a Windows device named Device1. You investigate a suspicious process named Prod on Device1 by using a live response session. You need to perform the following actions: • Stop Prod. • Send Prod for further review. 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 152
Show Answer
Correct Answer: Stop Proc1: remediate Send Proc1 for further review: getfile
Explanation:
The live response 'remediate' command can terminate/quarantine malicious artifacts, including stopping a process. To send the associated executable off the device for offline investigation, use 'getfile' to retrieve the file.

Question 153

HOTSPOT - You have a Microsoft 365 subscription that uses Microsoft Defender for Endpoint Plan 2 and contains a Windows device named Device1. You initiated a live response session on Device1. You need to run a command that will download a 250-MB file named File1.exe from the live response library to Device1. The solution must ensure that File1.exe is downloaded as a background process. How should you complete the live response command? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Illustration for SC-200 question 153
Show Answer
Correct Answer: putfile &
Explanation:
Use `putfile` to copy a file from the live response library to the device. Append `&` to run the transfer as a background process.

Question 154

HOTSPOT - You have a Microsoft 365 E5 subscription that uses Microsoft Defender for Endpoint and contains a Windows device named Device1. You need to investigate a suspicious executable file detected on Device1. The solution must meet the following requirements: • Identify the image file path of the file. • Identify when the file was first detected on Device1. What should you review from the timeline of the detection event? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Illustration for SC-200 question 154
Show Answer
Correct Answer: Image file path: Entities First detected on Device1: Action type
Explanation:
The Entities pane contains details about the file, including its path. In the device timeline, the Action type entries are timestamped, allowing you to identify the earliest detection event for the file.

Question 155

You have a Microsoft 365 subscription that uses Microsoft Defender XDR. You are investigating an attacker that is known to use the Microsoft Graph API as an attack vector. The attacker performs the tactics shown the following table. You need to search for malicious activities in your organization. Which tactics can you analyze by using the MicrosoftGraphActivityLogs table?

A. Tactic2 only
B. Tactic1 and Tactic2 only
C. Tactic2 and Tactic3 only
D. Tactic1, Tactic2, and Tactic3
Show Answer
Correct Answer: D
Explanation:
The MicrosoftGraphActivityLogs advanced hunting table is designed to analyze Microsoft Graph API activity, including requests made through Microsoft Graph that can reveal reconnaissance, permission changes, and data access performed via the API. Therefore, all three listed attacker tactics that use Microsoft Graph API can be investigated using this table.

$19

Get all 383 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.