Courseiva

CCNA Describe the capabilities of Microsoft security solutions Questions

38 of 413 questions · Page 6/6 · Describe the capabilities of Microsoft security solutions · Answers revealed

376
MCQmedium

Refer to the exhibit. You run the Azure PowerShell command for a storage account. What is the current network access configuration?

A.The storage account is accessible only from specific virtual networks.
B.The storage account is accessible from all networks.
C.The storage account is not accessible from any network.
D.The storage account is accessible only from specific IP addresses.
AnswerC

With the DefaultAction set to Deny and both the IpRules and VirtualNetworkRules arrays being empty, there are no explicit rules configured to override the default denial. This combination ensures that all incoming network traffic, regardless of its origin (public internet or Azure virtual networks), is blocked. Therefore, the storage account is effectively inaccessible from any network.

Why this answer

The Azure PowerShell command `Update-AzStorageAccountNetworkRuleSet -ResourceGroupName 'RG1' -StorageAccountName 'stgacc1' -DefaultAction Deny` sets the default network access rule to Deny. When the default action is Deny, no traffic is allowed unless explicitly permitted by a network rule (e.g., from a specific virtual network or IP address). Since no such rules are shown in the exhibit, the storage account is effectively not accessible from any network.

Exam trap

Students often mistakenly think that setting `DefaultAction Deny` alone makes the storage account accessible from specific networks or IPs, but they must remember that explicit rules must also be configured for any access to be allowed.

How to eliminate wrong answers

Option A is wrong because while a default action of Deny can be overridden by virtual network rules, the exhibit does not show any virtual network rules being configured, so the storage account is not accessible from specific virtual networks. Option B is wrong because the command explicitly sets `-DefaultAction Deny`, which blocks all network traffic by default, making the storage account inaccessible from all networks. Option D is wrong because although IP rules could permit access from specific IP addresses, no IP rules are shown in the exhibit, so the storage account is not accessible from specific IP addresses.

377
MCQhard

Refer to the exhibit. You are creating a custom analytics rule in Microsoft Sentinel. What does this rule detect?

A.Sign-ins with high sign-in risk from any location
B.Sign-ins with medium or high risk from the US
C.Sign-ins from users with high user risk outside the US
D.Sign-ins with medium or high risk from outside the US
AnswerD

This option accurately describes the criteria for the custom analytics rule. The rule targets sign-in attempts that Azure AD Identity Protection has classified with either a medium or high sign-in risk level. Additionally, it specifically filters these risky sign-ins to only include those originating from locations outside the United States, indicating a focus on external or geographically unusual threats.

Why this answer

The rule is configured with 'Risk level: Medium, High' and 'Location: Outside US'. This means it triggers only when both conditions are met: the sign-in risk is medium or high, and the location is outside the US. Option D correctly matches this combination, detecting sign-ins with medium or high risk from outside the US.

Exam trap

The trap here is confusing 'User risk' with 'Sign-in risk' — the rule explicitly uses sign-in risk, and candidates often misread the risk type or overlook the location filter, leading them to choose options that mix up these conditions.

How to eliminate wrong answers

Option A is wrong because the rule includes a location filter ('Outside US'), so it does not detect sign-ins from any location. Option B is wrong because the rule specifies 'Outside US' as the location, not 'from the US'. Option C is wrong because the rule uses 'Sign-in risk' (not 'User risk') as the risk type, and the location filter is 'Outside US', not 'outside the US' for user risk.

378
MCQmedium

A company wants to gain visibility into which cloud applications are being used by employees (shadow IT) and assess the risk level of each app. They use Microsoft Defender for Cloud Apps. Which feature should they enable to discover and analyze these apps?

A.App Governance
B.Cloud Discovery
C.Conditional Access App Control
D.OAuth app policies
AnswerB

Cloud Discovery, a core feature of Microsoft Defender for Cloud Apps, analyzes traffic logs from firewalls and proxy servers to identify all cloud applications accessed by users within an organization. It provides comprehensive visibility into both sanctioned and unsanctioned cloud services, often referred to as "shadow IT." This process helps security teams assess the risk associated with each discovered application and gain a complete understanding of cloud usage patterns.

Why this answer

Cloud Discovery is the correct feature because it analyzes traffic logs against the Microsoft Defender for Cloud Apps catalog of over 31,000 cloud apps to identify shadow IT usage. It provides risk scores based on factors like security certifications, data encryption, and compliance standards, enabling the company to assess each app's risk level.

Exam trap

The trap here is that candidates confuse Cloud Discovery (which finds unknown apps via traffic analysis) with Conditional Access App Control (which controls access to known apps), leading them to pick Option C for a discovery question.

How to eliminate wrong answers

Option A is wrong because App Governance is a policy and monitoring feature for managing OAuth-enabled apps (e.g., permissions and consent), not for discovering unknown cloud apps via traffic analysis. Option C is wrong because Conditional Access App Control is a reverse-proxy feature that enforces session policies on known apps in real time, not a discovery mechanism for shadow IT. Option D is wrong because OAuth app policies are used to control permissions for third-party OAuth apps connected to Microsoft 365, not to discover or analyze cloud applications in use.

379
Multi-Selecteasy

Which TWO of the following are features of Microsoft Sentinel? (Choose two.)

Select 2 answers
A.Identity governance and administration
B.Security information and event management (SIEM)
C.Security orchestration, automation, and response (SOAR)
D.Endpoint detection and response (EDR)
E.Data classification and labeling
AnswersB, C

Microsoft Sentinel's SIEM capabilities involve collecting security data at scale from diverse sources across an organization's entire digital estate. It then uses built-in analytics, machine learning, and threat intelligence to detect, investigate, and prioritize security threats. This centralized log management and threat detection are fundamental to its role as a modern cloud-native SIEM.

Why this answer

Microsoft Sentinel is a cloud-native SIEM (Security Information and Event Management) solution that collects security data from across an organization, providing threat detection, investigation, and response. It also includes SOAR (Security Orchestration, Automation, and Response) capabilities through playbooks and automation rules, enabling automated incident response. These two features are core to Sentinel's functionality.

Exam trap

The trap here is that candidates often confuse Microsoft Sentinel's SIEM and SOAR capabilities with other Microsoft security products like Microsoft Defender for Endpoint (EDR) or Microsoft Purview (data classification), leading them to select options D or E instead of the correct SIEM and SOAR features.

380
MCQeasy

A company uses Microsoft 365 and Microsoft Azure. The security team wants a single portal that provides a unified view of alerts and incidents from their endpoints, email, and cloud applications to accelerate threat investigation and response. Which Microsoft security solution should they use?

A.Microsoft 365 Defender portal
B.Microsoft Defender for Cloud
C.Microsoft Sentinel
D.Microsoft Purview Compliance Manager
AnswerA

The Microsoft 365 Defender portal is the unified security operations center for Microsoft 365 services. It consolidates alerts, incidents, and automated investigation and response capabilities from Defender for Endpoint, Defender for Office 365, Defender for Identity, and Microsoft Defender for Cloud Apps. This centralized experience provides a comprehensive view of threats across the entire Microsoft 365 ecosystem, enabling security teams to efficiently investigate and remediate multi-stage attacks.

Why this answer

Microsoft 365 Defender portal (now part of the Microsoft 365 Defender unified security operations platform) is designed to aggregate alerts and incidents from endpoints (Microsoft Defender for Endpoint), email (Microsoft Defender for Office 365), and cloud applications (Microsoft Defender for Cloud Apps) into a single queue. This unified view enables security teams to triage and investigate threats across these domains without switching between separate consoles, directly accelerating response times.

Exam trap

The trap here is that candidates often confuse Microsoft 365 Defender portal (a unified incident view for Microsoft 365 security products) with Microsoft Sentinel (a SIEM), not realizing that Sentinel requires additional setup and is not the out-of-the-box single portal for Microsoft's own security alerts.

How to eliminate wrong answers

Option B (Microsoft Defender for Cloud) is wrong because it focuses on securing cloud infrastructure (VMs, containers, PaaS) and provides alerts for those resources, not for endpoints, email, or cloud apps in a unified incident view. Option C (Microsoft Sentinel) is wrong because it is a cloud-native SIEM/SOAR that ingests logs from many sources, but it requires custom configuration and data connectors to unify alerts; it is not a pre-built single portal for Microsoft 365-native alerts and incidents. Option D (Microsoft Purview Compliance Manager) is wrong because it is a compliance management solution for assessing and managing regulatory compliance, not a security incident and alert aggregation tool.

