Courseiva

CCNA Describe The Concepts Of Security Compliance And Identity Questions

71 of 221 questions · Page 3/3 · Describe The Concepts Of Security Compliance And Identity topic · Answers revealed

151
MCQeasy

A security architect is designing a system where user access rights are reviewed and certified on a regular basis by data owners. The goal is to ensure that users continue to have only the permissions necessary to perform their job functions and that no excessive permissions exist. Which security principle is primarily being implemented through these regular reviews?

A.Defense in depth
B.Zero trust
C.Least privilege
D.Separation of duties
AnswerC

Least privilege means granting users the minimum level of access required. Regular access reviews are a key governance practice to uphold least privilege by detecting and removing excessive permissions.

Why this answer

Regular access reviews directly enforce the principle of least privilege by ensuring users retain only the permissions necessary for their current job functions. This process identifies and removes excessive permissions that may have accumulated over time, aligning with the core goal of minimizing the attack surface. In Microsoft 365, this is often implemented through Azure AD access reviews, where data owners certify or revoke user access.

Exam trap

The trap here is that candidates may confuse the periodic review of permissions with the zero trust model, but zero trust focuses on continuous verification at each access request rather than periodic certification of existing rights.

Why the other options are wrong

A

Defense in depth is a layered security strategy using multiple controls (e.g., firewalls, antivirus, encryption) to protect assets, not specifically about reviewing and certifying user permissions to enforce minimal access.

B

Zero trust is a security model that assumes no implicit trust and continuously verifies every access request, but the question specifically focuses on regular reviews and certifications to enforce minimal permissions, which is the principle of least privilege.

D

Separation of duties prevents fraud by requiring multiple people to complete a sensitive task, but it does not directly address the regular review and certification of user permissions to remove excessive access, which is the core of least privilege.

152
MCQmedium

Your organization is implementing Microsoft Purview to manage data compliance. They need to automatically detect and protect credit card numbers in emails and documents. Which Microsoft Purview feature should they configure?

A.Data Lifecycle Management
B.Data Loss Prevention (DLP)
C.Insider Risk Management
D.Information Protection
AnswerB

Microsoft Purview Data Loss Prevention (DLP) policies are specifically designed to identify, monitor, and protect sensitive information across various locations, including Microsoft 365 services, endpoints, and non-Microsoft cloud apps. These policies leverage sensitive information types (SITs) to automatically detect patterns like credit card numbers, social security numbers, or health records. Upon detection, DLP enforces protective actions such as blocking sharing, notifying users, or encrypting content to prevent data exfiltration and ensure compliance.

Why this answer

Data Loss Prevention (DLP) policies in Microsoft Purview can automatically detect sensitive information like credit card numbers and apply protective actions, such as blocking or encrypting the content. Information Protection refers to sensitivity labels and encryption, but DLP is the feature that uses policies to detect and protect data in transit and at rest. Data Lifecycle Management handles retention and deletion.

Insider Risk Management focuses on user behavior.

153
MCQmedium

You are a security analyst using Microsoft Sentinel. You run the following Kusto query: SecurityAlert | where TimeGenerated > ago(7d) | where AlertName contains "MFA" | summarize Count = count() by bin(TimeGenerated, 1d) | render timechart What does this query do?

A.Counts security alerts containing 'MFA' per day for the last 7 days
B.Lists all identities that triggered MFA alerts
C.Counts distinct users with MFA alerts per day
D.Counts alerts by severity over the last week
AnswerA

Summarize count() by AlertName and time creates a daily count.

Why this answer

The Kusto query filters security alerts containing 'MFA' in the alert name over the last 7 days, counts the number of alerts per day, and renders a timechart. Option B is incorrect because the query counts alerts, not identities. Option C is incorrect because it counts alerts, not distinct users.

Option D is incorrect because the query does not filter by severity.

154
MCQmedium

Your organization is implementing a new policy to ensure that only authorized users can access sensitive financial data stored in Microsoft SharePoint Online. The security team wants to enforce multi-factor authentication (MFA) for all users accessing this data, but only when accessing from outside the corporate network. Which Microsoft Entra ID conditional access policy setting should you configure to meet this requirement?

A.Use app-enforced restrictions for SharePoint
B.Grant access requiring device to be marked as compliant when location is not trusted
C.Grant access requiring multi-factor authentication when the location is not trusted
D.Block access when the location is not trusted
AnswerC

This enforces MFA for external access while allowing internal access without MFA.

Why this answer

A conditional access policy can be configured to require multi-factor authentication only when the location is not trusted, which meets the requirement of enforcing MFA for remote access while allowing trusted network access without MFA. Option A is incorrect because app-enforced restrictions are session controls that do not enforce MFA at sign-in. Option B is incorrect because requiring a compliant device does not directly enforce MFA.

Option D is incorrect because blocking access from untrusted locations would prevent remote access entirely, which is not the requirement.

155
MCQeasy

A company deploys firewalls, intrusion detection systems, and endpoint antivirus software at multiple layers of its network. This strategy is intended to ensure that if one security control fails, others still provide protection. Which security concept does this approach represent?

A.Defense in depth
B.Least privilege
C.Separation of duties
D.Zero trust
AnswerA

Defense in depth is a cybersecurity strategy that employs multiple, overlapping security controls to protect information and systems. This layered approach ensures that if one security mechanism fails or is bypassed, other controls are in place to prevent or detect unauthorized access. The deployment of firewalls and intrusion detection systems, as described, exemplifies this strategy by creating successive barriers against threats.

Why this answer

Defense in depth is a security strategy that layers multiple independent controls—such as firewalls, intrusion detection systems (IDS), and endpoint antivirus—across different network segments. The core principle is that if one layer is breached or fails, subsequent layers continue to provide protection, ensuring no single point of failure compromises the entire security posture.

Exam trap

The trap here is that candidates confuse 'defense in depth' with 'zero trust' because both involve multiple security controls, but zero trust is specifically about eliminating implicit trust through continuous verification, not about layering independent defenses.

Why the other options are wrong

B

The question describes multiple layers of security controls (firewalls, IDS, antivirus) to ensure protection if one fails, which is the definition of defense in depth, not least privilege.

C

Separation of duties is about dividing responsibilities among different people to prevent fraud or error, not about layering security controls to provide redundancy. The question describes multiple security layers, which is defense in depth, not separation of duties.

D

Zero trust is a security model that assumes no implicit trust and requires continuous verification of every access request, not the layered deployment of security controls described in the question.

156
Multi-Selecteasy

A company implements a security policy where employees must use a smart card to log into their workstations. After logging in, they can only access file shares that correspond to their department. Which two security concepts are demonstrated in this scenario?

Select 1 answer
A.Authentication and authorization
B.Identification and accounting
C.Authorization and non-repudiation
D.Confidentiality and integrity
AnswersA

Correct. Smart card login is authentication; then limiting access to department file shares is authorization.

Why this answer

The smart card login verifies the user's identity, which is authentication. The subsequent restriction to department-specific file shares controls what resources the user can access, which is authorization. Non-repudiation is not demonstrated because the scenario lacks any mechanism (such as audit logs or digital signatures) that would prevent the user from denying the login action.

Therefore, only authentication and authorization are demonstrated, making Option A the sole correct answer.

Exam trap

Candidates may mistakenly think that smart cards automatically provide non-repudiation. However, non-repudiation requires additional measures like audit trails or digital signatures, which are not mentioned. The scenario only shows authentication and authorization.

157
MCQeasy

A company subscribes to a SaaS human resources application hosted by an external provider. The provider is responsible for maintaining the physical data centers, network infrastructure, and the underlying application software. The company is responsible for managing user accounts, configuring user permissions, and classifying the data they upload. Which security model does this arrangement primarily describe?

A.Defense in depth
B.Zero Trust
C.Shared responsibility model
D.CIA triad
AnswerC

The shared responsibility model correctly defines the split of security tasks between the cloud provider and the customer based on the service model (IaaS, PaaS, SaaS). In this SaaS example, the provider handles infrastructure, and the customer handles data and access.

Why this answer

The scenario explicitly describes a division of security responsibilities between the SaaS provider and the customer. The provider handles physical security, network infrastructure, and application software (security *of* the cloud), while the company manages user accounts, permissions, and data classification (security *in* the cloud). This is the core definition of the shared responsibility model, which is foundational to cloud computing and directly tested in SC-900.

Exam trap

The trap here is that candidates confuse the shared responsibility model with defense in depth or Zero Trust, because all three involve 'security layers' or 'trust boundaries,' but only the shared responsibility model specifically defines the split of security obligations between a cloud provider and a customer.

Why the other options are wrong

A

The question describes a division of security responsibilities between the provider and the company, which is the essence of the shared responsibility model, not defense in depth. Defense in depth refers to multiple layers of security controls, not the allocation of responsibilities.

B

The question describes a clear division of security responsibilities between the provider and the company, which is the essence of the shared responsibility model. Zero Trust is a security framework that assumes no implicit trust and requires continuous verification, but it does not specifically address the division of responsibilities for different components of a cloud service.

D

The CIA triad (Confidentiality, Integrity, Availability) is a security model for guiding information security policies, but it does not describe the division of responsibilities between a cloud provider and customer. The question specifically asks about the arrangement of responsibilities, which is the shared responsibility model.

158
MCQmedium

An organization uses Microsoft Intune to manage devices. They want to ensure that only devices that are compliant with security policies (e.g., encryption enabled, latest patches) can access corporate email. Which Microsoft Entra feature should they use to enforce this requirement?

A.Conditional Access in Microsoft Entra ID
B.Microsoft Defender for Endpoint
C.Device compliance policies in Microsoft Intune
D.Azure AD Join
AnswerA

Conditional Access can block or allow access based on device compliance status.

Why this answer

Conditional Access in Microsoft Entra ID allows administrators to create policies that enforce access controls based on conditions such as device compliance, as reported by Intune. Only devices that satisfy the compliance requirements (e.g., encryption enabled, latest patches) are granted access to corporate email. Option B (Microsoft Defender for Endpoint) focuses on threat detection and response, not access enforcement.

Option C (Device compliance policies in Microsoft Intune) defines the compliance criteria and marks devices as compliant or non-compliant, but it does not enforce access at the application level—that enforcement is done by Conditional Access. Option D (Azure AD Join) is a device identity registration method, not an access control mechanism.

159
MCQhard

Your organization uses Microsoft Purview to classify sensitive data. You need to create a custom sensitive information type that detects employee IDs matching the pattern 'EMP-XXXXX' (where X is a digit). Which rule pack element must you define?

A.Keyword list
B.Regular expression
C.Data store reference
D.Function
AnswerB

A regex pattern can detect the 'EMP-XXXXX' pattern.

Why this answer

A regular expression (regex) is used to define the custom pattern for employee IDs like 'EMP-XXXXX'. Option A (keyword list) is for exact keywords, not patterns. Option D (function) is for built-in functions, not custom patterns.

Option C (data store reference) is for external data sources, not pattern definition.

160
MCQmedium

A company uses digital signatures to ensure that a sender cannot later deny having sent a message. Which security principle does this primarily address?

A.Confidentiality
B.Integrity
C.Availability
D.Non-repudiation
AnswerD

Digital signatures achieve non-repudiation by cryptographically binding a sender's identity to a message. The sender uses their unique private key to sign a hash of the document, creating a verifiable digital fingerprint. This signature, which can be validated by anyone with the sender's corresponding public key, provides irrefutable proof of origin and consent, ensuring the sender cannot legitimately deny having sent the message or performed the action.

