You have a Microsoft 365 E5 subscription that contains two users named User1 and User2 and uses Microsoft Copilot for Security.
From the Copilot for Security portal, User1 starts a session and creates the following prompts:
• Prompt1: Provides access to the Entra plugin
• Prompt2: Provides access to the Intune plugin
• Prompt3: Provides access to the Entra plugin
User1 shares the session with User2.
User2 does NOT have access to Microsoft Intune.
For which prompts can User2 view results during the shared session?
A. Prompt1 only
B. Prompt1 and Prompt2 only
C. Prompt3 only
D. Prompt1 and Prompt3 only
E. Prompt1, Prompt2, and Prompt3
Show Answer
Correct Answer: E
Explanation: In current Microsoft Copilot for Security shared sessions, the recipient gets a read-only view of the shared conversation and can view the responses that were already generated, even if they do not have direct access to the underlying plugin's service. Therefore User2 can view the results of Prompt1, Prompt2, and Prompt3 in the shared session.
Question 87
HOTSPOT
-
You have a Microsoft 365 E5 subscription that uses Microsoft Defender XDR.
You have a Microsoft Sentinel workspace.
Microsoft Sentinel connectors are configured as shown in the following table.
You use Microsoft Sentinel to investigate suspicious Microsoft Graph API activity related to Conditional Access policies.
You need to search for the following activities:
• Downloads of the Conditional Access policies by using PowerShell
• Updates to the Conditional Access policies by using the Microsoft Entra admin center
Which tables should you query for each activity? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Explanation: PowerShell access to Conditional Access policies via Microsoft Graph is recorded in MicrosoftGraphActivityLogs. Updating Conditional Access policies through the Entra admin center generates Entra AuditLogs, and because the investigation is for Microsoft Graph API activity, Graph activity logs are also relevant for updates.
Question 88
You have a Microsoft 365 E5 subscription and a Microsoft Sentinel workspace.
You need to create a KQL query that will combine data from the following sources:
• Microsoft Graph
• Risky users detected by using Microsoft Entra ID Protection
The solution must minimize the volume of data returned.
How should the query start?
A.
B.
C.
D.
Show Answer
Correct Answer: B
Explanation: To minimize the volume of data returned, start from the Microsoft Graph activity table and use the default innerunique join with the AADRiskyUsers table. An inner join returns only matching records (Graph activity for users who are currently risky), whereas a leftouter/lookup would retain all Graph activity rows and therefore return more data. The requirement is for risky users, not risk events, so AADRiskyUsers is the appropriate table.
Question 89
You have a Microsoft 365 E5 subscription.
You have a PowerShell script that queries the unified audit log.
You discover that the query returns only the first page of results due to server-side paging.
You need to ensure that you get all the results.
Which property should you query in the results?
A. @odata.context
B. @odata.count
C. @odata.nextLink
D. @odata.deltaLink
Show Answer
Correct Answer: C
Explanation: Server-side paging returns a subset of results along with an @odata.nextLink URL when additional pages are available. Following the @odata.nextLink until it is no longer present retrieves the complete result set. @odata.count provides a total count (when supported), @odata.context is metadata, and @odata.deltaLink is used for delta queries, not standard paging.
Question 90
HOTSPOT
-
You have a Microsoft 365 E5 subscription that uses Microsoft Defender for Office 365.
You need to build a hunting query that will list events involving potentially malicious emails that were detected but NOT removed successfully from mailboxes after delivery. The solution must ensure that the events are correlated with the sign-in events of the email recipients.
How should you complete the query? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Show Answer
Correct Answer: ZAP
AccountUpn
Explanation: Use EmailPostDeliveryEvents with ActionType containing ZAP and ActionResult == "Error" to find post-delivery remediation attempts that failed. Correlate recipients to IdentityLogonEvents by matching RecipientEmailAddress with AccountUpn.
Question 91
You have a Microsoft 365 E5 subscription that contains two groups named Group1 and Group2 and uses Microsoft Copilot for Security.
You need to configure Copilot for Security role assignments to meet the following requirements:
• Ensure that members of Group1 can run prompts and respond to Microsoft Defender XDR security incidents.
• Ensure that members of Group2 can run prompts.
• Follow the principle of least privilege.
You remove Everyone from the Copilot Contributor role.
Which two actions should you perform next? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
A. Assign the Security Operator role to Group1.
B. Assign the Copilot Owner role to Group2.
C. Assign the Copilot Owner role to Group1
D. Assign the Security Operator role to Group2.
E. Assign the Copilot Contributor role to Group2.
Show Answer
Correct Answer: A, E
Explanation: Group1 must be able to respond to Microsoft Defender XDR incidents, which requires the Security Operator role. Running Copilot prompts requires the Copilot Contributor role. Since Everyone was removed from Copilot Contributor, Group2 must be explicitly assigned Copilot Contributor to run prompts. Assigning Copilot Owner grants unnecessary administrative permissions and violates least privilege. The intended solution is Security Operator for Group1 and Copilot Contributor for Group2.
Question 92
You have a Microsoft 365 E5 subscription that uses Microsoft Copilot for Security. Copilot for Security has the default settings configured.
You need to ensure that a user named User can use Copilot for Security to perform the following tasks:
• Upload files.
• View the usage dashboard.
• Share promptbooks with all users.
The solution must follow the principle of least privilege
Which role should you assign to User?
A. Copilot owner
B. Cloud Application Administrator
C. Security Administrator
D. Copilot Contributor
Show Answer
Correct Answer: A
Explanation: The required permissions are: upload files, view the usage dashboard, and share promptbooks with all users. Copilot Contributor can upload files and share promptbooks, but with the default settings cannot view the usage dashboard. Copilot Owner includes all three capabilities. Cloud Application Administrator and Security Administrator are Microsoft Entra/Azure roles and do not grant these Copilot for Security application-specific permissions. Therefore, the least-privileged role that satisfies all requirements is Copilot Owner.
Question 93
HOTSPOT
-
You have a Microsoft 365 E5 subscription that uses Microsoft Exchange Online.
You identify the suspicious emails shown in the following table.
In Microsoft Purview, you create the content searches shown in the following table.
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
Show Answer
Correct Answer: Yes
No
Yes
Explanation: Search1 matches .docx attachments from sender [email protected]. Search2 excludes messages with subject containing benefits, so Email2 is excluded. Search3 matches subject containing 'won' and sender [email protected]; KQL is case-insensitive.
Question 94
HOTSPOT
-
You have a Microsoft 365 subscription that contains a Windows device named Device1. Device1 is onboarded to Microsoft Defender for Endpoint.
You initiate a live response session on Device1.
You need to execute a long running script. The solution must ensure that you can run additional commands during the session while the script is running.
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.
Show Answer
Correct Answer: run
&
Explanation: Use the `run` live response command to execute a script. Appending `&` runs it asynchronously in the background so you can continue issuing additional commands during the same live response session.
Question 95
You have a Microsoft 365 E5 subscription that uses Microsoft Defender XDR.
You are investigating an incident.
You need to review the incident tasks that were performed.
What can you use on the Incident page?
A. Tasks only
B. Tasks and Activity log only
C. Tasks and Alert timeline only
D. Tasks, Activity log, and Alert timeline
Show Answer
Correct Answer: D
Explanation: On the Microsoft Defender XDR Incident page, you can review investigation Tasks, the Activity log (actions and changes made during the incident), and the Alert timeline (chronological alert context). Together these provide the history of work performed and incident progression.
$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.