381
MCQmedium

A security operations team uses Microsoft Defender for Cloud and has connected their AWS and GCP accounts. They want to continuously assess the security posture of AWS EC2 instances against the CIS AWS Foundations Benchmark and receive prioritized recommendations. Which feature of Defender for Cloud should they use?

A.Cloud Security Posture Management (CSPM)
B.Microsoft Defender for Servers
C.Security Alerts
D.Workload protections
AnswerA

Cloud Security Posture Management (CSPM) is the core capability within Microsoft Defender for Cloud that continuously assesses cloud resources against security benchmarks and regulatory standards. It provides a secure score, identifies misconfigurations, and offers actionable recommendations to improve an organization's security posture across multi-cloud environments like Azure, AWS, and GCP. This proactive approach is essential for a security operations team focused on maintaining compliance and reducing attack surface.

Why this answer

Cloud Security Posture Management (CSPM) in Microsoft Defender for Cloud is specifically designed to continuously assess the security posture of multi-cloud resources (including AWS EC2 instances) against industry benchmarks like the CIS AWS Foundations Benchmark. CSPM provides a compliance dashboard, prioritized recommendations, and automated remediation guidance, directly addressing the team's need for ongoing assessment and prioritized recommendations.

Exam trap

The trap here is that candidates often confuse CSPM with workload protections (Option D) or Microsoft Defender for Servers (Option B), mistakenly thinking that threat detection or server-specific plans automatically include compliance assessment, when in fact CSPM is the dedicated feature for multi-cloud posture management and benchmark compliance.

How to eliminate wrong answers

Option B is wrong because Microsoft Defender for Servers is a workload protection plan that provides advanced threat detection, just-in-time VM access, and file integrity monitoring for servers, but it does not natively assess compliance against the CIS AWS Foundations Benchmark or provide continuous posture assessment for AWS EC2 instances. Option C is wrong because Security Alerts are generated from threat detection signals (e.g., suspicious activities or attacks) and are not designed to continuously assess security posture against a compliance benchmark like CIS AWS Foundations. Option D is wrong because Workload protections refer to the suite of threat detection and prevention capabilities (e.g., for servers, databases, containers) within Defender for Cloud, but they do not include the compliance assessment and posture scoring features that CSPM provides.

382
MCQeasy

Your company uses Microsoft Defender for Cloud Apps. You want to discover which cloud apps are being used in your organization and assess their risk levels. What should you use?

A.Cloud App Security Catalog
B.Cloud Discovery
C.Microsoft Purview Data Map
D.Microsoft Intune app inventory
AnswerB

Cloud Discovery is the precise capability within Microsoft Defender for Cloud Apps designed to identify and analyze all cloud applications accessed by users across an organization's network. It functions by ingesting and analyzing traffic logs from various sources, including firewalls, proxies, and endpoint agents, to detect accessed URLs, IP addresses, and user agents. This process effectively uncovers shadow IT, assesses the inherent risk of discovered applications, and provides comprehensive insights into their usage patterns.

Why this answer

Cloud Discovery is the feature within Microsoft Defender for Cloud Apps that analyzes traffic logs to identify which cloud apps are being used in your organization and assesses their risk based on the Cloud App Security Catalog. It provides visibility into Shadow IT by discovering unsanctioned app usage and assigning a risk score to each app.

Exam trap

The trap here is confusing the Cloud App Security Catalog (a static risk database) with Cloud Discovery (the active monitoring and log analysis feature), leading candidates to pick A when they need the tool that actually discovers in-use apps.

How to eliminate wrong answers

Option A is wrong because the Cloud App Security Catalog is a database of over 31,000 cloud apps with risk scores, but it does not discover which apps are actually being used in your organization—it only provides risk assessment for known apps. Option C is wrong because Microsoft Purview Data Map is used for data governance, classification, and lineage tracking across on-premises and cloud data sources, not for discovering cloud app usage. Option D is wrong because Microsoft Intune app inventory focuses on managing and reporting on apps deployed through mobile device management (MDM) or mobile application management (MAM), not on discovering unsanctioned cloud apps via traffic analysis.

383
MCQhard

You are investigating an alert in Microsoft Sentinel. The exhibit shows the JSON output of an alert that was generated from a sign-in log. The alert is linked to an active incident. Which action should you take to prioritize the incident for investigation?

A.Change the incident severity to critical
B.Close the incident as a false positive
C.Delete the alert from the incident
D.Reassign the incident to another analyst
AnswerA

In Microsoft Sentinel, changing an incident's severity to "Critical" directly impacts its prioritization within the security operations center (SOC) workflow. This action signals to analysts that the incident requires immediate attention and resources, often triggering specific escalation procedures or service level agreements (SLAs) to ensure rapid investigation and remediation. It effectively moves the incident to the top of the queue, ensuring it receives the necessary focus.

Why this answer

Changing the incident severity to critical in Microsoft Sentinel directly influences the prioritization and triage workflow. By elevating the severity, the incident is flagged for immediate attention, ensuring it appears at the top of the queue for investigation. This action aligns with the incident management best practice of using severity levels to indicate business impact and urgency.

Exam trap

The trap here is that candidates may confuse 'reassigning' with 'prioritizing,' but reassignment only changes the owner, not the incident's severity or position in the queue, while severity directly controls triage order in Sentinel.

How to eliminate wrong answers

Option B is wrong because closing the incident as a false positive would dismiss the alert without investigation, which is inappropriate since the alert is linked to an active incident and requires analysis. Option C is wrong because deleting the alert from the incident would remove evidence and break the linkage, potentially losing context needed for investigation; alerts are meant to be retained for forensic purposes. Option D is wrong because reassigning the incident to another analyst does not prioritize it; it merely changes ownership without affecting its urgency or visibility in the queue.

384
MCQeasy

Your company uses Microsoft Defender for Cloud to secure Azure resources. You need to assess compliance with the CIS benchmark. What should you enable?

A.Azure Policy
B.Regulatory compliance standards in Microsoft Defender for Cloud
C.Microsoft Sentinel
D.Azure Firewall
AnswerB

Microsoft Defender for Cloud's regulatory compliance dashboard is specifically designed to provide a centralized view of an organization's compliance posture against various industry standards and regulatory benchmarks, including the CIS Benchmarks. It continuously assesses Azure resources, identifies security misconfigurations, and maps these findings to specific controls within selected standards. This feature directly enables organizations to track, manage, and improve their compliance with frameworks like CIS by offering actionable recommendations.

Why this answer

To assess compliance with the CIS benchmark in Microsoft Defender for Cloud, you must enable the appropriate regulatory compliance standard. Defender for Cloud includes built-in support for industry standards like CIS, and by adding the CIS benchmark as a regulatory compliance standard, the service continuously assesses your Azure resources against the CIS controls and displays compliance status in the dashboard.

Exam trap

The trap here is that candidates confuse Azure Policy (the mechanism) with the regulatory compliance standards feature (the pre-built benchmark mapping), leading them to select Azure Policy instead of the correct option that activates the CIS benchmark assessment in Defender for Cloud.

How to eliminate wrong answers

Option A is wrong because Azure Policy is the underlying engine that enforces rules and evaluates resources, but it does not itself provide the CIS benchmark assessment; you must enable the specific regulatory compliance standard within Defender for Cloud to map CIS controls to Azure Policy initiatives. Option C is wrong because Microsoft Sentinel is a SIEM/SOAR solution for threat detection and incident response, not a compliance assessment tool for benchmarks like CIS. Option D is wrong because Azure Firewall is a network security service that filters traffic, and it has no role in evaluating resource configurations against the CIS benchmark.

385
MCQmedium

A company wants to detect and respond to advanced attacks targeting their on-premises Active Directory infrastructure, such as Kerberos Golden Ticket attacks, pass-the-hash, and brute-force attempts. The solution should integrate with Microsoft Sentinel and Microsoft 365 Defender for cross-domain investigations. Which Microsoft security solution should they deploy?

A.Microsoft Defender for Endpoint
B.Microsoft Defender for Identity
C.Microsoft Defender for Office 365
D.Microsoft Defender for Cloud Apps
AnswerB