Why this answer

Digital signatures use asymmetric cryptography (e.g., RSA or ECDSA) to bind a signer's identity to a message. The signature is created with the sender's private key and verified with their public key, providing cryptographic proof of origin. This directly enforces non-repudiation because the sender cannot plausibly deny having signed the message, as only they possess the private key.

Exam trap

The trap here is that candidates often confuse digital signatures with encryption, assuming they primarily provide confidentiality, when in fact signatures focus on authentication and non-repudiation, while encryption (e.g., using the recipient's public key) is what ensures confidentiality.

Why the other options are wrong

A

Digital signatures prevent a sender from denying having sent a message, which is non-repudiation, not confidentiality. Confidentiality ensures that data is not disclosed to unauthorized parties, which is not the primary concern here.

B

Digital signatures primarily ensure non-repudiation, not integrity. While digital signatures do provide integrity by detecting tampering, the question specifically asks about preventing the sender from denying having sent the message, which is the definition of non-repudiation.

C

Non-repudiation ensures the sender cannot deny sending a message, which is not addressed by availability. Availability ensures systems and data are accessible when needed, not the undeniability of actions.

161
MCQhard

Refer to the exhibit. You are configuring a sensitivity label in Microsoft Purview. The label is set to automatically apply when credit card numbers are detected. However, users report that the label is not being applied to documents containing credit card numbers. What is the most likely cause?

A.The encryption is misconfigured
B.The label is not published to a label policy
C.The auto-labeling condition is incorrect
D.The user permissions are missing
AnswerB

A sensitivity label, once created and configured, must be explicitly published through a label policy to become active and available for users or automatic application. Without being included in a policy and assigned to specific users or groups, the label remains in a draft state and cannot be applied, either manually or automatically, to documents or emails. This publishing step is critical for the label's operational deployment and is the most common reason for a configured label not being applied.

Why this answer

The auto-labeling rule requires a condition, but the label may not be published to users. However, the exhibit shows no policy assignment. The most likely cause is that the label is not published to a label policy (option B).

Option A is incorrect because encryption is configured. Option C is incorrect because the condition is valid. Option D is incorrect because user permissions are defined.

162
MCQmedium

An organization is redesigning its security architecture based on the Zero Trust model. Which principle requires that every access request must be fully authenticated, authorized, and encrypted before granting access, regardless of the network location?

A.Assume breach
B.Least privilege
C.Verify explicitly
D.Trust but verify
AnswerC

The 'Verify explicitly' principle is a cornerstone of the Zero Trust model, mandating that every access request to any resource must be fully authenticated, authorized, and validated based on all available contextual signals. This includes user identity, device health, location, service, and data classification, ensuring no implicit trust is ever granted. It requires continuous, real-time evaluation before granting access, regardless of whether the request originates inside or outside the traditional network perimeter.

Why this answer

The Zero Trust model is built on three core principles: verify explicitly, least privilege, and assume breach. The principle that mandates every access request—regardless of whether it originates from inside or outside the corporate network—must be fully authenticated, authorized, and encrypted before granting access is 'verify explicitly'. This means using strong authentication methods (e.g., multifactor authentication), continuous validation of authorization (e.g., Conditional Access policies), and enforcing encryption (e.g., TLS 1.3) for every request, not just those from untrusted locations.

Exam trap

Microsoft often tests the distinction between 'verify explicitly' and 'trust but verify', where candidates mistakenly choose 'trust but verify' because it sounds like a security principle, but the Zero Trust model explicitly rejects any form of implicit trust, requiring verification for every request regardless of network location.

How to eliminate wrong answers

Option A is wrong because 'assume breach' is a Zero Trust principle that focuses on minimizing the blast radius and segmenting access, not on the upfront verification of each request; it assumes a breach has already occurred and designs defenses accordingly. Option B is wrong because 'least privilege' is a principle that limits user and device access rights to only what is necessary to perform a task, but it does not address the requirement for full authentication, authorization, and encryption of every request. Option D is wrong because 'trust but verify' is an outdated security model that implicitly trusts users or devices inside the network perimeter and only verifies when necessary, which contradicts the Zero Trust mandate to never trust and always verify explicitly.

163
MCQeasy

A company implements a security model where no user or device is automatically trusted, even if they are inside the corporate network. Every access request must be authenticated, authorized, and encrypted before granting access, regardless of the request origin. This model is known as:

A.Defense in depth
B.Perimeter security
C.Zero Trust
D.Least privilege
AnswerC

Zero Trust is the security model that fundamentally assumes no user, device, or application should be automatically trusted, regardless of its location inside or outside the network perimeter. It mandates explicit verification for every access request, ensuring identity and device health are validated before granting access. This model strictly enforces least privilege access and operates under an 'assume breach' mentality, continuously monitoring and re-validating trust throughout a session.

Why this answer

Zero Trust is a security model that explicitly assumes no implicit trust based on network location. Every access request must be authenticated, authorized, and encrypted, regardless of whether it originates from inside or outside the corporate network. This aligns with the core Zero Trust principle of 'never trust, always verify'.

Exam trap

The trap here is that candidates often confuse Zero Trust with Defense in depth, assuming that multiple layers of security automatically remove implicit trust, but Zero Trust specifically targets the assumption of trust based on network location.

Why the other options are wrong

A

Defense in depth is a layered security strategy using multiple controls, but it does not inherently reject automatic trust for internal users or devices. The question specifically describes the core principle of Zero Trust: never trust, always verify.

B

Perimeter security relies on a trusted internal network and a defended boundary, but the question explicitly states that no user or device is automatically trusted even inside the network, which contradicts the perimeter model.

D

Least privilege is a principle that restricts users to only the permissions necessary for their tasks, but it does not address the core concept of never trusting any request by default, regardless of origin, which is the defining characteristic of Zero Trust.

164
MCQeasy

A user reports that they cannot access a sensitive document in SharePoint. The document has a sensitivity label of 'Highly Confidential' applied. The user is a member of the 'Finance' group, which has the label permission. However, the user is located in a country that is blocked by a conditional access policy. What is the most likely reason the user cannot access the document?

A.The user does not have the required sensitivity label permission
B.The user does not have a Microsoft 365 E5 license
C.A conditional access policy is blocking access based on the user's location
D.The document does not have a sensitivity label applied
AnswerC

Conditional Access policies evaluate various signals, including user location, device compliance, and sign-in risk, to determine if access should be granted or blocked. A policy configured to restrict access to sensitive documents from untrusted or unapproved geographic locations would explicitly override any inherent sensitivity label permissions, directly causing the user's inability to access the document.

Why this answer

Although the user is a member of the Finance group and has the required sensitivity label permission, the conditional access policy blocks access based on the user's location (country). Conditional access policies can override label permissions. Option A is incorrect because the user does have the required label permission.

Option B is incorrect because no licensing issue is indicated; Microsoft 365 E5 is not required for sensitivity labels. Option D is incorrect because the document does have a sensitivity label applied.

165
MCQmedium

A user authenticates with a smart card and is then granted access to a specific database based on their job role in the finance department. Which security concept describes the process of determining what the authenticated user is allowed to do?

A.Authentication
B.Authorization
C.Accounting
D.Encryption
AnswerB

Authorization is the critical security process that determines what an authenticated user is permitted to do or access within a system. After a user successfully authenticates with a smart card, the system consults predefined policies, roles, and permissions to evaluate whether that user has the necessary rights to perform a specific action, such as accessing a particular database. This evaluation directly leads to the decision of whether access is granted or denied.

Why this answer

Authorization is the security concept that determines what an authenticated user is permitted to do. In this scenario, after the user authenticates with a smart card, the system checks their job role in the finance department against access control lists (ACLs) or role-based access control (RBAC) policies to grant access to the specific database. This is distinct from authentication, which only verifies identity.

Exam trap

The trap here is confusing authentication with authorization; candidates often pick 'Authentication' because they focus on the smart card step, but the question explicitly asks about determining what the user is allowed to do, which is authorization.

How to eliminate wrong answers

Option A is wrong because authentication is the process of verifying the user's identity (e.g., via smart card credentials), not determining what they are allowed to do. Option C is wrong because accounting (or auditing) tracks and logs user activities for compliance and monitoring, but does not enforce permissions. Option D is wrong because encryption protects data at rest or in transit by converting it into ciphertext, but does not control access rights after decryption.

166
MCQmedium

Your organization is implementing a Zero Trust security model. Which Microsoft Entra ID feature should you use to verify that users and devices meet specific health requirements before granting access to corporate resources?

A.Privileged Identity Management (PIM)
B.Identity Governance
C.Identity Protection
D.Conditional Access
AnswerD

Conditional Access evaluates signals like device compliance to enforce access controls.

Why this answer

Conditional Access policies can enforce device compliance, MFA, and other health checks before granting access. Option A is wrong because Privileged Identity Management manages just-in-time admin roles, not device health. Option B is wrong because Identity Governance manages access reviews and lifecycle, not real-time health verification.

Option C is wrong because Identity Protection detects risks but does not enforce device health requirements.

167
MCQeasy

An organization wants to use a cloud-based SIEM to collect security data from multiple sources, including on-premises servers and cloud applications. Which Microsoft solution should they choose?

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

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 diverse sources across an organization's entire digital estate, including Azure, on-premises, and other clouds, through built-in data connectors. Sentinel then uses AI and machine learning to detect, investigate, and respond to threats efficiently, making it ideal for comprehensive security event collection and analysis.

Why this answer

Microsoft Sentinel is a cloud-native SIEM that can ingest data from various sources. Defender for Cloud is for cloud security posture management. Microsoft 365 Defender is for detection and response across Microsoft 365.

Intune is for device management.

168
MCQhard

Your company uses Microsoft Purview Information Protection to classify sensitive data. A user reports that when they try to share a document containing a credit card number via email, the email is blocked. Which Purview feature is most likely causing this behavior?

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

Microsoft Purview Data Loss Prevention (DLP) policies are specifically designed to identify, monitor, and automatically protect sensitive information across various locations, including email. They utilize sensitive information types (SITs) to detect specific data patterns, such as credit card numbers, and can enforce actions like blocking email transmission, notifying users, or encrypting content to prevent unauthorized sharing. This capability directly addresses the requirement to detect sensitive data and block its sharing via email.

Why this answer

A Data Loss Prevention (DLP) policy in Microsoft Purview is specifically designed to detect and block sensitive data—such as credit card numbers—from being shared via email. When a user attempts to send a document containing a credit card number, the DLP policy scans the email content and attachments, matches the credit card pattern (e.g., using the predefined Sensitive Info Type for credit card numbers), and enforces an action like blocking the message. This is the most likely cause of the email being blocked.

Exam trap

The trap here is that candidates often confuse Sensitivity labels with DLP policies, thinking labels alone can block emails, but labels only apply classification and protection—they require a DLP policy to enforce blocking actions based on content detection.

How to eliminate wrong answers

Option B is wrong because the Audit log records user and admin activities for compliance and forensic analysis but does not actively block or prevent data sharing—it is a passive logging feature. Option C is wrong because Sensitivity labels apply classification and protection (e.g., encryption or visual markings) to documents and emails, but they do not inherently block email transmission based on content patterns like credit card numbers; they require a DLP policy to enforce actions on labeled content. Option D is wrong because Retention labels manage how long data is kept or when it should be deleted, and they do not scan or block email content for sensitive data like credit card numbers.

169
Multi-Selectmedium

Which TWO of the following are benefits of using Microsoft Entra ID for identity management?

Select 2 answers
A.Single sign-on (SSO) to cloud applications
B.Password hash synchronization
C.Multi-factor authentication (MFA)
D.Automated security incident detection
E.Replacement of on-premises Active Directory
AnswersA, C

Single sign-on (SSO) to cloud applications is a core benefit of Microsoft Entra ID, enabling users to authenticate once with their Entra ID credentials and gain seamless access to thousands of integrated Software-as-a-Service (SaaS) applications. This capability significantly enhances user productivity by eliminating the need to remember multiple passwords and repeatedly log in, while also improving security by centralizing identity management. Entra ID acts as the central identity provider, issuing secure tokens after initial authentication.

Why this answer

Single sign-on (SSO) and multi-factor authentication (MFA) are key benefits of Entra ID. Password hash synchronization is a feature of Entra Connect, not a direct benefit. On-premises Active Directory is a separate service.

Security incident detection is more aligned with Microsoft Sentinel or Defender.

170
MCQeasy

Which Microsoft cloud service provides a unified data governance solution that helps you manage and protect data across your entire data estate, including multi-cloud and on-premises?

A.Microsoft Defender for Cloud
B.Microsoft Intune
C.Microsoft Sentinel
D.Microsoft Purview
AnswerD

Purview provides data governance, classification, and lineage.

Why this answer

Microsoft Purview is the correct answer because it is a unified data governance service that provides visibility into data assets across on-premises, multi-cloud, and SaaS environments. It enables data classification, sensitive data discovery, and policy-based access control to manage and protect the entire data estate, aligning with the question's requirement for a comprehensive governance solution.

Exam trap

The trap here is that candidates often confuse Microsoft Purview with Microsoft Defender for Cloud or Microsoft Sentinel, because all three involve 'protection' or 'security,' but Purview is specifically a data governance and compliance solution, not a security monitoring or posture management tool.

How to eliminate wrong answers

Option A is wrong because Microsoft Defender for Cloud is a cloud security posture management (CSPM) and workload protection platform, not a data governance solution; it focuses on securing cloud infrastructure and detecting threats, not on managing and protecting data across the data estate. Option B is wrong because Microsoft Intune is a mobile device management (MDM) and mobile application management (MAM) service for endpoint management and compliance, not a unified data governance tool for multi-cloud and on-premises data. Option C is wrong because Microsoft Sentinel is a cloud-native SIEM (Security Information and Event Management) and SOAR (Security Orchestration, Automation, and Response) solution for security analytics and threat detection, not a data governance service for managing and protecting data assets.

171
MCQeasy

A company uses a cloud-based email service. The service provider ensures that the physical data centers are secure and that the email platform is patched and available. The company is responsible for managing user accounts and ensuring that employees use strong passwords. This division of responsibilities is an example of which concept?

A.Defense in depth
B.Shared responsibility model
C.Zero Trust
D.Principle of least privilege
AnswerB

The Shared Responsibility Model is a fundamental framework in cloud computing that explicitly delineates security obligations between the cloud service provider (CSP) and the customer. The CSP is responsible for the security *of* the cloud, encompassing the underlying infrastructure, physical facilities, and host operating systems. Conversely, the customer is accountable for security *in* the cloud, which includes their data, applications, network configurations, and identity and access management. This model ensures clarity on who manages what aspects of security, varying based on the service model adopted.

Why this answer

The scenario describes a clear division of security responsibilities between the cloud service provider (securing physical data centers, patching the platform) and the customer (managing user accounts, enforcing strong passwords). This is the core definition of the shared responsibility model, which is a foundational concept in cloud computing (as defined by NIST SP 800-145 and adopted by major providers like Microsoft 365). The model explicitly delineates that the provider is responsible for 'security of the cloud' (physical hosts, network, hypervisor) while the customer is responsible for 'security in the cloud' (user identities, data, client endpoints).

Exam trap

The trap here is that candidates confuse the shared responsibility model with defense in depth because both involve multiple security layers, but the question specifically tests the contractual and operational division of security tasks between cloud provider and customer, not the stacking of controls.

How to eliminate wrong answers

Option A is wrong because defense in depth is a layered security strategy using multiple controls (e.g., firewalls, antivirus, encryption) to protect assets, not a division of responsibilities between two parties. Option C is wrong because Zero Trust is a security model based on 'never trust, always verify'—it assumes no implicit trust and requires continuous authentication for every access request, not a contractual split of duties. Option D is wrong because the principle of least privilege is an access control concept that grants users only the minimum permissions needed to perform their tasks, not a framework for dividing security obligations between a provider and a customer.

172
MCQmedium

Your organization wants to use Microsoft Entra ID to provide single sign-on (SSO) for a third-party SaaS application. What must you configure in Microsoft Entra ID?

A.Identity Protection policy
B.Conditional Access policy
C.Enterprise application registration
D.Self-service password reset
AnswerC

You register the SaaS app as an enterprise application and configure SSO.

Why this answer

Enterprise application registration. To enable SSO for a third-party SaaS application in Microsoft Entra ID, you must register the application as an enterprise application and configure SSO settings. Option A is incorrect because Identity Protection policies are for detecting and responding to identity risks, not for SSO configuration.

Option B is incorrect because Conditional Access policies enforce access controls based on conditions, but the prerequisite for SSO is the application registration. Option D is incorrect because self-service password reset is unrelated to SSO setup.

173
MCQmedium

A company's security team has adopted a strategy that assumes a breach has already occurred. They implement network segmentation, apply strict least privilege access, continuously verify all access requests, and never trust users or devices solely because they are inside the network perimeter. This approach best describes which security model?

A.Zero Trust
B.Shared responsibility model
C.Defense in depth
D.Identity and Access Management (IAM)
AnswerA

Zero Trust is a strategic security model predicated on the principle of "never trust, always verify." It fundamentally assumes that a breach is inevitable or has already occurred, requiring explicit verification for every access request, regardless of origin or prior authorization. This model mandates continuous validation of identity, device health, and service context, while enforcing least privilege access to minimize potential damage from successful intrusions.

Why this answer

The scenario explicitly describes the core tenets of the Zero Trust model: assume breach, enforce least privilege, segment networks, and never trust any user or device based solely on network location. Zero Trust, as defined by NIST SP 800-207, mandates continuous verification of every access request, treating every request as if it originates from an untrusted network, which directly matches the company's strategy.

Exam trap

The trap here is that candidates confuse 'Defense in depth' with Zero Trust because both involve multiple security controls, but Defense in depth does not require the 'assume breach' mindset or the elimination of implicit trust based on network perimeter, which is the defining characteristic of Zero Trust.

How to eliminate wrong answers

Option B (Shared responsibility model) is wrong because it describes the division of security responsibilities between a cloud provider and a customer (e.g., AWS or Azure), not a security architecture that assumes breach and verifies every request. Option C (Defense in depth) is wrong because it relies on multiple layers of security controls (e.g., firewalls, IDS/IPS) but does not inherently require the 'never trust, always verify' principle or the assumption of an existing breach; it is a layered approach, not a trust model. Option D (Identity and Access Management - IAM) is wrong because IAM is a subset of security controls focused on managing identities and access policies (e.g., Azure AD, RBAC), not a comprehensive security model that dictates network segmentation and continuous verification of all access requests.

174
MCQmedium

A healthcare organization must comply with HIPAA regulations. They use Microsoft Purview to classify and label patient data. Which Microsoft Purview capability helps them enforce data protection policies automatically?

A.eDiscovery
B.Audit logs
C.Sensitivity labels
D.Data loss prevention (DLP) policies
AnswerD

Data loss prevention (DLP) policies in Microsoft Purview can automatically detect and protect sensitive data like health information.

Why this answer

Data loss prevention (DLP) policies in Microsoft Purview can automatically detect and protect sensitive data like health information. Option A is wrong because eDiscovery focuses on searching content for legal purposes, not automatic enforcement. Option B is wrong because audit logs record events but don't enforce policies.

Option C is wrong because sensitivity labels apply classification but not automatic protection actions.

175
MCQmedium

Refer to the exhibit. A security administrator is reviewing an Azure Resource Manager template for a virtual machine. What is the purpose of the 'identity' section shown?

A.It enables system-assigned managed identity for the VM.
B.It configures multi-factor authentication for the VM.
C.It creates a new managed identity named 'id1' in the resource group.
D.It assigns a user-assigned managed identity to the VM so it can access other Azure resources securely.
AnswerD

The identity section with 'type': 'UserAssigned' and a reference to an existing managed identity enables the VM to use that user-assigned managed identity to access Azure resources securely.

Why this answer

The 'identity' section in this Azure Resource Manager template assigns a user-assigned managed identity to the virtual machine. The 'type' is set to 'UserAssigned' and the 'userAssignedIdentities' property references an existing managed identity by its resource ID. This allows the VM to authenticate to Azure services without storing credentials, using the specified identity.

Option D is correct because it accurately describes this behavior.

176
MCQeasy

You are reviewing a conditional access policy in Microsoft Entra ID. The policy is enabled, applies to all cloud apps, and is configured to include users assigned to the Global Administrator or Exchange Administrator roles. Which users are affected by this policy?

A.All users who are members of any Azure AD administrative role
B.All users who are members of the Global Administrator role only
C.All users who are members of the Global Administrator or Exchange Administrator role
D.All users in the organization
AnswerC

Correct. The policy includes these two roles specifically.

Why this answer

The conditional access policy specifies 'includeRoles' with the Global Administrator and Exchange Administrator roles, meaning only users assigned to either of those roles are affected. Option A is incorrect because the policy does not apply to all administrative roles, only the two specified. Option B is incorrect because it applies to both Global Administrator and Exchange Administrator, not just Global Administrator.

Option D is incorrect because the policy does not apply to all users in the organization.

177
MCQeasy

A healthcare organization uses digital signatures on electronic medical records to ensure that the records have not been tampered with during transmission. Which security goal is primarily being addressed by this practice?

A.Confidentiality
B.Integrity
C.Availability
D.Non-repudiation
AnswerB

Integrity ensures data has not been altered by unauthorized parties. Digital signatures provide a mechanism to detect any changes, thus preserving integrity.

Why this answer

Digital signatures use asymmetric cryptography (e.g., RSA or ECDSA) to create a hash of the electronic medical record, which is then encrypted with the signer's private key. Any tampering with the record during transmission will cause the hash verification to fail, directly ensuring data integrity. This practice does not primarily address confidentiality (which requires encryption) or availability (which focuses on uptime).

Exam trap

The trap here is that candidates often confuse integrity with non-repudiation, but the question's focus on 'tampered with during transmission' directly points to integrity, not the ability to prove who signed it.

How to eliminate wrong answers

Option A is wrong because confidentiality is about preventing unauthorized access to data, typically achieved through encryption (e.g., AES or TLS), not through digital signatures which do not hide the content. Option C is wrong because availability ensures that systems and data are accessible when needed, often via redundancy or disaster recovery, and digital signatures do not contribute to uptime. Option D is wrong because non-repudiation prevents the signer from denying their action, which is a secondary benefit of digital signatures, but the question specifically asks about tamper detection during transmission, which is the core integrity goal.

178
Multi-Selectmedium

Which TWO components are part of the 'Zero Trust' security model? (Choose two.)

Select 2 answers
A.Least privilege
B.VPN access
C.Password complexity
D.Verify explicitly
E.Perimeter-based security
AnswersA, D

Limit access to only what is needed.

Why this answer

Correct answers are A and D: Least privilege ensures users have only the minimum access needed, and Verify explicitly assumes every access request is a potential threat. Option B (VPN access) is a network access method, not a Zero Trust principle. Option C (password complexity) is a security control but not a core component of the Zero Trust model.

Option E (perimeter-based security) is the traditional model that Zero Trust replaces.

179
MCQmedium

A company is migrating its on-premises workloads to Azure. The CISO wants to understand the division of security responsibilities between Microsoft and the customer across cloud service models. For which cloud service model does the customer have the most security responsibility?

A.Software as a Service (SaaS)
B.Platform as a Service (PaaS)
C.Infrastructure as a Service (IaaS)
D.On-premises
AnswerC

Infrastructure as a Service (IaaS) is the correct choice for migrating existing on-premises workloads to Azure because it provides the most control over the underlying operating systems, applications, and data, closely mirroring an on-premises environment. In IaaS, the customer is responsible for securing the operating system, applications, network configuration, and data, while Azure manages the physical infrastructure, virtualization, and networking fabric. This model facilitates a "lift-and-shift" approach, allowing the CISO to maintain significant security responsibility and control over their familiar stack within the cloud.

Why this answer

In the Infrastructure as a Service (IaaS) model, the customer is responsible for securing the operating system, applications, data, and network configurations, while Microsoft only secures the physical datacenter, host servers, and hypervisor. This gives the customer the most security responsibility compared to PaaS or SaaS, where Microsoft manages more of the stack.

Exam trap

The trap here is that candidates often confuse 'most responsibility' with 'most control' and incorrectly pick on-premises (Option D), forgetting that the question explicitly asks about cloud service models, where IaaS gives the customer the greatest security responsibility among the cloud options.

Why the other options are wrong

A

In SaaS, the customer has the least security responsibility because Microsoft manages the entire stack, including applications, data, and infrastructure. The question asks for the model with the most customer responsibility, which is IaaS.

B

In PaaS, the customer manages applications and data, while Microsoft handles the runtime, middleware, OS, and infrastructure. This gives the customer less security responsibility than IaaS, where they manage everything from the OS upward.

180
MCQeasy

You run the PowerShell command shown in the exhibit. What is the purpose of this command?

A.Applies a sensitivity label to a document
B.Encrypts a document using Azure Information Protection
C.Removes a sensitivity label from a document
D.Exports audit logs for labeled documents
AnswerA

Correct. The PowerShell command assigns a sensitivity label to the document.

Why this answer

The command assigns a sensitivity label to a document. Option B is wrong because the command does not encrypt the document; labeling may include encryption, but the cmdlet itself only assigns the label. Option C is wrong because it does not remove a label; the command applies a label.

Option D is wrong because it does not export audit logs.

Exam trap

Candidates often confuse applying a sensitivity label with encryption. The Set-AIPFileLabel cmdlet applies a label, which may or may not include encryption depending on the label configuration.

181
Multi-Selectmedium

Which TWO are principles of the Zero Trust security model?

Select 2 answers
A.Verify explicitly
B.Trust everything inside the network
C.Assume breach
D.Use a VPN for remote access
E.Layer defenses
AnswersA, C

Zero Trust requires verifying every access request explicitly.

Why this answer

Options A and C are correct. Zero Trust principles include 'verify explicitly' and 'assume breach'. Option B contradicts Zero Trust as it trusts everything inside the network.

Option D describes a traditional VPN-based approach, which is not a Zero Trust principle. Option E is a principle of defense in depth, not Zero Trust.

182
MCQmedium

A company wants to ensure that all users access corporate resources using multi-factor authentication (MFA). Which Microsoft Entra ID feature should they configure to enforce MFA for all users?

A.Conditional Access
B.Privileged Identity Management
C.Identity Protection
D.Security defaults
AnswerA

Conditional Access policies are the primary mechanism in Azure AD to enforce specific access requirements, such as multi-factor authentication (MFA), based on various conditions. These policies can be configured to target all users and all cloud apps, requiring MFA for every sign-in attempt to corporate resources. This granular control allows administrators to define precise conditions, like device state, location, or sign-in risk, under which MFA is mandatory, ensuring comprehensive protection for all access.

Why this answer

Conditional Access policies allow granular control over authentication requirements, including MFA enforcement. Security defaults provide basic MFA but are less flexible. Identity Protection detects risks but does not enforce MFA directly.

Privileged Identity Management manages roles, not MFA enforcement.

183
MCQeasy

A company implements a security measure to ensure that only authorized employees can view sensitive customer records. Which principle of the CIA triad does this measure primarily protect?

A.Confidentiality
B.Integrity
C.Availability
D.Accountability
AnswerA

Confidentiality, a cornerstone of the CIA triad, ensures that information is accessible only to those authorized to view it. This principle directly addresses the company's security measure to limit access to specific employees, preventing unauthorized disclosure of sensitive data. Implementing strong access controls, encryption, and data classification are typical methods to uphold confidentiality, aligning perfectly with the goal of restricting information access.

Why this answer

Confidentiality ensures that sensitive information is accessible only to authorized individuals. By restricting access to customer records to authorized employees, the company directly prevents unauthorized disclosure, which is the core goal of confidentiality in the CIA triad.

Exam trap

The trap here is that candidates often confuse confidentiality with integrity, thinking that preventing unauthorized changes is the same as preventing unauthorized viewing, but confidentiality is about secrecy, not data accuracy.

Why the other options are wrong

B

Integrity ensures data accuracy and prevents unauthorized modification, not restriction of access. The question focuses on limiting who can view records, which is confidentiality.

C

The question specifies that the measure ensures only authorized employees can view records, which directly protects confidentiality (preventing unauthorized access), not availability (ensuring access when needed).

D

Accountability is not a principle of the CIA triad; the CIA triad consists of Confidentiality, Integrity, and Availability. This question specifically asks about the CIA triad, so Accountability is not a valid option.

184
Multi-Selecteasy

Which TWO of the following are types of identity in Microsoft Entra ID? (Select two.)

Select 2 answers
A.Synchronized identity
B.Cloud-only identity
C.Guest identity
D.Managed identity
E.Hybrid identity
AnswersA, B

User account synchronized from on-premises Active Directory.

Why this answer

Options A and B are correct. Microsoft Entra ID supports two primary types of identity: synchronized identity (A) and cloud-only identity (B). A synchronized identity is created in an on-premises directory and synchronized to Entra ID.

A cloud-only identity is created and managed entirely in Entra ID. Option C, Guest identity, is a type of external identity used for B2B collaboration, but it is not a primary identity type. Option D, Managed identity, is a service principal used for Azure resources to authenticate, not a user identity type.

Option E, Hybrid identity, is a term for using both on-premises and cloud identities but is not a distinct identity type.

185
MCQeasy

Refer to the exhibit. A security analyst runs this Kusto Query Language (KQL) query in Microsoft Sentinel. What is being identified?

B.Successful sign-ins in the last day.
C.Sign-in attempts from unknown IP addresses.
D.Sign-in attempts by disabled user accounts.
AnswerD

ResultType 50057 corresponds to 'User account is disabled', so this query identifies sign-in attempts by disabled accounts.

Why this answer

The query filters sign-in logs from the last day with ResultType 50057, which indicates that the user account is disabled. Therefore, the query is identifying sign-in attempts by disabled user accounts. Option A is incorrect because MFA failures have different result types (e.g., 500121, 50074).

Option B is incorrect because successful sign-ins have ResultType 0. Option C is incorrect because unknown IP addresses are not identified by ResultType 50057; they would involve other fields or result types.

186
MCQeasy

A company's security policy requires that customer data must only be accessible by authorized sales representatives. Which security principle does this requirement directly enforce?

A.Integrity
B.Availability
C.Confidentiality
D.Non-repudiation
AnswerC

Confidentiality is the fundamental security principle that ensures information is not disclosed to unauthorized individuals, entities, or processes. It directly addresses the requirement of limiting access to customer data only to those who are explicitly authorized, typically through mechanisms like encryption, access control lists (ACLs), and the principle of least privilege. This principle is paramount for protecting sensitive information from unauthorized viewing or exposure, aligning perfectly with the stated security policy.

Why this answer

The principle of confidentiality ensures that information is accessible only to authorized individuals or systems. In this scenario, restricting access to customer data to only authorized sales representatives aligns with maintaining confidentiality. The other options are incorrect: Integrity ensures data is not improperly modified, Availability ensures systems are operational, and Non-repudiation ensures actions cannot be denied.

Why the other options are wrong

A

The requirement to restrict access to customer data to authorized sales representatives directly enforces confidentiality, not integrity. Integrity ensures data is not tampered with or modified by unauthorized parties, but the primary goal here is preventing unauthorized access.

D

Non-repudiation ensures that a party cannot deny having performed an action (e.g., signing a document), but the requirement to restrict access to customer data is about preventing unauthorized disclosure, which is confidentiality.

187
MCQeasy

A user downloads a software update from a company's internal website. The update file is hashed, and the hash value is published on a separate secure page. After downloading, the user computes the hash of the downloaded file and compares it to the published hash. The two values match. Which security concept is primarily demonstrated by this comparison?

A.Confidentiality
B.Integrity
C.Availability
D.Authentication
AnswerB

Integrity ensures data has not been tampered with or corrupted during transit or storage. When a user downloads a software update, comparing its cryptographic hash (e.g., SHA256) with a known, trusted hash value provided by the company directly verifies that the file's contents are exactly as intended. This process specifically confirms the data's integrity, ensuring the downloaded software is free from unauthorized modifications or accidental damage.

Why this answer

Hashing is a one-way cryptographic function that produces a fixed-size digest from input data. By comparing the computed hash of the downloaded file to the published hash, the user verifies that the file has not been altered during transit or storage. This directly demonstrates the security concept of integrity, which ensures data has not been tampered with or corrupted.

Exam trap

The trap here is that candidates often confuse integrity with authentication, mistakenly thinking that verifying a hash proves the file's origin (authentication) rather than its unaltered state (integrity).

Why the other options are wrong

A

The scenario involves verifying that the file has not been altered, which is a matter of data integrity, not confidentiality. Confidentiality is about preventing unauthorized access, not ensuring data remains unchanged.

C

Availability ensures that resources are accessible when needed, but comparing hashes verifies that the file has not been altered, which is a matter of integrity, not availability.

D

Authentication verifies the identity of a user or system, not the integrity of data. Comparing hashes ensures the file hasn't been altered, which is integrity, not authentication.

188
MCQeasy

A security administrator is explaining the shared responsibility model to a new team member. The company uses a Software-as-a-Service (SaaS) application such as Microsoft 365. For which of the following items is the customer primarily responsible under this model?

A.Physical security of the data center hosting the SaaS application
B.Patching the hypervisor that runs the SaaS infrastructure
C.Managing user access and classifying data stored in the service
D.Applying security updates to the SaaS application itself
AnswerC

Managing user access and classifying data stored within the SaaS application are critical customer responsibilities. The customer defines who can access their organizational data, what permissions they have, and how sensitive that data is, directly impacting data governance and compliance. This ensures that customer-specific information remains secure and properly handled according to internal policies and regulatory mandates.

Why this answer

In the shared responsibility model for SaaS like Microsoft 365, the customer is responsible for managing user access (e.g., configuring Azure AD roles, conditional access policies, and multi-factor authentication) and classifying data stored in the service (e.g., applying sensitivity labels via Microsoft Purview Information Protection). The provider manages the underlying infrastructure, including physical security, hypervisor patching, and application updates.

Exam trap

The trap here is that candidates often confuse operational tasks like patching or physical security with customer responsibilities, failing to recognize that in SaaS the provider handles all infrastructure and application maintenance, leaving only identity and data governance to the customer.

How to eliminate wrong answers

Option A is wrong because physical security of the data center is the sole responsibility of the cloud provider (Microsoft) in the SaaS model; the customer has no physical access or control. Option B is wrong because patching the hypervisor is an infrastructure-layer task managed entirely by the provider, as the customer only interacts with the application layer. Option D is wrong because applying security updates to the SaaS application itself is performed by the provider; the customer is only responsible for configuring application-level settings and managing their own data.

189
MCQeasy

A healthcare organization stores sensitive patient records in a cloud database. The database is encrypted at rest using AES-256. If an attacker gains access to the physical storage media, they cannot read the data. Which security concept does this encryption primarily provide?

A.Confidentiality
B.Integrity
C.Availability
D.Authorization
AnswerA

Encryption is a primary control for ensuring confidentiality by transforming data into an unreadable format, known as ciphertext. This process prevents unauthorized individuals from accessing or understanding the sensitive patient records, even if they manage to intercept or steal the encrypted data. Only authorized parties possessing the correct decryption key can revert the data to its original, readable form, thereby protecting against unauthorized disclosure.

Why this answer

Encryption at rest using AES-256 ensures that data stored on physical media is unreadable without the decryption key. If an attacker gains physical access to the storage media, the ciphertext cannot be deciphered, directly protecting the secrecy of the data. This aligns with the security goal of confidentiality, which prevents unauthorized disclosure of information.

Exam trap

The trap here is that candidates confuse encryption at rest with integrity controls, mistakenly thinking encryption prevents modification, when in fact encryption only ensures confidentiality and does not provide tamper detection.

Why the other options are wrong

B

Encryption at rest protects data from being read, which is a confidentiality concern, not integrity. Integrity ensures data is not tampered with, but encryption alone does not prevent modification.

C

Encryption at rest protects data from being read, which is a confidentiality concern, not availability. Availability ensures data is accessible when needed, which encryption does not directly address.

D

Authorization controls who can access the data, but encryption at rest protects data from being read even if physical access is gained. The question asks about reading data from physical media, which is a confidentiality issue, not authorization.

190
MCQeasy

A company hosts a mission-critical customer portal on Azure virtual machines. To ensure continuous availability, they deploy the application across two separate Azure regions. If one region experiences a failure, traffic is automatically routed to the other region with minimal disruption. Which security goal is primarily being addressed by this architecture?

A.Confidentiality
B.Integrity
C.Availability
D.Non-repudiation
AnswerC

Deploying a mission-critical customer portal across multiple Azure regions with automatic failover directly addresses the 'A' in the CIA triad: Availability. This strategy ensures that the portal remains continuously accessible and operational for authorized users, even if an entire geographic region experiences a catastrophic outage. The primary objective is to minimize downtime and provide uninterrupted service, which is paramount for mission-critical systems.

Why this answer

Deploying a mission-critical application across two Azure regions with automatic traffic routing directly addresses the security goal of availability. This architecture ensures that if one region fails, the application remains accessible from the other region, minimizing downtime. Azure Traffic Manager or Azure Front Door can be used to route traffic based on priority or latency, providing high availability and disaster recovery.

Exam trap

The trap here is that candidates may confuse high availability (availability goal) with disaster recovery or think that multi-region deployment primarily protects data confidentiality or integrity, when in fact it is designed to ensure continuous service uptime.

Why the other options are wrong

A

Confidentiality ensures data is accessible only to authorized users, but the described architecture focuses on maintaining service uptime across regions, which is a core availability concern.

B

Integrity ensures data is not tampered with, but the scenario describes deploying across regions for automatic failover, which directly addresses availability, not integrity.

D

Non-repudiation ensures that actions or transactions cannot be denied by the parties involved, typically through digital signatures or audit logs. The scenario describes a multi-region deployment for failover, which directly addresses availability, not non-repudiation.

191
MCQmedium

A company has implemented a security model where every access request is fully authenticated, authorized, and encrypted before granting access, regardless of where the request originates (corporate network or internet). The model assumes that no entity is inherently trustworthy and requires continuous verification. This model is known as:

A.Defense in depth
B.Least privilege
C.Zero Trust
D.Shared responsibility
AnswerC

Zero Trust is a security model fundamentally built on the principle of 'never trust, always verify,' meaning no user, device, or application is implicitly trusted, regardless of its location inside or outside the network perimeter. Every access request is explicitly authenticated, authorized, and continuously validated based on all available data points, including user identity, device health, service, and data classification. This continuous verification ensures that access is granted only when all conditions are met, eliminating implicit trust.

Why this answer

The described model—requiring full authentication, authorization, and encryption for every access request, treating no entity as inherently trustworthy, and demanding continuous verification—is the core definition of Zero Trust. This aligns with the NIST SP 800-207 standard, which explicitly states that Zero Trust assumes no implicit trust and enforces verification for every request, regardless of network location.

Exam trap

The trap here is that candidates often confuse Zero Trust with defense in depth, assuming that multiple security layers inherently imply no trust, but defense in depth does not require per-request authentication, authorization, and encryption from any location.

Why the other options are wrong

A

Defense in depth is a layered security approach using multiple controls, but it does not inherently assume no entity is trustworthy or require continuous verification; it focuses on redundancy, not the zero-trust principle of 'never trust, always verify.'

B

The question describes a model where no entity is trusted by default and continuous verification is required, which is the definition of Zero Trust. Least privilege is a principle of granting only necessary permissions, not a model for continuous verification and encryption of all access requests.

D

The shared responsibility model describes the division of security tasks between a cloud provider and customer, not the principle of never trusting any entity by default and requiring continuous verification.

192
MCQhard

A company is deploying a web application on Azure App Service. The security officer states that according to the shared responsibility model, the customer is responsible for managing access to the application and securing the application code. Which of the following responsibilities does Microsoft retain for Azure App Service?

A.Configuring network firewall rules for the App Service
B.Patching the underlying operating system of the App Service host
C.Managing user authentication and authorization
D.Applying encryption to the application data at rest
AnswerB

As part of the Platform as a Service (PaaS) offering, Microsoft is fully responsible for managing and patching the underlying operating system and virtual machine infrastructure that hosts Azure App Service instances. This includes applying security updates, hotfixes, and service packs to the host OS to maintain platform security and stability, abstracting this operational burden from the customer. This responsibility ensures the foundational environment upon which customer applications run remains secure.

Why this answer

For Azure App Service, Microsoft retains responsibility for patching the underlying operating system of the host infrastructure. This is part of the shared responsibility model where the cloud provider manages the host OS and hypervisor, while the customer manages the application code, data, and access configurations.

Exam trap

The trap here is that candidates often confuse 'patching the underlying OS' with 'patching the application runtime' or 'configuring network security,' mistakenly thinking Microsoft handles all security tasks for PaaS services, when in fact the customer retains significant control over access and data protection.

Why the other options are wrong

A

In Azure App Service, configuring network firewall rules is a customer responsibility, not Microsoft's. The shared responsibility model assigns platform-level security (like OS patching) to Microsoft, but network configuration for the app is managed by the customer.

C

In Azure App Service, managing user authentication and authorization is a customer responsibility, not Microsoft's. The shared responsibility model assigns application-level access control to the customer.

D

In the shared responsibility model for Azure App Service, Microsoft is responsible for the physical infrastructure and platform, but encryption of application data at rest is typically the customer's responsibility because they control the data and can enable encryption features like Azure Storage Service Encryption.

193
MCQhard

A multinational corporation wants to implement a Zero Trust security model. They plan to verify every access request explicitly, use least privilege access, and assume breach. Which Microsoft security solution should they use to enforce conditional access policies based on user, device, location, and risk?

A.Microsoft Sentinel
B.Microsoft Intune
C.Microsoft Entra Conditional Access
D.Microsoft Defender for Cloud Apps
AnswerC

Microsoft Entra Conditional Access is the service that enforces access policies based on signals like user, device, location, and risk.

Why this answer

Microsoft Entra Conditional Access is the correct solution for enforcing conditional access policies based on signals like user, device, location, and risk. Option A (Microsoft Sentinel) is a SIEM/SOAR solution for security analytics, not access control. Option B (Microsoft Intune) manages devices but does not enforce access policies on its own.

Option D (Microsoft Defender for Cloud Apps) provides cloud app security but is not the primary conditional access engine.

194
MCQmedium

A company requires all employees to provide a one-time passcode generated by an authenticator app in addition to their password when accessing the corporate VPN. This practice is an example of which security concept?

A.A. Authorization
B.B. Auditing
C.C. Authentication
D.D. Accounting
AnswerC

Authentication is the foundational security process of verifying an entity's identity, confirming they are who they claim to be. In this scenario, requiring a one-time passcode (OTP) alongside another factor, like a password, establishes multi-factor authentication (MFA). This robust method significantly enhances security by requiring multiple proofs of identity before granting access to a system or resource, directly addressing the company's need to confirm employee identity.

Why this answer

The requirement for a one-time passcode (OTP) from an authenticator app in addition to a password is a classic implementation of multi-factor authentication (MFA). Authentication is the process of verifying the identity of a user, device, or service, and this scenario uses two distinct factors: something you know (password) and something you have (the OTP generated by the app). This directly aligns with the security concept of authentication, not authorization, auditing, or accounting.

Exam trap

The trap here is that candidates often confuse authentication (proving identity) with authorization (granting permissions), especially when the question describes a 'gate' like VPN access, leading them to incorrectly select authorization.

Why the other options are wrong

A

Authorization determines what resources a user can access after authentication, but the scenario describes verifying identity via a one-time passcode, which is an authentication process, not authorization.

B

Auditing refers to the process of reviewing and analyzing logs or records to ensure compliance or detect anomalies, not to verifying identity. The question describes verifying identity via password and passcode, which is authentication, not auditing.

195
MCQeasy

Refer to the exhibit. You have a Data Loss Prevention (DLP) policy in Microsoft Purview. What will happen when a user tries to share a document containing a credit card number via email?

A.The email is blocked only if the recipient is external
B.The email is sent with a warning to the recipient
C.The email is sent but the user is not notified
D.The email is blocked and the user receives a notification
AnswerD

This option accurately describes the combined effect of a typical DLP policy configured for strict enforcement. When sensitive information is detected within the email, the policy's 'Block access' action prevents the email from being delivered to its intended recipients, ensuring data protection. Concurrently, the policy's notification setting ensures that the sender is immediately informed about the policy violation and the reason for the email's blocking, allowing them to understand and rectify the issue.

Why this answer

The DLP policy is configured to block the email and send a notification to the user when a credit card number is detected. Option A is incorrect because the policy applies to both internal and external recipients. Option B is incorrect because the email is blocked, not sent with a warning.

Option C is incorrect because the user is notified when the email is blocked.

196
MCQmedium

A financial organization implements a security control that logs every access attempt to sensitive financial records, including who accessed the data, when it was accessed, and from which device. The logs are regularly reviewed by the security team. This control primarily addresses which security concept?

A.Confidentiality
B.Integrity
C.Availability
D.Accountability
AnswerD

Accountability is the ability to trace actions and events back to a specific entity, whether a user, process, or system. By meticulously recording access, modifications, and system events, logging creates an indispensable audit trail. This trail enables forensic analysis, compliance verification, and the attribution of responsibility, making it a foundational component for holding individuals and systems accountable for their actions within an organization.

Why this answer

Accountability ensures that actions affecting sensitive data can be traced uniquely to an individual. By logging who accessed the data, when, and from which device, the organization creates an audit trail that holds users responsible for their actions. This directly supports non-repudiation and forensic analysis, which are the core goals of accountability.

Exam trap

The trap here is that candidates confuse logging with confidentiality, thinking that tracking access prevents unauthorized viewing, when in fact logging only records the event and does not block the access itself.

How to eliminate wrong answers

Option A is wrong because confidentiality focuses on preventing unauthorized access to data (e.g., through encryption or access controls), not on logging who accessed it. Option B is wrong because integrity ensures data has not been altered or tampered with (e.g., via hashing or checksums), whereas logging does not protect against modification. Option C is wrong because availability ensures systems and data are accessible when needed (e.g., through redundancy or failover), and logging does not directly contribute to uptime or resilience.

197
MCQeasy

A user receives an encrypted email from their bank. They use their private key to decrypt the message. After reading it, they verify that the message content has not been altered during transit. Which security principle is primarily demonstrated by the verification that the content was not altered?

A.Confidentiality
B.Integrity
C.Availability
D.Non-repudiation
AnswerB

Integrity ensures that data remains unaltered and complete during transmission or storage. When a user verifies that the content of an encrypted email from their bank has not been changed, they are confirming its integrity. This is typically achieved through cryptographic mechanisms like hashing or digital signatures, which detect any unauthorized modification, ensuring the message received is exactly what was sent.

Why this answer

The verification that the message content has not been altered during transit directly demonstrates the principle of integrity. Integrity ensures that data remains unchanged from its source to its destination, typically enforced through cryptographic hashing or digital signatures. In this scenario, the user's ability to confirm that the email content was not tampered with relies on a hash or signature verification mechanism, which is the core function of integrity protection.

Exam trap

The trap here is that candidates often confuse integrity with non-repudiation, but non-repudiation proves the origin of the message (who sent it), whereas integrity proves the message was not altered—two distinct security goals.

Why the other options are wrong

A

The question asks about verifying that content was not altered, which is integrity. Confidentiality protects data from unauthorized access, not from modification.

C

The question asks about verifying that message content was not altered, which is the definition of integrity. Availability concerns ensuring data is accessible when needed, not verifying content integrity.

D

Non-repudiation ensures that the sender cannot deny having sent the message, but the question focuses on verifying that the content was not altered, which is integrity.

198
Multi-Selectmedium

A user logs into a company's financial application using their Microsoft Entra ID credentials. After successful sign-in, the application displays a dashboard with data for only the regions the user is authorized to manage. Which two security concepts are demonstrated in this scenario? (Select all that apply.)

Select 2 answers
A.Authentication
B.Authorization
C.Accounting
D.Non-repudiation
AnswersA, B

When a user enters credentials to access a financial application, the system performs authentication. This crucial initial step verifies the user's claimed identity by comparing the provided username and password against stored records. Successful authentication confirms 'who' the user is, granting them entry to the system.

Why this answer

Authentication is demonstrated because the user proves their identity by logging in with Microsoft Entra ID credentials, confirming they are who they claim to be. Authorization is demonstrated because after authentication, the application restricts the dashboard to show only data for regions the user is permitted to manage, enforcing access control based on assigned permissions.

Exam trap

The trap here is that candidates confuse authentication (verifying identity) with authorization (granting permissions), and may incorrectly select accounting or non-repudiation because they associate logging in with tracking or non-denial, but the scenario explicitly describes identity verification and access restriction, not logging or signature-based proof.

Why the other options are wrong

C

Accounting refers to tracking user activities for auditing or billing purposes, but the scenario only describes logging in and viewing authorized data, not recording or reviewing actions.

D

Non-repudiation ensures that a user cannot deny having performed an action, typically through digital signatures or audit logs. This scenario only involves logging in and viewing data, with no action that requires proof of origin or integrity.

199
MCQeasy

A small business wants to enable single sign-on (SSO) for its employees using their existing on-premises Active Directory. They plan to migrate to cloud-based identity management. Which Microsoft service should they use to connect their on-premises directory to Microsoft Entra ID?

A.Microsoft Entra Connect
B.Microsoft Intune
C.Active Directory Federation Services (AD FS)
D.Microsoft Entra Cloud Sync
AnswerA

This is correct because Microsoft Entra Connect synchronizes on-premises Active Directory with Microsoft Entra ID, enabling SSO through password hash sync or pass-through authentication.

Why this answer

Microsoft Entra Connect is the correct tool for synchronizing on-premises Active Directory with Microsoft Entra ID, enabling single sign-on (SSO). Option A is correct because it provides the primary and most comprehensive synchronization service for hybrid identity. Option C (AD FS) is for federation, not the primary synchronization service for connecting on-premises AD to Entra ID.

Option B (Microsoft Intune) is for device management, not identity synchronization. Option D (Microsoft Entra Cloud Sync) is a lightweight synchronization service that can connect on-premises AD and enable SSO via Password Hash Synchronization; however, Microsoft Entra Connect offers a broader range of SSO methods (including Pass-through Authentication and Seamless SSO) and comprehensive hybrid identity features (like device writeback and custom sync rules), making it the more complete and standard solution for connecting on-premises AD and enabling full SSO as implied by a general migration scenario.

Exam trap

The primary trap is confusing Microsoft Entra Cloud Sync (a lightweight sync agent) with Microsoft Entra Connect (the full hybrid identity tool). Cloud Sync can sync passwords and enable SSO, but it is designed for simple scenarios; for full SSO with features like seamless SSO, pass-through authentication, or writeback, Microsoft Entra Connect is the recommended service.

200
MCQeasy

A user logs into a company's application using their username and password. After logging in, the application checks whether the user belongs to the 'Admin' role before granting access to the user management page. Which security concept is primarily illustrated by the role check?

A.Authentication
B.Authorization
C.Accounting
D.Non-repudiation
AnswerB

Authorization is the process of granting or denying access to resources based on the authenticated user's permissions. The role check determines if the user is authorized to access the user management page, making this the correct answer.

Why this answer

The role check after login determines what actions the authenticated user is allowed to perform, specifically whether they can access the user management page. This is the essence of authorization, which controls access to resources based on identity and assigned permissions. In Microsoft identity and access management, authorization is enforced via role-based access control (RBAC), where the application verifies the user's role claim (e.g., 'Admin') in the access token.

Exam trap

Microsoft often tests the distinction between authentication and authorization by presenting a scenario where a user is already logged in and then a permission check occurs, leading candidates to mistakenly select 'authentication' because they focus on the login step rather than the subsequent access control decision.

Why the other options are wrong

A

The role check occurs after the user has already logged in, meaning authentication (verifying identity via username/password) is complete. The check determines what the user is allowed to do, which is authorization, not authentication.

C

Accounting refers to tracking user activities and resource usage (auditing), not to checking permissions after authentication. The role check determines access rights, which is authorization.

D

Non-repudiation ensures that a user cannot deny having performed an action, typically through digital signatures or audit logs. The role check in this question determines access rights based on identity, not proof of action.

201
MCQmedium

Your company uses Microsoft Intune for device management. You need to ensure that all company data on a user's personally owned device is removed when the user is offboarded, but the user's personal data should remain. Which wipe action should you use?

A.Delete
B.Selective wipe
C.Full wipe
D.Retire
AnswerB

Selective wipe removes only company data from managed apps.

Why this answer

Selective wipe removes only company data from Intune-managed apps, leaving personal data intact. Full wipe resets the device and deletes all data. Delete removes the device from Intune management but does not wipe data.

Retire removes the device from management and removes company data; however, the action that specifically performs a selective wipe of company data is Selective wipe.

202
MCQhard

Your organization uses Microsoft Defender for Cloud Apps. You need to discover shadow IT usage. Which feature should you enable?

A.File policies
B.Conditional Access App Control
C.Cloud Discovery
D.App catalog
AnswerC

Cloud Discovery analyzes traffic logs to identify shadow IT.

Why this answer

Cloud Discovery analyzes traffic logs to identify shadow IT. Option A is incorrect because file policies are used for data protection and monitoring, not for discovering shadow IT. Option B is incorrect because Conditional Access App Control enforces policies on sanctioned apps, not for discovery.

Option D is incorrect because the app catalog lists known cloud apps, not for discovering unknown usage.

203
Multi-Selecthard

Which THREE of the following are capabilities of Microsoft Purview Data Loss Prevention (DLP)? (Choose three.)

Select 3 answers
A.Detect credit card numbers in Exchange Online emails
B.Block network traffic from suspicious IP addresses
C.Detect sensitive information in Microsoft Teams messages
D.Detect malware in email attachments
E.Detect passport numbers in SharePoint Online documents
AnswersA, C, E

DLP can scan email content for sensitive info.

Why this answer

Options A, C, and E are correct. Microsoft Purview Data Loss Prevention (DLP) policies can detect sensitive information such as credit card numbers in Exchange Online emails (A), detect sensitive information in Microsoft Teams messages (C), and detect passport numbers in SharePoint Online documents (E). Option B is incorrect because blocking network traffic from suspicious IP addresses is a network security feature, not a DLP capability.

Option D is incorrect because detecting malware in email attachments is the function of Microsoft Defender for Office 365, not DLP.

204
MCQmedium

Your company is implementing a zero-trust security model. Which principle requires verifying every access request as though it originates from an untrusted network, even if the request comes from within the corporate network?

A.Least privilege
B.Trust but verify
C.Explicit verification
D.Assume breach
AnswerC

Explicit verification is the zero-trust principle that requires verifying every access request as if originating from an untrusted network.

Why this answer

'Explicit verification' is the zero-trust principle that requires verifying every access request as though it originates from an untrusted network, regardless of the source. Option A is incorrect because 'Least privilege' limits access rights but does not inherently treat all requests as untrusted. Option B is incorrect because 'Trust but verify' is a traditional security model that trusts internal networks, contradicting zero-trust.

Option D is incorrect because 'Assume breach' focuses on minimizing the impact of a breach, not on verifying every access request.

205
MCQmedium

A financial company processes stock trades. To ensure that a trader cannot later deny having submitted a specific trade order, the system captures a digital signature from the trader for each order. Which security goal is being addressed by this practice?

A.Confidentiality
B.Integrity
C.Availability
D.Non-repudiation
AnswerD

Non-repudiation is the assurance that a party cannot legitimately deny having performed a specific action or sent a particular message. In the context of financial stock trades, a digital signature cryptographically binds the unique identity of the trader (via their private key) to the specific trade instruction. This creates undeniable, legally admissible proof that the trader authorized and executed that particular transaction, preventing them from later disavowing their actions.

Why this answer

Non-repudiation ensures that a party cannot deny having performed a specific action. By capturing a digital signature from the trader for each trade order, the system creates cryptographic proof that the trader indeed submitted that order. This prevents the trader from later claiming they did not authorize the trade, directly addressing the non-repudiation goal.

Exam trap

The trap here is that candidates often confuse integrity with non-repudiation, but integrity only ensures data hasn't been tampered with, while non-repudiation specifically provides cryptographic proof of origin and action.

How to eliminate wrong answers

Option A is wrong because confidentiality focuses on preventing unauthorized access to data, not on proving who performed an action. Option B is wrong because integrity ensures data has not been altered, but does not provide proof of origin or prevent denial of action. Option C is wrong because availability ensures systems and data are accessible when needed, which is unrelated to proving the authenticity of a submitted order.

206
MCQeasy

A company secures its network by deploying a firewall at the perimeter, an intrusion prevention system on internal segments, endpoint antivirus on all workstations, and encrypting sensitive data at rest and in transit. This layered approach ensures that if one control fails, others still provide protection. Which security concept does this strategy best represent?

A.Least privilege
B.Defense in depth
C.Zero Trust
D.Separation of duties
AnswerB

Defense in depth is a comprehensive cybersecurity strategy that employs multiple, overlapping security controls to protect assets and data. By deploying a firewall, the company is establishing a perimeter defense, which constitutes one critical layer in a multi-layered security architecture. This approach ensures that if one security control fails or is bypassed, other controls are already in place to prevent or detect an intrusion, significantly enhancing overall resilience against various threats.

Why this answer

The strategy described uses multiple independent security controls—firewall, IPS, endpoint antivirus, and encryption—so that if one layer fails, others continue to protect the asset. This is the core definition of defense in depth, which creates overlapping layers of protection rather than relying on a single point of failure.

Exam trap

The trap here is that candidates confuse Zero Trust with defense in depth because both involve multiple controls, but Zero Trust specifically requires identity-based verification and micro-segmentation rather than relying on layered perimeter defenses.

Why the other options are wrong

A

The question describes multiple overlapping security controls (firewall, IPS, antivirus, encryption), which is the essence of defense in depth, not least privilege. Least privilege focuses on limiting user access rights, not layering defenses.

D

The question describes a layered security approach with multiple controls, which is defense in depth, not separation of duties. Separation of duties is about dividing tasks among multiple people to prevent fraud or error, not about overlapping security controls.

207
MCQeasy

A hospital stores patient medical records electronically. An attacker gains access to the system and modifies patient diagnoses. Which principle of the CIA triad has been violated?

A.Confidentiality
B.Integrity
C.Availability
D.Non-repudiation
AnswerB

Data integrity ensures that information remains accurate, complete, and unaltered throughout its lifecycle, protecting against unauthorized modification or destruction. In this scenario, an attacker directly modified patient diagnoses, which fundamentally compromises the trustworthiness and reliability of the medical records. This unauthorized alteration is a clear violation of the integrity principle, as the data no longer reflects its original, correct state.

Why this answer

The CIA triad's Integrity principle ensures that data is not modified by unauthorized parties. In this scenario, the attacker altered patient diagnoses, which directly violates data integrity. Confidentiality (unauthorized disclosure) and Availability (denial of service) are not the primary concerns here.

Exam trap

The trap here is that candidates may confuse 'access' with 'confidentiality' and choose A, but the key is the modification of data, which is a clear integrity violation, not just unauthorized viewing.

How to eliminate wrong answers

Option A is wrong because confidentiality focuses on preventing unauthorized access to data, not unauthorized modification; the attacker did access the system, but the core violation is the alteration of records. Option C is wrong because availability ensures systems and data are accessible when needed; the attacker did not disrupt access to the records. Option D is wrong because non-repudiation is a security concept that prevents a party from denying an action (e.g., using digital signatures or audit logs), not a core principle of the CIA triad; it is not directly violated by data modification.

208
MCQeasy

A healthcare organization must comply with HIPAA regulations regarding the protection of patient health information (PHI). Which cloud compliance concept ensures that the organization has controls in place to meet regulatory requirements?

A.Privacy management
B.Identity management
C.Security management
D.Compliance management
AnswerD

Compliance management is the overarching discipline that ensures an organization adheres to external laws, regulations, and internal policies, such as HIPAA. It involves establishing frameworks, implementing controls, conducting risk assessments, monitoring adherence, and maintaining documentation to systematically meet all regulatory requirements and demonstrate due diligence to auditors and regulators.

Why this answer

Compliance management is the discipline of ensuring that an organization adheres to regulations like HIPAA by implementing controls. Security management focuses on protecting assets from threats. Identity management deals with authentication and authorization.

Privacy management addresses personal data protection. The question specifically asks about meeting regulatory requirements.

209
MCQmedium

A company's IT department implements a policy for server administrators: they must submit an access request to perform privileged tasks on critical servers. Each request is approved by a manager, and the granted elevated permissions automatically expire after four hours. This approach reduces the risk of standing privileges being exploited. Which security concept is primarily being applied?

A.Just-in-time access
B.Least privilege
C.Defense in depth
D.Zero Trust
AnswerA

Just-in-time (JIT) access grants temporary, time-limited elevated permissions to users or systems only when explicitly requested and strictly for the duration required to complete a specific task. This approach minimizes the window of opportunity for misuse or compromise by ensuring that administrative privileges are not persistently held. The scenario directly describes this mechanism of on-demand, temporary access for server administration.

Why this answer

Just-in-time (JIT) access is a security concept that grants elevated permissions only when needed, for a limited duration, and requires approval. In this scenario, the policy requires an access request, manager approval, and automatic expiration after four hours, which directly aligns with JIT access to reduce the risk of standing privileges being exploited.

Exam trap

The trap here is that candidates confuse 'least privilege' (a static principle of minimal permissions) with 'just-in-time access' (a dynamic, time-bound activation mechanism), but the question's emphasis on 'request, approval, and automatic expiration' specifically points to JIT, not just the principle of least privilege.

How to eliminate wrong answers

Option B is wrong because least privilege is a principle that ensures users have only the minimum permissions necessary to perform their tasks, but it does not inherently include time-bound or approval-based elevation; the scenario specifically describes temporary, approved access, which is JIT, not just least privilege. Option C is wrong because defense in depth is a layered security strategy using multiple controls (e.g., firewalls, antivirus, encryption), not a single policy for temporary privileged access. Option D is wrong because Zero Trust is a security model that assumes no implicit trust and continuously verifies every request, but the scenario focuses on time-limited, approved elevation, not the broader Zero Trust principles of micro-segmentation or continuous verification.

210
MCQeasy

Your organization needs to control which users can access Microsoft Purview compliance portal. Which method should you use to grant access?

A.Add users to an Azure RBAC role
B.Configure Intune policy to allow access
C.Assign users to the Compliance Administrator role group in Microsoft Purview
D.Assign Microsoft 365 E5 licenses to users
AnswerC

Role groups in Purview grant access to the compliance portal.

Why this answer

Access to the Microsoft Purview compliance portal is granted by assigning users to the appropriate role group within Purview itself, such as the Compliance Administrator role group. Option A is incorrect because Azure RBAC roles manage access to Azure resources, not to Purview. Option B is incorrect because Intune policies control device management and compliance, not user access to Purview.

Option D is incorrect while Microsoft 365 E5 licenses are required to use Purview features, they do not by themselves grant access; explicit role assignment is necessary.

211
MCQeasy

A company's security policy requires that all data transferred between the corporate data center and the cloud must be protected from unauthorized access during transmission. They use encryption protocols such as TLS to achieve this. Which security goal is primarily being addressed?

A.Confidentiality
B.Integrity
C.Availability
D.Non-repudiation
AnswerA

Encrypting data during transmission directly ensures that only authorized entities with the correct decryption key can access or read the information. This process transforms plaintext into ciphertext, making it unintelligible to any unauthorized interceptors who might intercept the data in transit. Therefore, the primary objective of such a security policy requirement is to prevent unauthorized disclosure of sensitive data while it traverses networks, directly upholding confidentiality.

Why this answer

Confidentiality is the security goal that ensures data is not disclosed to unauthorized entities. By using encryption protocols such as TLS, the data in transit is rendered unreadable to any party that intercepts the traffic, directly protecting against unauthorized access during transmission.

Exam trap

The trap here is that candidates may confuse encryption with integrity, thinking that encryption alone prevents tampering, but encryption only provides confidentiality; integrity requires separate mechanisms like MACs or digital signatures, which TLS also includes but are not the primary goal stated in the question.

How to eliminate wrong answers

Option B (Integrity) is wrong because integrity focuses on ensuring data has not been altered or tampered with during transit, which is typically achieved through hashing or message authentication codes (e.g., HMAC), not solely by encryption. Option C (Availability) is wrong because availability concerns ensuring systems and data are accessible when needed, often addressed by redundancy and disaster recovery, not by encrypting data in transit. Option D (Non-repudiation) is wrong because non-repudiation provides proof of the origin or delivery of data, usually via digital signatures or audit logs, and is not the primary goal of encryption protocols like TLS.

212
MCQeasy

A company implements a security strategy that includes multiple layers of controls: a perimeter firewall, an intrusion detection system, endpoint antivirus software, and multi-factor authentication for user access. The goal is that if one layer fails, another layer is in place to prevent or mitigate an attack. Which security principle does this approach best represent?

A.Defense in depth
B.Zero Trust
C.Least privilege
D.CIA triad
AnswerA

Defense in depth is a comprehensive security strategy that layers multiple, independent security controls to protect assets across various domains. This approach ensures that if one security control fails or is bypassed, other controls are still in place to detect, prevent, or mitigate an attack, significantly increasing resilience against diverse threat vectors. It encompasses physical, technical, and administrative safeguards, creating a robust and redundant barrier.

Why this answer

Defense in depth is a security strategy that layers independent defensive mechanisms so that if one layer fails, another layer is already in place to prevent or mitigate an attack. The scenario explicitly describes multiple layers (firewall, IDS, endpoint antivirus, MFA) working together, which is the core definition of defense in depth. This approach ensures no single point of failure can compromise the entire security posture.

Exam trap

The trap here is that candidates often confuse 'Defense in depth' with 'Zero Trust' because both involve multiple security controls, but Zero Trust is specifically about eliminating implicit trust and verifying every access request, not about layering defenses as a fail-safe mechanism.

Why the other options are wrong

B

The question describes multiple layers of controls (firewall, IDS, antivirus, MFA) that work together to provide redundancy, which is the core of defense in depth. Zero Trust is a security model that assumes no implicit trust and requires continuous verification, not specifically about layered defenses.

C

The question describes multiple layers of security controls, which is the essence of defense in depth, not least privilege. Least privilege focuses on granting only necessary permissions, not on layered defenses.

D

The CIA triad (Confidentiality, Integrity, Availability) is a model for information security policy, not a strategy for layered controls. The question describes multiple defensive layers, which is defense in depth, not the CIA triad.

213
MCQhard

A company deploys Microsoft Defender for Cloud Apps. They want to detect when a user downloads more than 100 files from SharePoint in 10 minutes. Which policy type should they create?

A.File policy
B.Anomaly detection policy
C.App permission policy
D.Session policy
AnswerB

Anomaly detection policies use machine learning to detect unusual user behavior like mass downloads.

Why this answer

An anomaly detection policy in Defender for Cloud Apps can identify unusual file download activities based on predefined thresholds. Option A is wrong because a file policy monitors files based on metadata or content, not behavioral patterns. Option C is wrong because an app permission policy governs permissions granted to third-party apps.

Option D is wrong because a session policy enforces real-time controls on user sessions.

214
MCQeasy

A security administrator is explaining the concept of defense in depth to a new team member. Which statement best describes this approach?

A.Using a single, strong firewall to block all external traffic
B.Layering multiple security controls across different areas of the IT environment
C.Relying solely on encryption to protect all data at rest and in transit
D.Implementing only physical security measures to protect the data center
AnswerB

Defense in depth fundamentally involves deploying a comprehensive array of security controls across various layers and domains within an IT environment. This layered strategy ensures that if one security control is compromised or bypassed, other independent controls are still in place to detect, prevent, or mitigate the attack. It encompasses physical, technical, and administrative safeguards, creating a resilient security posture that significantly increases the effort and resources required for an attacker to succeed.

Why this answer

Defense in depth is a cybersecurity strategy that employs multiple layers of security controls across different areas of the IT environment (network, endpoint, application, data, and physical). This approach ensures that if one control fails, another is already in place to mitigate the threat, providing redundancy and reducing the risk of a single point of failure. Microsoft's security framework, including tools like Microsoft Defender for Cloud and Azure Firewall, operationalizes this concept by integrating protections at each layer.

Exam trap

The trap here is that candidates often confuse defense in depth with a single strong control (like a firewall or encryption), failing to recognize that the core principle is layering multiple independent controls to provide redundancy and depth.

Why the other options are wrong

A

Defense in depth requires multiple layers of security, not a single firewall. A single firewall can be bypassed or fail, leaving the environment unprotected.

C

Defense in depth requires multiple layers of security, not a single control. Relying solely on encryption ignores other critical layers like network segmentation, access controls, and monitoring.

D

Defense in depth requires multiple layers of security, not just physical measures. Relying solely on physical security ignores network, application, and data security, leaving many attack vectors unprotected.

215
MCQeasy

A financial institution uses digital signatures to ensure that a transaction record has not been altered after it was processed. Which security principle is primarily addressed?

A.A. Confidentiality
B.B. Integrity
C.C. Availability
D.D. Non-repudiation
AnswerB

Integrity ensures that data has not been tampered with or altered from its original state. Digital signatures achieve this by creating a unique cryptographic hash of the document, which is then encrypted with the sender's private key. Any subsequent modification to the document would result in a different hash value, immediately revealing that the data's integrity has been compromised upon verification.

Why this answer

Digital signatures use asymmetric cryptography (e.g., RSA or ECDSA) to create a hash of the transaction record, which is then encrypted with the sender's private key. Any alteration to the record after signing would cause the hash verification to fail, directly ensuring data integrity. This is why option B is correct.

Exam trap

The trap here is that candidates often confuse non-repudiation (which focuses on proving the origin of the signature) with integrity (which focuses on proving the data has not been altered), but the question's wording 'has not been altered' points directly to integrity.

Why the other options are wrong

A

Digital signatures ensure data has not been altered, which addresses integrity, not confidentiality. Confidentiality is about preventing unauthorized access to data, not detecting changes.

C

The question focuses on ensuring a transaction record has not been altered, which is the definition of integrity. Availability is about ensuring systems and data are accessible when needed, not about preventing unauthorized modification.

D

Non-repudiation ensures that a party cannot deny having performed an action, such as signing a transaction. The question focuses on preventing alteration after processing, which is integrity, not on denying the action itself.

216
MCQhard

A financial services company needs to comply with GDPR and requires that personal data be automatically classified and protected when stored in Microsoft SharePoint and OneDrive. They also need to retain certain records for a minimum of 7 years. Which combination of Microsoft Purview capabilities should they use?

A.Sensitivity labels and data loss prevention (DLP) policies
B.Sensitivity labels and retention labels
C.Data loss prevention (DLP) policies and retention labels
D.eDiscovery and sensitivity labels
AnswerB

Sensitivity labels classify and protect data; retention labels enforce retention periods.

Why this answer

Sensitivity labels classify and protect personal data (e.g., encrypt, apply markings), while retention labels enforce the required 7-year retention period. Option A is incorrect because DLP policies detect and prevent data loss but do not enforce retention. Option C is incorrect because DLP policies do not classify data.

Option D is incorrect because eDiscovery is for searching and exporting data, not for classification or retention.

217
MCQeasy

Which Microsoft Purview solution should you use to automatically retain or delete content based on regulations?

A.Records Management
B.Communication Compliance
C.Data Loss Prevention (DLP)
D.eDiscovery
AnswerA

Records Management in Microsoft Purview is specifically designed to help organizations meet their legal, regulatory, and business obligations for retaining and disposing of information. It enables the declaration of content as a record, applying immutable retention labels and policies to automatically retain items for a specified period or delete them defensibly when no longer required. This ensures that critical business information is preserved and disposed of according to a defined lifecycle, preventing accidental deletion and supporting compliance audits.

Why this answer

Records Management in Microsoft Purview provides policy-based retention and deletion labels that automatically enforce regulatory compliance requirements, such as GDPR or SOX. It uses retention labels and label policies to mark content for a specified duration, after which it is either retained, deleted, or reviewed via disposition review. This directly addresses the need to automatically retain or delete content based on regulations.

Exam trap

The trap here is that candidates confuse Communication Compliance (which monitors for policy violations) with Records Management (which enforces retention and deletion schedules), because both involve 'compliance' but serve fundamentally different purposes.

How to eliminate wrong answers

Option B (Communication Compliance) is wrong because it focuses on detecting and remediating inappropriate communications (e.g., harassment, insider trading) rather than automatically retaining or deleting content based on regulatory schedules. Option C (Data Loss Prevention) is wrong because it is designed to prevent unauthorized sharing or leakage of sensitive data through policy enforcement, not to manage retention or deletion lifecycles. Option D (eDiscovery) is wrong because it is used for searching, holding, and exporting content for legal or investigative purposes, not for automated retention or deletion based on time-based regulations.

218
MCQmedium

Your organization is deploying Microsoft Entra ID Governance. You need to automate the process of removing user access to a critical application when the user leaves the company. Which feature should you configure?

A.Privileged Identity Management
B.Entitlement Management
C.Access Reviews
D.Lifecycle Workflows
AnswerB

Entitlement Management is a robust capability within Microsoft Entra ID Governance that enables organizations to manage identity and access lifecycle at scale through access packages. It allows for automatic access removal based on various lifecycle events, such as a user's employment status change or removal from a connected organization. This makes it ideal for ensuring access to groups, applications, and SharePoint sites is revoked promptly and automatically when no longer needed, aligning perfectly with the need for automated access removal.

Why this answer

Entitlement Management in Microsoft Entra ID Governance allows you to create access packages that govern access to resources like critical applications. By configuring an access package with a 'Remove access when user leaves' policy, you can automatically revoke the user's assignments when their lifecycle state changes to 'leaving', ensuring access is removed without manual intervention.

Exam trap

The trap here is that candidates confuse Lifecycle Workflows (which handle user lifecycle tasks like account disablement) with Entitlement Management (which governs resource-specific access removal), leading them to pick D instead of B.

How to eliminate wrong answers

Option A is wrong because Privileged Identity Management (PIM) is designed for just-in-time privileged role activation and oversight, not for automating removal of standard user access upon departure. Option C is wrong because Access Reviews provide periodic attestation of access (e.g., quarterly reviews) but do not automatically remove access when a user leaves; they require a reviewer to act. Option D is wrong because Lifecycle Workflows automate pre-hire and post-departure tasks (like sending emails or disabling accounts) but do not directly manage application-level access removal; Entitlement Management handles the resource-specific assignment revocation.

219
MCQeasy

A company is migrating its on-premises virtual machines to Azure Infrastructure-as-a-Service (IaaS). Which security responsibility primarily shifts from the customer to Microsoft during this migration?

A.Physical security of the data center
B.Patching the guest operating system
C.Managing user access to the virtual machines
D.Configuring the firewall rules for the virtual network
AnswerA

In the Shared Responsibility Model for Infrastructure as a Service (IaaS), Microsoft is solely responsible for the physical security of the underlying data centers. This encompasses safeguarding the physical infrastructure, implementing robust access controls, deploying surveillance systems, and managing environmental factors like power, cooling, and fire suppression. Customers are relieved of these foundational infrastructure concerns, allowing them to focus on their virtualized workloads.

Why this answer

When migrating on-premises virtual machines to Azure IaaS, Microsoft takes over responsibility for the physical security of the data centers, including environmental controls, hardware maintenance, and physical access controls. This is a fundamental shift from the customer's responsibility under the shared responsibility model, where the customer previously managed the physical infrastructure on-premises.

Exam trap

The trap here is that candidates often confuse the shared responsibility model for IaaS with PaaS or SaaS, mistakenly thinking Microsoft handles guest OS patching or network configuration, when in fact those remain customer responsibilities in IaaS.

How to eliminate wrong answers

Option B is wrong because patching the guest operating system remains the customer's responsibility in an IaaS model, as Microsoft only manages the hypervisor and host OS. Option C is wrong because managing user access to the virtual machines (e.g., via Azure RBAC or local accounts) is always the customer's responsibility, as Microsoft has no knowledge of or control over who should access the VMs. Option D is wrong because configuring firewall rules for the virtual network (e.g., Network Security Groups or Azure Firewall policies) is a customer-managed task, as Microsoft only provides the networking infrastructure but does not define traffic rules.

220
MCQeasy

A company deploys full disk encryption on all employee laptops to protect data in case a device is lost or stolen. Which security goal does this measure primarily address?

A.Confidentiality
B.Integrity
C.Availability
D.Non-repudiation
AnswerA

Full disk encryption (FDE) directly addresses confidentiality by rendering all data on a laptop unreadable to unauthorized individuals. If the device is lost or stolen, the encrypted data remains protected, preventing its disclosure without the correct decryption key. This ensures that only authorized users or processes can access and interpret the sensitive information stored on the drive.

Why this answer

Full disk encryption (FDE) ensures that data stored on the laptop's hard drive is unreadable without the correct decryption key. This directly protects the confidentiality of the data by preventing unauthorized access if the device is lost or stolen, as the encrypted data cannot be deciphered without the key.

Exam trap

The trap here is that candidates often confuse encryption with integrity or availability, mistakenly thinking encryption also prevents data tampering or ensures data is always accessible, but encryption only addresses unauthorized reading (confidentiality).

How to eliminate wrong answers

Option B (Integrity) is wrong because full disk encryption does not protect against unauthorized modification of data; it only prevents unauthorized reading. Option C (Availability) is wrong because encryption does not ensure data is accessible when needed; in fact, a lost key can reduce availability. Option D (Non-repudiation) is wrong because encryption does not provide proof of origin or action; non-repudiation is typically achieved through digital signatures or audit logs.

221
MCQmedium

A company is moving its on-premises database to Azure SQL Database. According to the shared responsibility model, which security tasks remain the responsibility of the customer?

A.Patching the physical servers hosting the database
B.Managing access controls and authentication for database users
C.Securing the hypervisor running the virtual machines
D.Hardening the network firewalls at the datacenter perimeter
AnswerB

The customer retains responsibility for managing user identities, permissions, and authentication to the database.

Why this answer

In the shared responsibility model for Azure SQL Database, Microsoft manages the physical infrastructure, including servers, storage, and network, while the customer is responsible for data and access management. Option B is correct because managing access controls and authentication for database users, such as configuring logins, users, and permissions via T-SQL or Azure Active Directory, falls squarely on the customer. Microsoft ensures the platform is patched and secure, but the customer must control who can access the database and what they can do.

Exam trap

The trap here is that candidates often confuse PaaS with IaaS and assume the customer is responsible for patching or hypervisor security, but in Azure SQL Database (PaaS), Microsoft handles all infrastructure layers, leaving the customer only with data and access control responsibilities.

Why the other options are wrong

A

In Azure SQL Database, patching physical servers is the responsibility of Microsoft as the cloud provider, not the customer, because it is a Platform as a Service (PaaS) offering.

C

In Azure SQL Database, the hypervisor is managed by Microsoft as part of the infrastructure layer, not the customer. The shared responsibility model assigns physical and hypervisor security to the cloud provider.

← PreviousPage 3 of 3 · 221 questions total

Ready to test yourself?

Try a timed practice session using only Describe The Concepts Of Security Compliance And Identity questions.