Microsoft Defender for Identity is purpose-built to monitor on-premises Active Directory (AD) and hybrid environments for advanced threats. It deploys sensors directly on domain controllers and AD FS servers to analyze network traffic and Windows events, detecting suspicious user and entity behavior, reconnaissance activities, lateral movement paths, and privilege escalation techniques like Pass-the-Hash or Golden Ticket attacks. This specialized focus on identity-based threats within the AD infrastructure makes it the ideal solution for protecting against attacks targeting an organization's core directory services.

Why this answer

Microsoft Defender for Identity (MDI) is specifically designed to protect on-premises Active Directory by monitoring for advanced attacks like Kerberos Golden Ticket, pass-the-hash, and brute-force attempts. It integrates natively with Microsoft Sentinel and Microsoft 365 Defender to enable cross-domain investigations, correlating identity signals with endpoint and cloud data.

Exam trap

The trap here is that candidates often confuse Defender for Identity with Defender for Endpoint, assuming endpoint protection covers identity attacks, but MDI is the only solution that directly monitors Active Directory authentication protocols and domain controller traffic for advanced on-premises identity threats.

Why the other options are wrong

A

Microsoft Defender for Endpoint focuses on endpoint devices (e.g., workstations, servers) and does not specifically monitor or protect on-premises Active Directory infrastructure against attacks like Kerberos Golden Ticket or pass-the-hash.

C

Microsoft Defender for Office 365 protects email and collaboration tools, not on-premises Active Directory. It cannot detect Kerberos Golden Ticket attacks or pass-the-hash targeting AD.

D

Microsoft Defender for Cloud Apps is a cloud access security broker (CASB) that protects cloud applications, not on-premises Active Directory. It cannot detect Kerberos Golden Ticket attacks or pass-the-hash on on-premises AD.

386
Multi-Selecthard

Which TWO Microsoft Entra ID capabilities help detect and remediate identity risks? (Select two.)

Select 2 answers
A.Identity Protection
B.Identity Governance
C.Password protection
D.Privileged Identity Management
E.Conditional Access
AnswersA, E

Identity Protection detects risk detections.

Why this answer

Identity Protection (A) is correct because it uses machine learning and heuristics to detect identity-based risks such as leaked credentials, impossible travel, and anomalous sign-in behavior. It provides automated remediation actions like requiring password reset or blocking sign-in, directly addressing risk detection and remediation.

Exam trap

The trap here is that candidates often confuse Privileged Identity Management (PIM) with risk remediation, but PIM only manages privileged role activation and does not detect or automatically remediate identity risks.

387
Multi-Selecteasy

Which TWO are capabilities of Microsoft Entra ID Protection?

Select 2 answers
A.Risk-based conditional access policies
B.Device enrollment policies
C.Self-service password reset
D.Privileged role activation
E.Detection of leaked credentials
AnswersA, E

Microsoft Entra ID Protection continuously monitors user and sign-in behavior to detect various types of risks, such as impossible travel or anomalous IP addresses. It then feeds these real-time risk detections into Microsoft Entra Conditional Access policies. These policies can be configured to automatically enforce specific access controls, like blocking access, requiring multifactor authentication (MFA), or forcing a password change, based on the calculated user or sign-in risk level. This capability is central to adaptive access control.

Why this answer

Microsoft Entra ID Protection uses risk-based conditional access policies to automatically respond to detected risks, such as blocking access or requiring multi-factor authentication, based on real-time risk levels. Option E is correct because Entra ID Protection continuously monitors for leaked credentials by analyzing known credential breaches and flagging accounts whose credentials have been exposed, enabling proactive remediation.

Exam trap

The trap here is that candidates confuse Entra ID Protection with other Entra ID features like SSPR or PIM, but Entra ID Protection is specifically about risk detection and automated remediation, not password management or privileged access control.

388
MCQeasy

A company wants to protect against ransomware by detecting and blocking malicious files in email attachments. Which Microsoft security solution should be used?

A.Microsoft Defender for Identity
B.Microsoft Defender for Cloud Apps
C.Microsoft Defender for Office 365
D.Microsoft Defender for Endpoint
AnswerC

Microsoft Defender for Office 365 is the dedicated security service engineered to protect an organization's email, collaboration, and productivity tools within Microsoft 365 from advanced threats. It employs robust capabilities like Safe Attachments, which detonates suspicious attachments in a sandbox environment, and Safe Links, which rewrites and scans URLs at the time of click. This comprehensive protection specifically targets ransomware, phishing, business email compromise, and other sophisticated malware delivered via email or Microsoft Teams, making it the correct solution for detecting email-borne ransomware.

Why this answer

Microsoft Defender for Office 365 includes Safe Attachments and Safe Links features that scan email attachments in real-time using detonation chambers and machine learning to detect and block ransomware and other malicious files. This solution is specifically designed to protect Exchange Online and SharePoint Online from threats delivered via email, making it the correct choice for blocking malicious attachments.

Exam trap

The trap here is that candidates often confuse endpoint protection (Defender for Endpoint) with email security, forgetting that Defender for Office 365 is the dedicated solution for email-borne threats like malicious attachments in ransomware attacks.

How to eliminate wrong answers

Option A is wrong because Microsoft Defender for Identity focuses on detecting identity-based threats like Kerberos attacks, pass-the-hash, and lateral movement using Active Directory signals, not on scanning email attachments. Option B is wrong because Microsoft Defender for Cloud Apps is a CASB that provides visibility and control over cloud app usage, including shadow IT and data exfiltration, but does not perform inline email attachment scanning for ransomware. Option D is wrong because Microsoft Defender for Endpoint protects endpoints (workstations, servers) from malware and ransomware via behavioral sensors and antivirus, but it does not scan email attachments within Exchange Online or SharePoint.

389
MCQeasy

A company has enabled Microsoft Defender for Cloud. They want to assess their Azure resources for compliance with security benchmarks like CIS and Azure Security Benchmark, and view a secure score. Which feature of Defender for Cloud provides this capability?

A.Cloud Security Posture Management (CSPM)
B.Microsoft Defender for Servers
C.Microsoft Defender for App Service
D.Just-in-time (JIT) VM access
AnswerA

Cloud Security Posture Management (CSPM) is the foundational capability within Microsoft Defender for Cloud that provides continuous, real-time assessment of an organization's security posture across its cloud environments. It automatically identifies misconfigurations, vulnerabilities, and compliance deviations against industry benchmarks like CIS and regulatory standards. CSPM generates a secure score, offering actionable recommendations to improve security and maintain compliance, making it the direct answer for assessing posture.

Why this answer

Cloud Security Posture Management (CSPM) is the Defender for Cloud feature specifically designed to assess Azure resources against industry security benchmarks such as CIS and the Azure Security Benchmark. It continuously evaluates your environment, provides a secure score based on compliance findings, and offers actionable recommendations to improve your security posture. This directly matches the scenario's requirement for benchmark compliance assessment and secure score visibility.

Exam trap

The trap here is that candidates often confuse workload protection plans (like Defender for Servers) with posture management features, assuming any 'Defender' plan includes compliance assessment, whereas CSPM is the dedicated feature for benchmarks and secure score.

How to eliminate wrong answers

Option B is wrong because Microsoft Defender for Servers is a workload protection plan that provides advanced threat detection and just-in-time access for virtual machines, not a posture management or compliance benchmarking service. Option C is wrong because Microsoft Defender for App Service is a threat detection service focused on attacks targeting App Service applications, such as DDoS or injection attacks, and does not assess compliance with CIS or Azure Security Benchmark. Option D is wrong because Just-in-time (JIT) VM access is a feature that reduces the attack surface by controlling network access to VMs, but it does not perform compliance assessments or generate a secure score.

390
MCQhard

Your company uses Microsoft Entra ID and is implementing a zero-trust security model. You need to ensure that all access requests to sensitive applications are verified continuously, not just at the initial sign-in. Which Microsoft Entra ID capability should you use?

A.Conditional Access with session controls
B.Access reviews
C.Microsoft Entra Identity Protection
D.Privileged Identity Management
AnswerA

Conditional Access policies, specifically when configured with session controls and leveraging Continuous Access Evaluation (CAE), are designed to provide real-time verification during an active user session. CAE allows Microsoft Entra ID to revoke access tokens almost instantly in response to critical security events, such as a user's account being disabled, a password change, or a change in MFA location. This ensures that access is continuously evaluated against policy requirements throughout the session, not just at initial sign-in, making it the correct solution for continuous verification.

Why this answer

Conditional Access with session controls enforces continuous access evaluation (CAE) by intercepting real-time signals—such as user risk, device compliance, or location changes—after the initial authentication. This ensures that access to sensitive applications is verified throughout the session, not just at sign-in, aligning with the zero-trust principle of 'verify explicitly and continuously.'

Exam trap

The trap here is that candidates often confuse periodic reviews (Access reviews) or risk detection (Identity Protection) with real-time enforcement, but only session controls under Conditional Access provide the continuous, event-driven verification required by zero-trust.

How to eliminate wrong answers

Option B is wrong because Access reviews are periodic attestation workflows that require manual or scheduled re-certification of group memberships or application access; they do not provide real-time, continuous verification of each access request. Option C is wrong because Microsoft Entra Identity Protection focuses on detecting and responding to identity-based risks (e.g., leaked credentials, anomalous sign-ins) but does not enforce session-level controls or continuous verification of access to specific applications. Option D is wrong because Privileged Identity Management (PIM) manages just-in-time activation and approval workflows for privileged roles, not continuous verification of all access requests to sensitive applications.

391
MCQmedium

Your organization uses Microsoft Defender for Cloud Apps. Security team wants to be alerted when a user accesses a cloud app from a risky IP address. Which solution should you use to create a policy that triggers an alert based on this activity?

A.Create an activity policy.
B.Create a session policy.
C.Create an app discovery policy.
D.Create an access policy.
AnswerA

Activity policies in Microsoft Defender for Cloud Apps are designed to monitor user and admin activities across connected cloud applications. They allow organizations to define specific conditions, such as access from a risky IP address or unusual download volumes, and then trigger alerts or automated governance actions when these conditions are met. This makes them ideal for detecting and responding to suspicious behavior or policy violations after an activity has occurred, providing crucial visibility into potential threats.

Why this answer

Activity policies in Microsoft Defender for Cloud Apps monitor specific user activities (such as logins or file downloads) and can trigger alerts based on risk factors like the user's IP address. To be alerted when a user accesses a cloud app from a risky IP, an activity policy is appropriate. Session policies (Option B) control real-time session access and can block or allow actions but are not designed for alerting based on IP alone.

App discovery policies (Option C) identify shadow IT and unsanctioned apps, not user activity alerts. Access policies (Option D) enforce conditional access requirements but do not primarily generate IP-based alerts.

392
MCQmedium

Your organization uses Microsoft Sentinel. You need to create a custom analytics rule that triggers an incident when a user fails to sign in more than five times within an hour. Which rule type should you use?

A.Scheduled query rule
B.Fusion rule
C.Near-real-time (NRT) analytics rule
D.Machine learning (ML) behavioral analytics rule
AnswerA

This rule type is fundamental for proactive threat detection in Microsoft Sentinel, enabling security analysts to define and execute custom KQL queries against ingested log data on a recurring schedule. It allows for specifying a precise query interval and a lookback period, triggering an alert only when the query results meet a predefined numerical threshold. This makes it ideal for identifying specific patterns, event counts, or conditions over a chosen time window.

Why this answer

A scheduled query rule is the correct choice because it allows you to define a KQL query that counts sign-in failures per user over a specified time window (e.g., 1 hour) and triggers an incident when the count exceeds a threshold (e.g., 5). This rule type runs on a schedule you define, making it ideal for detecting patterns like brute-force attempts that require aggregation over time.

Exam trap

The trap here is that candidates confuse 'near-real-time' with 'real-time aggregation over a window,' but NRT rules cannot perform time-based aggregation like counting events over an hour, which is a key differentiator from scheduled query rules.

How to eliminate wrong answers

Option B (Fusion rule) is wrong because Fusion rules use advanced machine learning to correlate multiple alerts into a single incident based on kill-chain analysis, not a simple threshold-based count of a single event type. Option C (Near-real-time (NRT) analytics rule) is wrong because NRT rules process events with minimal latency (under 2 minutes) but cannot perform aggregation over a 1-hour window; they are designed for single-event or near-instant detection. Option D (Machine learning (ML) behavioral analytics rule) is wrong because ML rules rely on baseline learning and anomaly detection over time, not a fixed threshold like 'more than five times within an hour'.

393
MCQmedium

A security team wants to monitor and proactively defend against cyber threats across their entire infrastructure, including Azure virtual machines, on-premises servers, and AWS workloads. They need a unified solution that provides endpoint detection and response (EDR), vulnerability management, and threat hunting capabilities. Which Microsoft security solution should they use?

A.Microsoft Defender for Cloud
B.Microsoft Defender for Endpoint
C.Microsoft Sentinel
D.Microsoft Defender for Cloud Apps
AnswerB

Microsoft Defender for Endpoint is specifically designed to provide comprehensive Endpoint Detection and Response (EDR), next-generation protection, automated investigation and remediation, and vulnerability management across endpoints. It offers advanced capabilities like threat hunting, attack surface reduction, and deep visibility into endpoint activities. This makes it the ideal solution for monitoring and proactively defending against advanced threats on servers, workstations, and cloud virtual machines.

Why this answer

Microsoft Defender for Endpoint (B) is the correct answer because it provides unified endpoint detection and response (EDR), vulnerability management, and threat hunting across heterogeneous environments, including Azure VMs, on-premises servers, and AWS workloads. It extends beyond Windows to support Linux and macOS endpoints, and can be onboarded via Microsoft Defender for Cloud for multi-cloud visibility, making it the single solution that meets all the stated requirements.

Exam trap

The trap here is that candidates often confuse Microsoft Defender for Cloud (a CSPM/CWPP) with Microsoft Defender for Endpoint (an EDR), mistakenly thinking that Defender for Cloud alone provides endpoint-level detection and response, when in fact it relies on Defender for Endpoint for those capabilities.

How to eliminate wrong answers

Option A (Microsoft Defender for Cloud) is wrong because it is a cloud security posture management (CSPM) and cloud workload protection platform (CWPP) that focuses on securing cloud resources and workloads, but it does not provide native endpoint detection and response (EDR) or vulnerability management for endpoints; it relies on Defender for Endpoint for those capabilities. Option C (Microsoft Sentinel) is wrong because it is a cloud-native SIEM and SOAR solution that ingests logs and alerts for security information and event management, but it does not perform endpoint-level EDR, vulnerability scanning, or threat hunting directly on endpoints. Option D (Microsoft Defender for Cloud Apps) is wrong because it is a cloud access security broker (CASB) that focuses on shadow IT discovery, data loss prevention, and threat protection for SaaS applications, not endpoint detection and response or vulnerability management for servers and VMs.

394
MCQmedium

Your organization is using Microsoft Defender for Cloud to secure a multi-cloud environment including Azure and AWS. You need to identify misconfigurations that could lead to security breaches. Which feature should you use?

A.Cloud Security Posture Management (CSPM)
B.Cloud Workload Protection (CWP)
C.Regulatory compliance dashboard
D.Security score
AnswerA

Cloud Security Posture Management (CSPM) continuously monitors cloud environments (IaaS, PaaS, SaaS) for misconfigurations, policy violations, and deviations from security best practices. It provides actionable recommendations to remediate identified issues, thereby proactively improving the overall security posture and reducing the attack surface. Microsoft Defender for Cloud's core CSPM capabilities include Secure Score, asset inventory, and security recommendations.

Why this answer

Cloud Security Posture Management (CSPM) is the correct feature because it continuously assesses your multi-cloud environment (Azure and AWS) against security best practices and compliance frameworks, identifying misconfigurations that could lead to security breaches. In Microsoft Defender for Cloud, CSPM provides a unified view of security posture across clouds, detecting issues like open ports, weak encryption, or excessive permissions without requiring agents. This directly addresses the need to find misconfigurations that attackers could exploit.

Exam trap

The trap here is that candidates confuse the output (Security score) or a related feature (Regulatory compliance dashboard) with the core scanning mechanism (CSPM), or they mistakenly think CWP's runtime protection covers configuration auditing, when in fact CSPM is the dedicated feature for identifying misconfigurations.

How to eliminate wrong answers

Option B is wrong because Cloud Workload Protection (CWP) focuses on detecting and responding to threats (e.g., malware, suspicious processes) at runtime within workloads, not on identifying static misconfigurations in cloud resources. Option C is wrong because the Regulatory compliance dashboard tracks adherence to specific standards (e.g., ISO 27001, SOC 2) and provides compliance scores, but it does not proactively scan for all misconfigurations that could lead to breaches—it is a subset of CSPM reporting. Option D is wrong because Security score is a metric that summarizes your overall security posture based on control implementation, but it is an output of CSPM assessments, not a feature that directly identifies specific misconfigurations; it aggregates findings rather than listing them.

395
MCQeasy

Your organization wants to protect sensitive documents from being copied to unauthorized cloud services. Which Microsoft Purview capability should you use?

A.Audit log
B.Data Loss Prevention (DLP) policy
C.Retention policy
D.Sensitivity label
AnswerB

A Data Loss Prevention (DLP) policy is purpose-built to identify, monitor, and protect sensitive information from being inappropriately shared, transferred, or used. These policies leverage predefined or custom rules to detect specific sensitive content, such as financial data or intellectual property, within documents across various locations and then enforce actions like blocking sharing, encrypting the data, or alerting administrators. DLP policies are highly effective in preventing unauthorized sharing of sensitive documents to external parties or unapproved cloud services, directly addressing the organization's protection requirement.

Why this answer

Data Loss Prevention (DLP) policies are specifically designed to identify, monitor, and automatically protect sensitive information—such as credit card numbers or health records—when users attempt to copy or share it with unauthorized cloud services like personal OneDrive or third-party storage apps. By scanning content in transit and applying actions like blocking the action or encrypting the data, DLP directly addresses the requirement to prevent data exfiltration to unauthorized cloud destinations.

Exam trap

The trap here is that candidates often confuse Sensitivity labels with DLP because both deal with data protection, but labels are for classification and persistent protection, whereas DLP is the active enforcement mechanism that monitors and blocks unauthorized data movement to cloud services.

How to eliminate wrong answers

Option A is wrong because Audit log records user and admin activities for compliance and forensic investigation but does not actively block or prevent data from being copied to unauthorized cloud services. Option C is wrong because Retention policy governs how long data is kept or deleted, not how it is protected from unauthorized sharing or exfiltration. Option D is wrong because Sensitivity labels classify and protect data by applying encryption or visual markings, but they do not by themselves monitor or block data transfer to unauthorized cloud services; they require integration with DLP or other controls to enforce such actions.

396
MCQmedium

A security team needs to detect and investigate advanced attacks targeting on-premises Active Directory accounts, such as Pass-the-Hash (PtH) and Golden Ticket attacks. Which Microsoft security solution should they deploy?

A.Microsoft Defender for Cloud Apps
B.Microsoft Defender for Endpoint
C.Microsoft Defender for Identity
D.Microsoft Sentinel
AnswerC

Microsoft Defender for Identity (MDI) is purpose-built to detect advanced threats targeting on-premises Active Directory and hybrid identity environments. It monitors domain controllers and network traffic for suspicious activities, leveraging behavioral analytics to identify credential theft, lateral movement, and sophisticated attacks like Pass-the-Hash or Golden Ticket. MDI provides specialized insights into identity-based threats, enabling rapid investigation and response to protect critical authentication infrastructure.

Why this answer

Microsoft Defender for Identity (MDI) is specifically designed to detect advanced attacks targeting on-premises Active Directory, such as Pass-the-Hash (PtH) and Golden Ticket attacks. It uses behavioral analytics and machine learning to monitor AD traffic, Kerberos authentication, and NTLM protocol anomalies, identifying lateral movement and privilege escalation attempts that characterize these attacks.

Exam trap

The trap here is that candidates often confuse Microsoft Defender for Identity with Microsoft Sentinel or Defender for Endpoint, not realizing that only Defender for Identity provides dedicated, protocol-level detection for on-premises Active Directory attacks like PtH and Golden Ticket.

Why the other options are wrong

A

Microsoft Defender for Cloud Apps is a CASB focused on cloud application security, not on-premises Active Directory attack detection like PtH or Golden Ticket.

B

Microsoft Defender for Endpoint focuses on endpoint devices (e.g., workstations, servers) and does not specialize in monitoring on-premises Active Directory for identity-based attacks like Pass-the-Hash or Golden Ticket.

D

Microsoft Sentinel is a SIEM/SOAR solution that aggregates logs and generates alerts, but it does not natively detect advanced on-premises Active Directory attacks like Pass-the-Hash or Golden Ticket. It relies on data sources such as Defender for Identity to provide that detection capability.

397
Multi-Selecthard

A company uses Microsoft Purview Data Lifecycle Management. To comply with regulatory requirements, the company must retain financial records for 7 years and then delete them. Which THREE actions should the company configure? (Select THREE.)

Select 3 answers
A.Create a data loss prevention policy
B.Create a retention policy for the entire SharePoint site
C.Create a retention label with a retention period of 7 years
D.Configure a disposition review to confirm deletion
E.Create an auto-labeling policy to apply the retention label to financial records
AnswersC, D, E

Retention labels in Microsoft Purview Data Lifecycle Management are specifically designed to apply precise retention settings, such as a 7-year retention period, to individual items like documents or emails. This allows for granular control over the lifecycle of specific content types, ensuring that financial records, for instance, are retained for the exact required duration based on regulatory or business needs. Labels can also trigger actions like disposition reviews at the end of the retention period.

Why this answer

A retention label with a 7-year retention period allows you to apply specific retention and deletion rules to individual documents, such as financial records, rather than to an entire site. This granularity is necessary when only a subset of content within a SharePoint site must be retained for compliance.

Exam trap

The trap here is that candidates often confuse retention policies (which apply to all content in a location) with retention labels (which can be scoped to specific content), and they forget that a disposition review is a separate configuration needed to confirm deletion rather than assuming automatic deletion occurs.

398
MCQhard

A security team needs to collect and analyze security logs from a hybrid environment consisting of on-premises Windows servers, Azure virtual machines, and AWS workloads. They want to correlate events, detect anomalous behavior, and create custom security alerts with automated response playbooks. Which Microsoft security solution should they use?

A.Microsoft Defender for Cloud
B.Microsoft Sentinel
C.Microsoft Defender for Office 365
D.Microsoft Defender for Identity
AnswerB

Microsoft Sentinel is a cloud-native Security Information and Event Management (SIEM) and Security Orchestration, Automation, and Response (SOAR) solution. It excels at collecting security data from virtually any source, including Azure services, on-premises infrastructure, other cloud providers (AWS, GCP), and third-party applications. Sentinel leverages AI and machine learning for intelligent threat detection, provides advanced analytics for correlating events, and enables automated responses through integrated SOAR playbooks, making it ideal for comprehensive security log analysis and incident management.

Why this answer

Microsoft Sentinel is the correct solution because it is a cloud-native SIEM (Security Information and Event Management) and SOAR (Security Orchestration, Automation, and Response) solution designed to ingest logs from hybrid and multi-cloud environments, including on-premises Windows servers, Azure VMs, and AWS workloads. It provides advanced correlation of events across these sources, built-in anomaly detection using machine learning, and the ability to create custom security alerts and automated response playbooks via Azure Logic Apps. This directly matches the requirement for collecting, analyzing, correlating, detecting anomalies, and automating responses.

Exam trap

The trap here is that candidates often confuse Microsoft Defender for Cloud (a CSPM/CWPP tool) with a full SIEM solution, but Defender for Cloud lacks the log correlation, custom alert creation, and SOAR playbook capabilities that are exclusive to Microsoft Sentinel.

How to eliminate wrong answers

Option A is wrong because Microsoft Defender for Cloud is a Cloud Security Posture Management (CSPM) and Cloud Workload Protection Platform (CWPP) that focuses on assessing and hardening security configurations across Azure, AWS, and GCP, but it does not provide native SIEM capabilities for log correlation, custom alert creation, or automated response playbooks. Option C is wrong because Microsoft Defender for Office 365 is specifically designed to protect email, SharePoint, OneDrive, and Teams from threats like phishing and malware, and it cannot ingest or analyze logs from on-premises Windows servers, Azure VMs, or AWS workloads. Option D is wrong because Microsoft Defender for Identity is an on-premises Active Directory security solution that uses signals from domain controllers to detect identity-based attacks, but it lacks the multi-source log ingestion, correlation, and SOAR capabilities required for a hybrid environment with AWS workloads.

399
MCQhard

Your organization uses Microsoft Purview Information Protection to classify and protect documents. You have created a sensitivity label that applies encryption to documents marked as 'Confidential'. Users are able to apply the label manually. However, you need to ensure that all documents containing personally identifiable information (PII) are automatically labeled as 'Confidential' when they are saved to SharePoint Online. What should you configure?

A.Create an auto-labeling policy in Microsoft Purview that scans for PII sensitive info types and applies the 'Confidential' label.
B.Configure a default label for SharePoint libraries so that all documents are labeled 'Confidential'.
C.Create a Data Loss Prevention (DLP) policy that blocks sharing of PII.
D.Train users to apply the 'Confidential' label manually when they create documents with PII.
AnswerA

Auto-labeling policies can scan and apply labels automatically.

Why this answer

Auto-labeling policies in Microsoft Purview can scan documents for sensitive info types (such as PII) and automatically apply the 'Confidential' label when they are saved to SharePoint Online. Option B is incorrect because configuring a default label for SharePoint libraries would apply to all documents, not just those containing PII, and it would not scan for specific content. Option C is incorrect because a DLP policy blocks sharing or other actions but does not apply sensitivity labels.

Option D is incorrect because manual labeling does not meet the requirement for automatic labeling.

400
MCQeasy

A company uses Microsoft Defender for Cloud to improve their cloud security posture. They want to see an aggregated score that reflects how well their resources are protected against threats. Which feature in Defender for Cloud provides this?

A.Compliance dashboard
B.Security Score
C.Cloud Security Posture Management (CSPM)
D.Workload protections
AnswerB

The Security Score is a crucial feature within Microsoft Defender for Cloud that provides a quantifiable, aggregated metric reflecting an organization's overall security posture across its hybrid and multi-cloud environments. It is calculated based on the implementation status of security recommendations derived from continuous assessments against security benchmarks. This score helps prioritize security efforts by showing the potential impact of implementing specific recommendations on the overall security posture, enabling clear tracking of improvements over time.

Why this answer

The Security Score in Microsoft Defender for Cloud aggregates findings from security assessments and controls into a single percentage score, reflecting how well resources are protected against threats. It is based on the Secure Score algorithm, which calculates the ratio of passed controls to total controls, weighted by the potential impact of each control. This provides a unified, quantitative measure of cloud security posture.

Exam trap

The trap here is that candidates confuse the broader Cloud Security Posture Management (CSPM) capability with the specific Security Score feature, but CSPM is the umbrella term for posture management, while Security Score is the concrete metric that provides the aggregated score.

How to eliminate wrong answers

Option A is wrong because the Compliance dashboard maps security controls to regulatory standards (e.g., SOC 2, ISO 27001) and shows compliance status, not an aggregated threat protection score. Option C is wrong because Cloud Security Posture Management (CSPM) is the overarching capability that includes security assessments, hardening recommendations, and the Security Score; the question asks for the specific feature that provides the aggregated score, not the broader capability. Option D is wrong because Workload protections focus on advanced threat detection and response for specific workloads (e.g., servers, databases) using tools like Just-In-Time VM access and adaptive application controls, not an aggregated security score.

401
MCQeasy

Your organization uses Microsoft Entra ID for identity management. You need to require multi-factor authentication (MFA) for all users when accessing the Azure portal. Which feature should you use?

A.Privileged Identity Management
B.Identity Protection user risk policy
C.Entra ID P1 license
D.Conditional Access policy
AnswerD

A Conditional Access policy is the precise tool within Microsoft Entra ID that allows administrators to enforce specific access requirements based on various conditions. By configuring a policy to target desired cloud applications and setting the grant control to "Require multi-factor authentication," the organization can mandate MFA for all users attempting to access those applications, thereby directly addressing the requirement to enforce MFA for cloud apps.

Why this answer

Conditional Access policy (Option D) is correct because it allows you to create policies that enforce MFA for specific applications like the Azure portal. Option A, Privileged Identity Management, is used for managing and auditing privileged roles, not for enforcing MFA. Option B, Identity Protection user risk policy, can trigger MFA based on risk but cannot enforce MFA for all users unconditionally.

Option C, an Entra ID P1 license, is a prerequisite for using Conditional Access but is not a feature itself.

402
MCQhard

A security team needs to detect and automatically respond to ransomware attacks on Windows servers and desktops. They require the solution to automatically isolate affected devices from the network and, if necessary, roll back files that have been modified by ransomware using a built-in recovery feature. Which Microsoft security solution provides these specific capabilities?

A.Microsoft Defender for Cloud Apps
B.Microsoft Defender for Endpoint
C.Microsoft Defender for Office 365
D.Microsoft Defender for Identity
AnswerB

Microsoft Defender for Endpoint is a comprehensive Endpoint Detection and Response (EDR) solution designed to protect devices from advanced threats. It offers robust capabilities for automated investigation and remediation, including isolating compromised endpoints from the network to contain threats. Furthermore, it provides advanced features like file rollback, crucial for recovering from ransomware attacks by restoring files to their pre-attack state using cloud-delivered protection.

Why this answer

Microsoft Defender for Endpoint (MDE) provides automated investigation and remediation capabilities that include network containment (isolating a device from the network) and rollback of files modified by ransomware using its built-in recovery feature. This is achieved through MDE's endpoint detection and response (EDR) and automated investigation capabilities, which can trigger device isolation and file restoration from Volume Shadow Copy or MDE's own rollback mechanism.

Exam trap

The trap here is that candidates confuse Microsoft Defender for Cloud Apps (a CASB) with endpoint protection, or assume that Defender for Office 365 covers all ransomware scenarios, when in fact only Defender for Endpoint provides the specific combination of device isolation and file rollback on Windows endpoints.

How to eliminate wrong answers

Option A is wrong because Microsoft Defender for Cloud Apps is a cloud access security broker (CASB) focused on securing cloud applications and data, not on endpoint-level ransomware detection, device isolation, or file rollback on Windows servers and desktops. Option C is wrong because Microsoft Defender for Office 365 protects email, SharePoint, OneDrive, and Teams from threats like phishing and malware, but it does not provide endpoint isolation or file rollback on Windows servers and desktops. Option D is wrong because Microsoft Defender for Identity monitors on-premises Active Directory for identity-based attacks (e.g., lateral movement, privilege escalation) and does not include endpoint device isolation or ransomware file recovery capabilities.

403
MCQmedium

A company has deployed Microsoft Defender for Endpoint, Microsoft Defender for Office 365, Microsoft Defender for Identity, and Microsoft Defender for Cloud Apps. The security operations team wants a single, unified portal where they can view alerts from all these products, perform cross-domain investigations, and orchestrate automated response actions. Which Microsoft security solution should they use?

A.Microsoft Sentinel
B.Microsoft 365 Defender
C.Microsoft Defender for Cloud
D.Microsoft Defender for Endpoint
AnswerB

Microsoft 365 Defender serves as the unified Extended Detection and Response (XDR) solution, integrating signals from Defender for Endpoint, Defender for Office 365, Defender for Identity, and Microsoft Defender for Cloud Apps. This comprehensive platform correlates alerts and incidents across these domains, enabling security operations teams to conduct cross-domain investigations and leverage automated response capabilities for a holistic security posture.

Why this answer

Microsoft 365 Defender is the correct answer because it is a unified pre- and post-breach enterprise defense suite that natively coordinates detection, prevention, investigation, and response across endpoints, identities, email, and cloud applications. It provides a single portal (security.microsoft.com) where alerts from Defender for Endpoint, Defender for Office 365, Defender for Identity, and Defender for Cloud Apps are correlated into incidents, enabling cross-domain investigation and automated response via playbooks and the Microsoft 365 Defender API.

Exam trap

The trap here is that candidates often confuse Microsoft Sentinel (a SIEM) with the unified Microsoft 365 Defender portal, not realizing that Sentinel is an aggregator for multiple data sources, while Microsoft 365 Defender is the native unified console for the Defender product family itself.

Why the other options are wrong

A

Microsoft Sentinel is a cloud-native SIEM/SOAR for ingesting logs from multiple sources, but it is not the unified portal for Microsoft 365 Defender products; the question specifies a single portal for alerts from Defender products, which is Microsoft 365 Defender.

C

Microsoft Defender for Cloud is a cloud security posture management (CSPM) and cloud workload protection platform (CWPP) for multicloud environments, not a unified portal for cross-domain investigation and automated response across Defender products.

D

Microsoft Defender for Endpoint is a single-product security solution focused on endpoint protection, not a unified portal for cross-domain alerts from multiple Defender products. The question asks for a single portal integrating alerts from Defender for Endpoint, Office 365, Identity, and Cloud Apps, which is the role of Microsoft 365 Defender.

404
Multi-Selecthard

Which TWO of the following are capabilities of Microsoft Sentinel? (Choose two.)

Select 2 answers
A.Security information and event management (SIEM)
B.Security orchestration, automation, and response (SOAR)
C.Endpoint detection and response (EDR)
D.Vulnerability scanning
E.Data classification and labeling
AnswersA, B

Microsoft Sentinel is fundamentally a cloud-native Security Information and Event Management (SIEM) solution. It provides centralized security data collection from various sources, including Microsoft 365, Azure, on-premises systems, and other cloud providers, ingesting logs and alerts at scale. Sentinel then uses analytics, machine learning, and threat intelligence to detect, investigate, and respond to threats across an organization's digital estate, offering a comprehensive view of security posture.

Why this answer

Microsoft Sentinel is a cloud-native Security Information and Event Management (SIEM) solution that aggregates log data from across an organization to detect, investigate, and respond to threats. It also provides Security Orchestration, Automation, and Response (SOAR) capabilities through built-in playbooks and automation rules, enabling automated incident response workflows.

Exam trap

The trap here is that candidates confuse Microsoft Sentinel's ability to ingest and correlate EDR alerts with actually performing EDR functions, leading them to select 'Endpoint detection and response' as a Sentinel capability.

405
Multi-Selectmedium

Which THREE are features of Microsoft Defender for Cloud?

Select 3 answers
A.Just-in-time VM access
B.Secure Score
C.Data classification
D.Regulatory compliance dashboard
E.Incident investigation
AnswersA, B, D

JIT access reduces exposure by controlling VM access.

Why this answer

Just-in-time (JIT) VM access is a feature of Microsoft Defender for Cloud that reduces exposure to brute-force attacks by locking down inbound traffic to VMs. It allows you to control when specific ports (e.g., RDP port 3389 or SSH port 22) are opened on demand, based on role-based access control (RBAC) and approved requests, and automatically closes them after a configured time window.

Exam trap

The trap here is that candidates confuse Microsoft Defender for Cloud's security alerts and recommendations with the full incident investigation and hunting capabilities of Microsoft Sentinel, or they mistakenly associate data classification (a Purview feature) with Defender for Cloud's workload protection.

406
MCQmedium

A company uses Microsoft 365 and wants to protect against sophisticated phishing attacks that use malicious links in email. They also want real-time analysis of URLs at the time of click. Which Microsoft Defender for Office 365 feature provides this?

A.Safe Links
B.Safe Attachments
C.Anti-spam
D.Anti-malware
AnswerA

Safe Links is a critical feature of Microsoft Defender for Office 365 that provides real-time, time-of-click protection against malicious URLs. When a user clicks a link in an email, Microsoft Teams, or supported Office apps, Safe Links rewrites the URL and scans it to determine if it leads to a malicious site. If the link is deemed harmful, the user is blocked from accessing the site, even if the original link was benign at the time of email delivery but later became malicious. This proactive defense is essential for protecting against evolving phishing and targeted attacks.

Why this answer

Safe Links is the correct answer because it provides URL scanning and real-time click-time verification of links in email messages and Office documents. When a user clicks a link, Defender for Office 365 checks the URL against a dynamic list of known malicious sites and performs a real-time analysis to determine if the link is safe at that moment, protecting against sophisticated phishing attacks that use malicious links.

Exam trap

The trap here is that candidates often confuse Safe Links with Safe Attachments, but Safe Attachments focuses on file-based malware detonation, not on real-time URL analysis at the moment of click.

How to eliminate wrong answers

Option B (Safe Attachments) is wrong because it scans email attachments for malware by detonating them in a sandbox environment, not by analyzing URLs at the time of click. Option C (Anti-spam) is wrong because it filters incoming email based on spam criteria (e.g., bulk mail, spoofing) and does not perform real-time URL analysis at click time. Option D (Anti-malware) is wrong because it detects and removes known malware signatures from email and files, but it does not provide dynamic, click-time URL verification against phishing links.

407
MCQmedium

A company uses Microsoft 365 and stores many business documents in SharePoint Online and OneDrive. The security team wants to automatically detect and block malicious files (e.g., those containing ransomware or other malware) that are uploaded to these document libraries. Files should be scanned and held until proven safe. Which Microsoft security solution should they enable to provide this protection?

A.Microsoft Defender for Endpoint
B.Microsoft Defender for Identity
C.Microsoft Defender for Office 365
D.Microsoft Defender for Cloud
AnswerC

Microsoft Defender for Office 365 (MDO) is specifically designed to protect against threats originating from email and collaboration tools within Microsoft 365. Its Safe Attachments feature extends protection to files stored in SharePoint Online, OneDrive for Business, and Microsoft Teams, proactively scanning documents for malware and blocking access to malicious content. This ensures that business documents stored in these cloud locations are secured against advanced threats like zero-day malware. Furthermore, MDO provides Safe Links and anti-phishing capabilities to safeguard users from malicious URLs and impersonation attempts.

Why this answer

Microsoft Defender for Office 365 includes Safe Attachments for SharePoint, OneDrive, and Microsoft Teams, which automatically scans files uploaded to these document libraries. If a file is detected as malicious (e.g., ransomware or malware), it is blocked and held in quarantine until it is proven safe, providing the exact protection described in the scenario.

Exam trap

The trap here is that candidates often confuse Microsoft Defender for Office 365 with Microsoft Defender for Endpoint, assuming endpoint protection covers cloud storage scanning, but Safe Attachments is a specific feature of Defender for Office 365 that protects SharePoint and OneDrive at the file level.

Why the other options are wrong

A

Microsoft Defender for Endpoint protects devices (endpoints) from malware, but does not scan files uploaded to SharePoint Online or OneDrive. The question specifically asks for a solution that scans files in document libraries, which is a workload protected by Defender for Office 365.

B

Microsoft Defender for Identity focuses on detecting and investigating advanced threats, compromised identities, and malicious insider actions using Active Directory signals, not on scanning files in SharePoint or OneDrive for malware.

D

Microsoft Defender for Cloud is designed to protect cloud workloads (e.g., VMs, containers, PaaS services) across Azure and hybrid environments, not to scan and block malicious files in SharePoint Online or OneDrive document libraries.

408
Multi-Selecthard

Which THREE Microsoft Purview solutions support data classification and labeling? (Choose THREE.)

Select 3 answers
A.Information Protection
B.Insider Risk Management
C.Data Lifecycle Management
D.Communication Compliance
E.Data Loss Prevention
AnswersA, C, E

Microsoft Purview Information Protection (MPIP) is a core solution for data classification, enabling organizations to define, apply, and manage sensitivity labels across various data types and locations. These labels classify data based on its sensitivity level, which then dictates subsequent protection actions such as encryption, access restrictions, and visual markings. MPIP provides the essential framework for identifying and categorizing sensitive information, making it fundamental to any data classification strategy.

Why this answer

Microsoft Purview Information Protection handles classification and labeling of data. Data Loss Prevention uses labels to enforce policies. Data Lifecycle Management uses labels for retention and deletion.

Communication Compliance monitors communications but does not directly classify or label data. Insider Risk Management identifies risky activities but does not classify data.

409
MCQmedium

A security administrator needs to enforce that all Microsoft 365 documents containing credit card numbers are automatically encrypted before being shared externally. Which Microsoft Purview solution should they use?

A.Microsoft Purview Audit
B.Microsoft Purview Communication Compliance
C.Microsoft Purview Data Loss Prevention
D.Microsoft Purview Information Protection
AnswerC

Microsoft Purview Data Loss Prevention (DLP) policies are specifically engineered to identify, monitor, and protect sensitive information across endpoints, cloud apps, and services. When a DLP policy detects sensitive data in a document, it can be configured to automatically apply protective actions, including the application of sensitivity labels that enforce encryption, thereby preventing unauthorized sharing or exfiltration and ensuring data protection.

Why this answer

Microsoft Purview Data Loss Prevention (DLP) is the correct solution because it can automatically detect sensitive data types, such as credit card numbers, in Microsoft 365 documents and enforce protective actions like encryption before external sharing. DLP policies use sensitive information types (e.g., Credit Card Number) and conditions to trigger encryption via Azure Information Protection, ensuring data is protected at rest and in transit.

Exam trap

The trap here is that candidates often confuse Information Protection (which handles labeling and classification) with DLP (which enforces protective actions like encryption), but Microsoft Purview DLP is the engine that actually triggers automatic encryption based on content detection.

How to eliminate wrong answers

Option A is wrong because Microsoft Purview Audit provides logging and investigation of user and admin activities, not proactive enforcement of encryption on documents. Option B is wrong because Microsoft Purview Communication Compliance focuses on detecting and remediating inappropriate communications (e.g., harassment, insider trading), not on encrypting documents containing sensitive data. Option D is wrong because Microsoft Purview Information Protection provides classification and labeling capabilities but does not natively enforce automatic encryption based on content detection; it requires integration with DLP policies to trigger encryption actions.

410
MCQhard

During a security incident, a SOC analyst needs to investigate a compromised user account that accessed multiple cloud apps. Which Microsoft Defender XDR feature provides a unified view of the attack timeline across endpoints, identities, and cloud apps?

A.Incident response
B.Microsoft Secure Score
C.Advanced hunting
D.Action center
AnswerA

In Microsoft security platforms, "Incident response" provides a unified view that aggregates related alerts from various security workloads, such as endpoints, identities, and cloud applications. This centralized incident queue allows SOC analysts to efficiently investigate the full scope of a security breach, understand the attack story, and coordinate remediation actions, making it the primary starting point for comprehensive incident investigation.

Why this answer

Incident response in Microsoft Defender XDR aggregates alerts and activities from endpoints, identities, and cloud apps into a single incident view, providing a unified attack timeline. This allows the SOC analyst to see the full scope of the compromised user account's actions across all integrated workloads without switching between consoles.

Exam trap

The trap here is that candidates confuse 'Advanced hunting' (a powerful but manual query tool) with the automated, unified incident timeline that Incident Response provides, leading them to select the wrong option when the question explicitly asks for a 'unified view'.

How to eliminate wrong answers

Option B (Microsoft Secure Score) is wrong because it measures an organization's security posture based on configuration recommendations, not real-time incident investigation or attack timelines. Option C (Advanced hunting) is wrong because it is a query-based tool for proactively searching raw data across workloads, not a pre-built unified timeline view of a specific incident. Option D (Action center) is wrong because it lists pending and completed remediation actions (e.g., quarantine, block) but does not provide the chronological attack timeline across endpoints, identities, and cloud apps.

411
MCQmedium

A company runs Azure SQL databases containing customer transaction data. The security team needs to detect and alert on suspicious database access patterns, such as SQL injection attempts or access from unusual locations. Which Microsoft security solution should they enable?

A.Microsoft Defender for Cloud
B.Microsoft Defender for Endpoint
C.Microsoft Defender for Office 365
D.Microsoft Sentinel
AnswerA

Microsoft Defender for Cloud provides comprehensive cloud security posture management (CSPM) and cloud workload protection (CWP) for Azure resources, including Azure SQL databases. Its advanced threat protection capabilities specifically monitor Azure SQL for suspicious activities such as SQL injection attempts, brute-force attacks, and unusual data access patterns. By leveraging built-in intelligence and behavioral analytics, Defender for Cloud proactively identifies and alerts on potential threats targeting the database layer, ensuring the security of customer data. This makes it the primary solution for native Azure SQL database threat detection.

Why this answer

Microsoft Defender for Cloud provides advanced threat protection for Azure SQL databases, including anomaly detection for suspicious activities like SQL injection and unusual access patterns. It uses machine learning to baseline normal database behavior and triggers alerts when deviations occur, such as access from atypical geographic locations or malicious query patterns.

Exam trap

The trap here is that candidates may confuse Microsoft Defender for Cloud's database-specific threat detection with Microsoft Sentinel's broader SIEM capabilities, but the question explicitly asks for a solution that detects and alerts on suspicious database access patterns, which is a built-in feature of Defender for Cloud, not Sentinel.

Why the other options are wrong

B

Microsoft Defender for Endpoint is designed to protect endpoints (devices) from threats, not to detect suspicious database access patterns like SQL injection or unusual location access on Azure SQL databases.

C

Microsoft Defender for Office 365 protects email and collaboration tools like Exchange Online and SharePoint, not Azure SQL databases. It cannot detect SQL injection or database access patterns.

D

Microsoft Sentinel is a SIEM/SOAR solution for aggregating and analyzing security data from multiple sources, but it does not natively detect SQL injection or unusual database access patterns without additional configuration. The question asks for a solution that directly protects Azure SQL databases, which is a core capability of Defender for Cloud's database-specific threat detection.

412
MCQhard

Refer to the exhibit. A security analyst runs the KQL query in Microsoft Defender for Endpoint. The query returns no results. What is the most likely cause?

A.The device has a risk score of zero
B.The device runs macOS
C.The analyst lacks permissions to view the device
D.The device is not onboarded to Defender for Endpoint
AnswerD

The DeviceInfo table in Microsoft Defender for Endpoint exclusively stores records for devices that have been successfully onboarded and are actively reporting sensor data. If a device has not completed the onboarding process, or if its Defender for Endpoint sensor is not functioning or reporting, no corresponding entry will exist within the DeviceInfo table. Therefore, a KQL query attempting to retrieve information for such a device would correctly return an empty result set, indicating the absence of that device's data in the platform.

Why this answer

The KQL query in Microsoft Defender for Endpoint returns no results because the device is not onboarded. Defender for Endpoint can only report on devices that have been enrolled and are actively sending telemetry. If a device is not onboarded, no data exists for it in the security portal, so any query targeting that device will return empty results.

Exam trap

The trap here is that candidates may think a missing result is due to permissions or OS incompatibility, but the core prerequisite for any Defender for Endpoint query is that the device must be onboarded and actively reporting telemetry.

How to eliminate wrong answers

Option A is wrong because a risk score of zero does not prevent a query from returning results; it simply indicates no detected threats, but the device would still appear in query results. Option B is wrong because Microsoft Defender for Endpoint supports macOS devices, and a macOS device can be onboarded and queried successfully. Option C is wrong because if the analyst lacked permissions, the query would typically return an access denied error or no results at all, but the most common and direct cause for no results when a device is known to exist is that it has never been onboarded.

413
MCQmedium

A global company uses Microsoft Teams and SharePoint Online. They need to automatically detect and prevent sharing of intellectual property files containing 'Project X' with external users. What should they configure?

A.Microsoft Entra ID Access Reviews
B.Microsoft Purview Sensitivity Labels
C.Microsoft Purview Data Loss Prevention policy for SharePoint and OneDrive
D.Microsoft Defender for Cloud Apps Session Policy
AnswerC

Microsoft Purview Data Loss Prevention (DLP) policies for SharePoint and OneDrive are specifically engineered to identify, monitor, and protect sensitive information across these services. These policies utilize sensitive information types (SITs), keywords, and trainable classifiers to detect specific data patterns, such as credit card numbers or national IDs, and can then automatically block sharing, notify administrators, or apply encryption to prevent unauthorized data exfiltration.

Why this answer

Microsoft Purview Data Loss Prevention (DLP) policies for SharePoint and OneDrive can be configured to automatically detect files containing sensitive content (e.g., 'Project X') and block sharing with external users. DLP policies inspect content at rest and during sharing actions, applying rules to prevent unauthorized external access.

Exam trap

The trap here is that candidates often confuse Sensitivity Labels (which classify and protect data) with DLP policies (which enforce actions like blocking sharing), but DLP is the correct tool for automatic detection and prevention of specific content sharing with external users.

How to eliminate wrong answers

Option A is wrong because Microsoft Entra ID Access Reviews are used for periodic review of user access rights, not for real-time detection and prevention of content sharing. Option B is wrong because Microsoft Purview Sensitivity Labels classify and protect data with encryption or markings but do not automatically detect and block sharing of specific content like 'Project X' with external users; they require manual or automated labeling but lack the policy-driven blocking of DLP. Option D is wrong because Microsoft Defender for Cloud Apps Session Policy controls user sessions in real-time (e.g., read-only access) but does not natively detect and block sharing of intellectual property files based on content inspection; it focuses on app-level access controls rather than content-based DLP.

← PreviousPage 6 of 6 · 413 questions total

Ready to test yourself?

Try a timed practice session using only Describe the capabilities of Microsoft security solutions questions.