Tüm alıştırma soruları

1198 soru

Soru 241Soru

Ignite Energy Partners has an on-premises Active Directory Domain Services (AD DS) forest. You are designing a hybrid identity solution to integrate the AD DS forest with a Microsoft Entra ID tenant. The design must meet the following requirements:
- Users must be able to sign in using their on-premises passwords.
- If the connection between the on-premises datacenter and Azure is lost, users must still be able to sign in to Azure resources.
- Users must be able to reset their passwords in Microsoft Entra ID using self-service password reset (SSPR), and the new passwords must write back to the on-premises AD DS.
- On-premises infrastructure requirements and administrative complexity must be minimized.
Which hybrid identity synchronization and authentication method should you recommend?

Cevabı ve açıklamayı göster

Cevap: Microsoft Entra Connect with Password Hash Synchronization (PHS) and Password Writeback enabled

Cevap

Microsoft Entra Connect with Password Hash Synchronization (PHS) and Password Writeback enabled
Password Hash Synchronization (PHS) copies password hashes to Microsoft Entra ID, allowing authentication to occur directly in the cloud. This ensures that even during a complete WAN or datacenter outage, users can still authenticate to cloud resources. PHS has the lowest infrastructure footprint on-premises (requiring only Microsoft Entra Connect) and fully supports self-service password writeback.

Adım Adım Çözüm

1
Analyze the business continuity requirement during a connection outage.
Identify that authentication must occur directly in the cloud so that users can sign in even if the link to the on-premises datacenter is lost.
This rules out Pass-Through Authentication (PTA) and standard Active Directory Federation Services (AD FS), as both require active, real-time connectivity to on-premises infrastructure to authenticate users.
2
Evaluate the requirement to minimize on-premises infrastructure and administrative complexity.
Rule out AD FS, which requires dedicated servers, web application proxies, certificates, and load balancers on-premises.
Password Hash Synchronization (PHS) only requires the Microsoft Entra Connect sync server on-premises, representing the lowest infrastructure footprint and lowest complexity.
3
Verify support for Self-Service Password Reset (SSPR) and writeback.
Enable Password Writeback on the Microsoft Entra Connect synchronization server.
This allows passwords changed in Microsoft Entra ID via SSPR to be written back to the on-premises AD DS in near real-time, meeting all constraints.

Anahtar Kavram

Selecting the appropriate hybrid identity synchronization method to meet business continuity and infrastructure minimization requirements
Soru 242Soru

A logistics organization stores historical delivery logs in CSV format within an Azure Data Lake Storage Gen2 account. You need to design an analytical query solution that enables data analysts to run occasional, ad-hoc SQL queries on these files. The solution must meet the following requirements:
- Minimize costs by utilizing a pay-per-query model rather than provisioning persistent database compute resources.
- Ensure the underlying storage account can survive a primary datacenter outage.
- Ensure that the shared access signatures (SAS) used for external analyst access can be revoked immediately if compromised.

Which solution should you recommend?

Cevabı ve açıklamayı göster

Cevap: Use a Synapse serverless SQL pool, store the logs in a geo-redundant storage (GRS) account, and grant access using SAS tokens defined with a stored access policy.

Cevap

Use a Synapse serverless SQL pool, store the logs in a geo-redundant storage (GRS) account, and grant access using SAS tokens defined with a stored access policy.
The correct solution uses a Synapse serverless SQL pool, which operates on a pay-per-query model and does not require provisioning persistent compute resources. It stores data in a geo-redundant storage (GRS) account to survive a primary datacenter outage, and uses SAS tokens defined with a stored access policy to allow immediate revocation of access permissions if compromised.

Adım Adım Çözüm

1
Select the query model based on workload type and budget constraints.
Choose Synapse serverless SQL pool.
Since the queries are occasional and ad-hoc, a serverless pool charges per query and avoids provisioned compute costs.
2
Select the storage redundancy option to protect against datacenter outages.
Choose Geo-Redundant Storage (GRS).
GRS replicates data to a secondary region, ensuring survival during a primary datacenter outage, unlike LRS.
3
Select the SAS configuration that allows revocation.
Use SAS tokens linked to a stored access policy.
A stored access policy allows immediate revocation of associated tokens by changing the policy configuration or deleting it.

Anahtar Kavram

Selecting serverless SQL pools for ad-hoc queries, selecting GRS for regional resilience, and utilizing stored access policies for revocable SAS tokens.
Soru 243Soru

An enterprise is designing a secure storage solution for a multi-tenant SaaS application that processes highly sensitive financial transactions in Azure. The solution must satisfy the following architectural requirements:

1. Operations team members must only be granted temporary, time-bound, just-in-time (JIT) access to manage the storage account's networking and security configurations.
2. An external audit firm requires read-only access to a specific blob container named 'audits' for a period of 9090 days. This access must be immediately revocable at any point without impacting other active applications or changing the storage account keys.
3. On-premises applications must authenticate to read blobs without storing credentials or access keys locally, ensuring all data plane access is audited.
4. Administrative overhead must be minimized by managing role assignments at scale, avoiding direct user-to-role or service principal-to-role mappings.

Which design strategy meets all these requirements while adhering to the principle of least privilege?

Cevabı ve açıklamayı göster

Cevap: Configure an eligible role assignment in Microsoft Entra Privileged Identity Management (PIM) for an Entra security group containing the operations team. For the external audit firm, create a Stored Access Policy on the container and issue a Service SAS token associated with it. For the on-premises applications, use Microsoft Entra ID authentication via a service principal that is a member of an Entra security group assigned the Storage Blob Data Reader role.

Cevap

Configure an eligible role assignment in Microsoft Entra Privileged Identity Management (PIM) for an Entra security group containing the operations team. Create a Stored Access Policy on the audits container and issue a Service SAS token associated with it for the audit firm. Utilize Microsoft Entra ID authentication with a service principal inside a security group assigned the Storage Blob Data Reader role for the on-premises applications.
The correct strategy uses Microsoft Entra Privileged Identity Management (PIM) with eligible assignments to provide just-in-time (JIT) access to the operations group. It uses a Stored Access Policy to bind the SAS token for the audit firm, allowing instant revocation by modifying the policy without rotating storage account keys. It also aligns with administrative best practices by assigning RBAC roles to Entra security groups containing the operations team and the service principal for the on-premises applications, rather than directly to individual identities.

Adım Adım Çözüm

1
Enforce just-in-time (JIT) access for operations management.
Configure Microsoft Entra PIM with eligible role assignments instead of active assignments, ensuring operations staff must explicitly request activation to gain the required role.
Eligible role assignments ensure that permissions are not active by default, maintaining compliance with the JIT requirement.
2
Select a secure, revocable delegation method for the external auditors.
Create a Stored Access Policy on the target container and generate a Service SAS linked to this policy.
Ad-hoc SAS tokens cannot be revoked without rotating the storage account keys, which would affect other applications. Associating the SAS with a Stored Access Policy allows revocation by modifying or deleting the policy.
3
Establish keyless authentication for on-premises workloads.
Use Microsoft Entra ID authentication with a service principal, which allows access tracking and auditable logging via Azure diagnostic logs without hardcoding keys.
Authenticating with Entra ID service principals avoids access key leakage and enables robust data plane auditing.
4
Ensure governance scalability for all identity access.
Map RBAC roles to Entra ID security groups rather than individual users or service principals.
Direct role assignments to individual accounts increase administrative overhead and make auditing access changes difficult at scale.

Anahtar Kavram

Azure Storage data plane security requires combining Microsoft Entra ID group-based RBAC for persistent/JIT identities, and Stored Access Policies for secure, revocable third-party delegation.
Tahmini Süre:3m 0s
Soru 244Soru

A digital media company is designing a subscription governance strategy for a dedicated rendering subscription in Azure. The strategy must satisfy the following requirements:
* A team of external editors must be able to manage virtual machines and storage accounts within the subscription.
* The editors' access must be restricted to scheduled editing windows and must not be permanently active.
* Administrative overhead must be minimized by avoiding permissions assigned directly to individual user accounts.
* Any new storage account deployed in the subscription must be automatically configured to use customer-managed keys (CMKs) to satisfy compliance audits.

Which governance configuration should you recommend to meet these requirements?

Cevabı ve açıklamayı göster

Cevap: Assign the Virtual Machine Contributor and Storage Account Contributor roles to a Microsoft Entra security group at the subscription scope, manage the editors' access as eligible group members using Privileged Identity Management (PIM) for Groups, and deploy an Azure Policy with a DeployIfNotExists effect to automatically configure customer-managed keys for new storage accounts.

Cevap

Assign the roles to a security group, configure eligible membership via Privileged Identity Management (PIM) for Groups, and implement an Azure Policy with a DeployIfNotExists effect.
To minimize administrative overhead and ensure scalability, permissions should be assigned to a group rather than individual users. Utilizing Privileged Identity Management (PIM) for Groups with eligible membership allows for just-in-time access control, ensuring editors only have access during their scheduled windows. To enforce automatic configuration of customer-managed keys for compliance without blocking deployments, an Azure Policy with a DeployIfNotExists effect is the correct choice as it can remediate non-compliant resources upon creation.

Adım Adım Çözüm

1
Identify the administrative requirement for managing group memberships rather than individual accounts.
Security group-based delegation is selected.
Group-based assignments reduce administrative overhead and follow identity governance best practices.
2
Analyze the requirement for restricting access to scheduled editing windows.
Privileged Identity Management (PIM) for Groups with eligible assignments is selected.
This prevents permanent privilege accumulation and enforces just-in-time access control.
3
Evaluate the compliance requirement to automatically configure customer-managed keys for new storage accounts.
Azure Policy with the DeployIfNotExists effect is selected.
DeployIfNotExists automatically remediates non-compliant resources at deployment, whereas a Deny policy would block the deployment entirely.

Anahtar Kavram

Subscription Governance and Least Privilege Access Control
Soru 245Soru

Vortex Quantum Systems is designing an identity and access governance solution for its Microsoft Entra ID tenant. The design must satisfy the following security requirements:
- All administrators must be prompted for multi-factor authentication (MFA) when accessing administrative portals.
- Members of the Global Administrator role must activate their role on-demand, and role activation must require MFA.
- The design must prevent administrative lockout in the event of an Azure MFA service outage.

Which two configurations should you include in the design to meet these requirements?

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: In Microsoft Entra Privileged Identity Management (PIM), configure the Global Administrator role to require MFA for activation and assign administrators as eligible.; Configure a Conditional Access policy requiring MFA for all administrative roles, and exclude a dedicated, cloud-only emergency access account from the policy.

Cevap

Configuring the Global Administrator role as eligible in Privileged Identity Management (PIM) with MFA required for activation, and configuring a Conditional Access policy requiring MFA for administrative roles while excluding a dedicated cloud-only emergency access account.
The requirements are met by configuring the Global Administrator role in Microsoft Entra Privileged Identity Management (PIM) as eligible, which enforces on-demand, just-in-time activation with MFA. Additionally, creating a Conditional Access policy requiring MFA for administrative roles while excluding a cloud-only emergency access account secures administrative portals while preventing total tenant lockout during an MFA outage.

Adım Adım Çözüm

1
Analyze the requirement for on-demand administrator role activation with MFA.
Determine that Microsoft Entra Privileged Identity Management (PIM) is required, and role assignments must be configured as eligible (not active) with MFA enabled for activation to enforce just-in-time access.
Active assignments grant permanent access, violating the on-demand requirement.
2
Analyze the requirement to enforce MFA for all administrative access while preventing lockout during an MFA outage.
Determine that a Conditional Access policy must target administrative roles with MFA requirements, but must exclude a dedicated cloud-only emergency access (glass-breaker) account.
Omitting the emergency account from the exclusion list runs the risk of permanent lockout if MFA services become unavailable.

Anahtar Kavram

Enforcing secure administrative access using Microsoft Entra Privileged Identity Management (PIM) and Conditional Access policies with emergency exclusion accounts.
Soru 246Soru

You are designing an Azure Storage solution for storing virtual machine backups. The compliance requirements state that the backup data must remain available even in the event of a catastrophic disaster that causes an entire Azure region to become offline. Which storage redundancy option should you recommend to meet the requirements while minimizing costs?

Cevabı ve açıklamayı göster

Cevap: Geo-redundant storage (GRS)

Cevap

Geo-redundant storage (GRS)
Geo-redundant storage (GRS) replicates data asynchronously to a secondary region, ensuring data is preserved even if the primary region goes offline. It is the most cost-effective option for cross-region replication.

Adım Adım Çözüm

1
Identify the primary disaster recovery requirement.
The system must survive a complete regional outage.
This rules out Locally Redundant Storage (LRS) and Zone-Redundant Storage (ZRS), which only replicate data within a single region.
2
Determine the lowest-cost option that replicates data to a secondary region.
Geo-redundant storage (GRS) meets the requirement by replicating data asynchronously to a secondary paired region.
GRS is more cost-effective than Geo-zone-redundant storage (GZRS) and meets the requirement without needing active read access on the secondary region.

Anahtar Kavram

Selecting the appropriate Azure Storage redundancy tier based on regional availability requirements and cost constraints.
Soru 247Soru

A company is designing the subscription governance structure for its multi-region Azure environment. The environment includes a Production management group that currently contains 15 subscriptions. A centralized operations team requires permissions to start, restart, and monitor virtual machines across all subscriptions within this management group, but they must not be allowed to delete resources or modify virtual machine configurations. The configuration must automatically apply to any new subscriptions added to the Production management group in the future. Additionally, you must ensure that all new virtual machines deployed in these subscriptions are automatically configured with the Azure Monitor agent. Which strategy should you implement to meet the requirements?

Cevabı ve açıklamayı göster

Cevap: Create a custom Azure RBAC role with the specific permissions to start, restart, and monitor virtual machines. Assign this custom role to a Microsoft Entra ID security group containing the operations team, scoped at the Production management group level. Create and assign an Azure Policy definition with the DeployIfNotExists effect to install the Azure Monitor agent on new virtual machines.

Cevap

Create a custom Azure RBAC role with the specific permissions to start, restart, and monitor virtual machines. Assign this custom role to a Microsoft Entra ID security group containing the operations team, scoped at the Production management group level. Create and assign an Azure Policy definition with the DeployIfNotExists effect to install the Azure Monitor agent on new virtual machines.
The correct strategy uses a custom Azure RBAC role assigned to a Microsoft Entra ID security group at the management group level. This enforces the principle of least privilege, manages access efficiently through groups, and ensures that permissions inherit automatically to any new subscriptions. To satisfy the automatic configuration of the Azure Monitor agent on new VMs, an Azure Policy with the DeployIfNotExists effect is required to perform the automatic remediation.

Adım Adım Çözüm

1
Define a custom Azure RBAC role with minimal actions required for VM operations.
The operations team is limited to only starting, restarting, and monitoring VMs, fulfilling the least privilege constraint.
Built-in roles like Virtual Machine Contributor allow deletion and modification, which violates the requirement.
2
Create a Microsoft Entra ID security group and assign the custom role at the Production management group scope.
Access is governed at scale and inherits automatically to all existing and future subscriptions inside the management group.
Assigning roles to groups instead of individual users simplifies administration, and scoping at the management group level ensures inheritance to child subscriptions.
3
Create and assign an Azure Policy with the DeployIfNotExists effect at the management group level.
Any new virtual machines deployed within the subscriptions are automatically configured with the Azure Monitor agent.
A DeployIfNotExists policy automatically remediates non-compliant resources by executing a deployment template, whereas a Deny policy would block deployment.

Anahtar Kavram

Designing scalable subscription governance, least privilege access control, and automatic resource remediation using Azure RBAC, Management Groups, and Azure Policy.
Soru 248Soru

A multinational logistics company is designing an Azure-based data integration and analytical storage solution for real-time fleet telemetry. The system must meet the following requirements:

- Ingest telemetry data at a velocity of 18,00018,000 events per second, peaking at 25,00025,000 events per second.
- Process a total daily volume of 12 TB12\text{ TB} of raw JSON telemetry.
- Store the raw telemetry in an Azure Data Lake Storage Gen2 (ADLS Gen2) account with a retention period of 5 years5\text{ years}, ensuring the storage survives a primary datacenter outage.
- Enable data analysts to run ad-hoc, exploratory SQL queries on the raw JSON files with a target latency of under 30 seconds30\text{ seconds} for the last 24 hours24\text{ hours} of data, without incurring the cost of running persistent compute clusters.
- Grant external auditing firms temporary, read-only access to specific raw data folders for up to 12 hours12\text{ hours}, ensuring that access can be revoked immediately if needed.

Which two configurations or services should you recommend to meet these requirements? (Select TWO)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: Configure the ADLS Gen2 storage account to use Geo-Zone-Redundant Storage (GZRS) and use Azure Synapse serverless SQL pools to perform ad-hoc SQL queries on the raw telemetry files.; Create a stored access policy on the storage container and generate a Shared Access Signature (SAS) token linked to this policy for the external auditing firms.

Cevap

Configure the ADLS Gen2 storage account to use Geo-Zone-Redundant Storage (GZRS), use Azure Synapse serverless SQL pools to perform ad-hoc SQL queries, and create a stored access policy on the storage container to generate linked Shared Access Signature (SAS) tokens for external access.
To satisfy the requirements, GZRS should be selected for the storage account to ensure survival of a primary datacenter outage. Azure Synapse serverless SQL pools should be recommended because they query raw data directly on-demand, avoiding persistent compute cluster costs. Lastly, using a stored access policy linked to SAS tokens allows immediate revocation of temporary access without changing main account keys.

Adım Adım Çözüm

1
Analyze storage redundancy requirements for disaster recovery.
Locally Redundant Storage (LRS) is ruled out because it cannot survive a primary datacenter outage. Geo-Zone-Redundant Storage (GZRS) is selected to provide regional disaster resilience.
The requirement states that the stored telemetry must survive a primary datacenter outage, requiring geo-replication or zone-redundant geo-replication.
2
Analyze ad-hoc query compute requirements.
Azure Synapse serverless SQL pools are selected instead of dedicated SQL pools.
The system must enable ad-hoc SQL queries on raw files without provisioning persistent compute clusters, which matches the on-demand, serverless capabilities of Synapse serverless SQL pools.
3
Analyze secure, temporary external access requirements.
A stored access policy is created on the container, and a SAS token is generated linked to this policy.
This allows immediate revocation of the SAS token by modifying or deleting the policy, which is required to secure the 12-hour external auditing access.

Anahtar Kavram

Designing secure, cost-optimized, and resilient data integration and analytical storage architectures in Azure.
Soru 249Soru

An organization is migrating a legacy multi-tier web application and its backend database to Azure. The application runs on Linux virtual machines. The design has the following requirements:

* The web application servers require a shared file system that supports POSIX-compliant operations, including hard links, and must remain available in the event of an Azure availability zone outage.
* The database virtual machines require a dedicated high-performance disk for transaction logs that provides high write IOPS and sub-millisecond latency.

Which two storage configurations should you include in the design? (Select two.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: Azure Files Premium tier using the NFS 4.1 protocol and configured with Zone-Redundant Storage (ZRS); Premium SSD managed disks for the database transaction logs

Cevap

Azure Files Premium tier using the NFS 4.1 protocol configured with Zone-Redundant Storage (ZRS), and Premium SSD managed disks for database transaction logs.
To meet the requirements, the shared file system must be configured using Azure Files Premium tier with the NFS 4.1 protocol and Zone-Redundant Storage (ZRS) to ensure POSIX compliance (including hard links) and availability zone resilience. For the database transaction logs, Premium SSD managed disks must be selected to deliver the high IOPS and low latency necessary for database write operations.

Adım Adım Çözüm

1
Analyze the requirements for the shared file system.
The file system must support Linux clients (NFS), allow concurrent access, support POSIX hard links, and survive a zone failure. Azure Files Premium tier with NFS 4.1 and ZRS meets all these requirements.
NFS 4.1 on Premium files supports POSIX features like hard links, and ZRS replication protects against availability zone outages.
2
Analyze the requirements for the database transaction logs.
The log drive requires high write IOPS and sub-millisecond latency. Premium SSD or Ultra Disks are required for this profile.
Standard HDDs are designed for backup or archive workloads and cannot meet database transaction log performance demands.

Anahtar Kavram

Selecting Azure storage services and redundancy options based on compatibility, performance (IOPS/latency), and high availability requirements.
Soru 250Soru

A company stores transaction log files in an Azure Data Lake Storage Gen2 account. You need to design an analytical query solution that allows data analysts to perform ad-hoc SQL queries directly on these files with minimal operational overhead. The data must remain available even if the primary Azure region suffers a datacenter outage. Which two configurations should you include in the design? (Select TWO.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: Configure the storage account to use Geo-redundant storage (GRS).; Use a serverless SQL pool in Azure Synapse Analytics.

Cevap

Configure the storage account to use Geo-redundant storage (GRS) and use a serverless SQL pool in Azure Synapse Analytics.
The combination of a serverless SQL pool and Geo-redundant storage (GRS) meets all requirements. A serverless SQL pool enables ad-hoc queries directly on files in Azure Data Lake Storage with minimal operational overhead and cost, while GRS provides replication to a secondary region to protect against datacenter outages.

Adım Adım Çözüm

1
Analyze the query patterns and operational requirements.
The requirements specify ad-hoc queries directly on raw files with minimal operational overhead, which points to Azure Synapse Analytics serverless SQL pools.
Serverless SQL pools require no resource provisioning and charge only for processed data, avoiding the overhead of managing dedicated clusters.
2
Evaluate the resilience requirements for the storage account.
The solution must survive a primary region/datacenter outage, which requires replicating data to a paired region using Geo-redundant storage (GRS).
Locally Redundant Storage (LRS) is limited to a single datacenter and cannot survive regional outages.

Anahtar Kavram

Selecting the appropriate analytical query engines and storage redundancy levels based on operational overhead, cost, and availability requirements.
Soru 251Soru

ValoSpan Logistics is planning the deployment of a security model for their Microsoft Entra ID tenant. The security team wants to apply a Conditional Access policy that enforces Multi-Factor Authentication (MFA) for all administrative roles to protect privileged identities. However, the system design must guarantee that administrators can access the tenant if the primary MFA cloud service becomes completely unavailable. Which option should you recommend to prevent administrator lockout while maintaining a secure posture?

Cevabı ve açıklamayı göster

Cevap: Create two dedicated emergency access accounts, assign them the Global Administrator role, and explicitly exclude these accounts from the Conditional Access policy requiring Multi-Factor Authentication (MFA).

Cevap

Create dedicated emergency access accounts, assign them the Global Administrator role, and exclude them from the Conditional Access policy requiring Multi-Factor Authentication (MFA).
The correct recommendation is to create dedicated, cloud-only emergency access accounts (commonly referred to as break-glass accounts) and exclude them from all Conditional Access policies that require Multi-Factor Authentication (MFA). This ensures that if the MFA service is unavailable, administrators can still access the tenant using these break-glass accounts to troubleshoot or disable policies. Best practices dictate having at least two such accounts, storing their credentials securely in separate physical locations, and monitoring their usage.

Adım Adım Çözüm

1
Analyze the identity requirements and identify the need for emergency recovery access (break-glass accounts) during a Multi-Factor Authentication (MFA) service disruption.
Identified that enforcing MFA for all administrators without exclusions risks tenant lockout during an outage.
To prevent lockout, at least one administrative path must remain available without requiring MFA.
2
Select the correct design implementation by excluding dedicated emergency access accounts from the Conditional Access MFA policies.
Created a policy exclusion for two cloud-only accounts with the Global Administrator role.
This isolates the break-glass accounts from MFA requirements while keeping all other administrative accounts secured by MFA.
3
Verify that alternative methods like Privileged Identity Management (PIM) permanent roles or Active Directory Federation Services (AD FS) do not securely resolve the lockout risk.
Rejected permanent PIM assignments and AD FS deployment due to security risks and infrastructure overhead.
Ensures the solution aligns with Microsoft security and design best practices.

Anahtar Kavram

Conditional Access Policies and Emergency Access Accounts
Tahmini Süre:1m 30s
Soru 252Soru

You are designing the storage architecture for a global multiplayer online game. The solution must store player profiles and dynamic inventories, and also provide access to large game asset files, such as character textures and game replays. The solution must meet the following requirements:

* Player profiles and inventories: Must support sub-10ms write latency for active players in East US, West Europe, and East Asia, and must prevent hot partition bottlenecks when players gather for large in-game events.
* Game asset files: Must be secured using time-constrained, revocable tokens.
* High Availability: The storage of game assets must survive a regional datacenter outage with zero data loss.

Which database and storage configuration should you recommend?

Cevabı ve açıklamayı göster

Cevap: Use Azure Cosmos DB for NoSQL with multi-region writes enabled across all three regions, partitioning the player container by `playerId`. For game assets, use Azure Blob Storage with Geo-Redundant Storage (GRS) and generate Shared Access Signatures (SAS) associated with a stored access policy.

Cevap

Use Azure Cosmos DB for NoSQL with multi-region writes enabled, partition the player container by player identifier, use Geo-Redundant Storage (GRS) for game assets, and generate Shared Access Signatures (SAS) associated with a stored access policy.
The correct design uses Azure Cosmos DB for NoSQL with multi-region writes to provide low-latency writes across global regions. Partitioning by player identifier ensures a high-cardinality key, distributing database operations evenly to avoid hot partitions. Using Azure Blob Storage with Geo-Redundant Storage (GRS) ensures the game assets survive a primary datacenter outage, and using Shared Access Signatures (SAS) linked to a stored access policy allows for revocable, time-constrained token access.

Adım Adım Çözüm

1
Select the database partitioning and replication model
Cosmos DB with multi-region writes enabled and partitioning by player identifier.
Multi-region writes ensure sub-10ms write latency in East US, West Europe, and East Asia. Using a unique player identifier as the partition key ensures high cardinality, preventing hot partitions that would occur with a lower cardinality key like a guild identifier.
2
Select the storage redundancy tier
Azure Blob Storage with Geo-Redundant Storage (GRS).
GRS replicates data to a secondary region, ensuring the storage of assets survives a regional datacenter outage, unlike Locally Redundant Storage (LRS) which is limited to a single datacenter.
3
Configure security access tokens
Shared Access Signatures (SAS) linked to a stored access policy.
Linking a SAS to a stored access policy allows you to revoke or change the token parameters (like permissions or expiration) without rotating storage account keys, which is impossible with long-lived ad-hoc SAS tokens.

Anahtar Kavram

Azure Cosmos DB partitioning, multi-region replication, Azure Storage redundancy, and SAS security policies.
Tahmini Süre:2m 30s
Soru 253Soru

Kestrel Healthcare Services is designing a hybrid identity and access management solution for a new Microsoft Entra ID tenant. The on-premises Active Directory Domain Services (AD DS) domain will synchronize with Microsoft Entra ID. The design must satisfy the following requirements:
- Users must be able to authenticate to cloud services even if the connection between the on-premises network and Azure is completely lost.
- The security team must be able to detect if user credentials synchronized from on-premises have been posted to the dark web.
- Multi-factor authentication (MFA) must be enforced for all administrative tasks performed by the IT support team.
- The organization must prevent administrative lockout of the tenant if the Entra ID multi-factor authentication service or the Privileged Identity Management (PIM) service experiences an outage.

Which of the following infrastructure designs should you recommend?

Cevabı ve açıklamayı göster

Cevap: Implement Password Hash Synchronization (PHS) as the hybrid authentication method. Configure a Conditional Access policy to enforce multi-factor authentication (MFA) for the Global Administrator role, and exclude two cloud-only emergency access accounts. Assign the Global Administrator role permanently to these two emergency access accounts.

Cevap

Implement Password Hash Synchronization (PHS) as the hybrid authentication method. Configure a Conditional Access policy to enforce multi-factor authentication (MFA) for the Global Administrator role, and exclude two cloud-only emergency access accounts. Assign the Global Administrator role permanently to these two emergency access accounts.
The correct design uses Password Hash Synchronization (PHS) to ensure offline authentication availability and enable leaked credential detection, which is a feature of Entra ID Protection. It enforces MFA on administrative roles using Conditional Access while excluding emergency access accounts from the MFA policy. These break-glass accounts are permanently assigned the Global Administrator role (rather than eligible through PIM) to ensure they can be used to recover tenant access if Entra ID MFA or PIM services experience an outage.

Adım Adım Çözüm

1
Select the hybrid authentication method that provides offline resilience and leaked credential detection.
Password Hash Synchronization (PHS) is selected.
PHS allows authentication directly in the cloud, ensuring users can log in even if the on-premises link is offline. Microsoft Entra ID Protection also requires PHS to compare password hashes with credentials leaked on the dark web.
2
Formulate a policy to secure administrative accounts while preventing tenant lockout.
Create a Conditional Access policy that requires MFA for the Global Administrator role, but exclude two break-glass emergency access accounts.
Enforcing MFA on administrators is a security best practice, but excluding break-glass accounts ensures that if the MFA service goes down, administrators can still access the tenant.
3
Configure the role assignment method for the emergency access accounts.
Assign the Global Administrator role permanently to the emergency access accounts, rather than making them eligible in Privileged Identity Management (PIM).
Emergency access accounts must not depend on PIM to activate their roles, because a PIM service outage would prevent activation and lead to lockout.

Anahtar Kavram

Microsoft Entra ID hybrid authentication resilience, Conditional Access exclusions, and emergency access account best practices.
Tahmini Süre:3m 0s
Soru 254Soru

A utility company is designing a secure storage solution for smart grid telemetry data stored in Azure Blob Storage. The solution must meet the following requirements:
- Support temporary, read-only access to specific blob containers for external auditors. This access must automatically expire after 88 hours and must be capable of being revoked immediately if a security compromise is suspected.
- Restrict network access to only allow traffic from the company's on-premises office IP range (198.51.100.0/24198.51.100.0/24) and a dedicated Azure Virtual Network (VNet).
- Minimize administrative effort and adhere to the principle of least privilege.

Which two configurations should you include in the design?

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: Create a stored access policy on the blob containers, and generate service shared access signatures (SAS) associated with the policy.; Configure the storage account firewall to permit access from the 198.51.100.0/24198.51.100.0/24 IP range and enable a private endpoint connected to the VNet.

Cevap

Create a stored access policy on the blob containers and generate service shared access signatures (SAS) associated with the policy, and configure the storage account firewall to permit access from the IP range and enable a private endpoint connected to the VNet.
Using a stored access policy associated with service SAS tokens ensures that access can be revoked immediately by altering or removing the policy. Restricting the storage firewall to the specified IP address range and using a private endpoint within the VNet properly isolates network access to only authorized sources.

Adım Adım Çözüm

1
Evaluate the requirement for temporary, revocable access.
Identify that ad-hoc SAS tokens cannot be revoked individually without rotating keys, whereas service SAS tokens associated with a stored access policy can be revoked instantly by modifying or deleting the policy.
This satisfies the requirement to support 8-hour access that can be immediately revoked.
2
Evaluate the network restriction requirement.
Determine that combining a storage firewall rule for the public on-premises IP range and a private endpoint for private VNet access restricts network access securely.
This satisfies the network access restriction requirement.
3
Evaluate the identity and access management requirements.
Avoid direct RBAC user assignments and permanently active PIM assignments.
This ensures adherence to identity governance best practices and the principle of least privilege.

Anahtar Kavram

Securing Azure Storage access using stored access policies for revocable SAS tokens and network firewalls with private endpoints.
Soru 255Soru

Zenith Retail Global is designing a secure identity and access strategy using Microsoft Entra ID. The solution must map specific access control and threat mitigation requirements to the correct Microsoft Entra ID features. Match each security requirement on the left to its corresponding Microsoft Entra ID or Conditional Access feature on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Enforce that administrators re-authenticate every 4 hours when accessing administrative portals from untrusted locations.
Restrict web-based Outlook sessions on unmanaged devices to read-only access without file download capabilities.
Require phishing-resistant multi-factor authentication (MFA) specifically when accessing a critical financial ledger application.
Force a password change using self-service password reset if user credentials are found to be leaked on the dark web.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Sign-in frequency matches administrators re-authenticating every 4 hours; App-enforced restrictions matches restricting Outlook sessions to prevent downloads on unmanaged devices; Authentication strength matches requiring phishing-resistant MFA for the financial ledger application; User risk policy matches forcing a password change when credentials are leaked on the dark web.
The correct matches align each security requirement with its specific Entra ID capability: Sign-in frequency manages the session duration (4 hours); App-enforced restrictions leverage application capabilities to restrict downloads on unmanaged devices; Authentication strength specifies the exact allowed MFA methods (phishing-resistant); and User risk policy addresses compromised credentials (leaked on the dark web) by requiring a password reset.

Adım Adım Çözüm

1
Analyze the administrative re-authentication requirement.
Identified the need to control the validity duration of user sessions.
Sign-in frequency is a Conditional Access session control that specifies how long a user's sign-in remains valid before they must authenticate again.
2
Analyze the unmanaged device document download restriction requirement.
Identified the need to limit app capabilities based on device compliance/management status.
App-enforced restrictions allow Entra ID to pass device state to Exchange Online or SharePoint Online, allowing those apps to block file downloads during browser-based sessions.
3
Analyze the specific MFA type (phishing-resistant) requirement for the financial application.
Identified the need to define allowed authentication methods beyond basic MFA.
Authentication strength is a grant control that enforces specific methods like phishing-resistant MFA (FIDO2 or Windows Hello for Business) rather than standard MFA.
4
Analyze the leaked credentials scenario.
Identified the threat category as user-specific identity compromise (user risk).
Microsoft Entra ID Protection's User risk policy detects identity-level issues (like leaked credentials on the dark web) and can require self-service password reset (SSPR) to remediate the risk.

Anahtar Kavram

Microsoft Entra ID Conditional Access controls and Microsoft Entra ID Protection policies.
Soru 256Soru

A manufacturing corporation uses an Azure Storage account to store telemetry logs from industrial IoT devices. You are designing a security and access control strategy that meets the following requirements:
1. External maintenance technicians require read-only access to a specific blob container for a 24-hour maintenance window.
2. The access must be immediately revocable at any time without rotating the storage account access keys or impacting other active applications.
3. Internal security administrators responsible for configuring storage access must use Microsoft Entra Privileged Identity Management (PIM) to activate their privileges on a just-in-time (JIT) basis.
4. All administrative assignments and roles must be scalable and avoid direct assignment to individual user identities.

Which of the following designs should you recommend?

Cevabı ve açıklamayı göster

Cevap: Configure a Stored Access Policy on the blob container and generate a service Shared Access Signature (SAS) token linked to this policy for the external technicians. For the internal administrators, create a Microsoft Entra ID security group, assign the Storage Blob Data Owner role to this group, and configure the administrators as eligible members of the group in PIM.

Cevap

Configure a Stored Access Policy on the blob container and generate a service Shared Access Signature (SAS) token linked to this policy for the external technicians. For the internal administrators, create a Microsoft Entra ID security group, assign the Storage Blob Data Owner role to this group, and configure the administrators as eligible members of the group in PIM.
The correct design secures the external technician access by creating a Stored Access Policy on the blob container and generating a service SAS token associated with it. This satisfies the requirement of immediate revocability without rotating the storage keys. Furthermore, it ensures administrative scalability and compliance with the principle of least privilege by assigning the Storage Blob Data Owner RBAC role to a Microsoft Entra ID security group and configuring the administrators as eligible members of this group in PIM, enforcing just-in-time access.

Adım Adım Çözüm

1
Select the correct mechanism for temporary external access that supports immediate revocation.
Implement a service Shared Access Signature (SAS) associated with a Stored Access Policy on the container.
An ad-hoc SAS cannot be revoked without rotating storage account keys, which would impact other applications. A Stored Access Policy allows revocation by deleting or modifying the policy directly.
2
Design a scalable role assignment mechanism for internal administrators.
Create a Microsoft Entra ID security group and assign the Storage Blob Data Owner role to this group.
Assigning RBAC roles to security groups rather than individual user accounts aligns with the principle of administrative scalability and simplifies identity management.
3
Apply the principle of least privilege and just-in-time (JIT) access control.
Configure administrators as eligible (rather than active) members of the Entra ID security group in PIM.
Eligible status requires administrators to explicitly activate their role when needed, providing JIT access and ensuring that administrative privileges are not permanently active.

Anahtar Kavram

Delegating storage access securely using Stored Access Policies and automating identity lifecycle governance using Microsoft Entra PIM groups.
Soru 257Soru

An enterprise is designing the storage infrastructure for a financial analytics application that is migrating to Azure. The application has the following requirements:
- A database running on an Azure Virtual Machine requires a dedicated managed disk for write-heavy transaction logs with a performance target of 10,00010,000 IOPS and sub-millisecond write latency.
- A shared volume must be mounted concurrently by ten Linux servers to process incoming CSV files via the NFS v4.1 protocol with sub-millisecond latency.
- Telemetry logs must be stored cost-effectively for five years. The logs are rarely accessed but must be available for immediate, sub-second query execution when requested.

Which two storage configurations should you include in the design?

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: Premium SSD v2 managed disks for the database transaction logs; An Azure Files Premium tier file share for the shared volume

Cevap

Premium SSD v2 managed disks for the database transaction logs and an Azure Files Premium tier file share for the shared volume
Premium SSD v2 managed disks provide the sub-millisecond write latency and high IOPS capabilities needed for transaction logs. Azure Files Premium tier is required because NFS v4.1 shares are only supported on the Premium tier.

Adım Adım Çözüm

1
Evaluate the database transaction log requirement.
Identify that the database requires 10,00010,000 IOPS and sub-millisecond write latency.
Premium SSD v2 or Ultra Disk is required to achieve sub-millisecond latency. Premium SSD v2 is the most cost-effective option that satisfies these requirements, whereas Standard HDD cannot support such IOPS or latency targets.
2
Evaluate the shared volume requirement.
Determine that the file share must support NFS v4.1 and concurrent access from ten Linux servers.
Azure Files supports NFS v4.1 only in the Premium tier. Standard tier Azure Files supports only SMB and REST protocols.
3
Evaluate the telemetry logs retrieval latency requirement.
Determine that while the data is rarely accessed, it must be queryable with sub-second retrieval times.
Moving data to the Archive tier introduces a rehydration latency of hours, which does not allow for immediate, sub-second query execution.

Anahtar Kavram

Selecting Azure storage services and tiers based on latency, performance, protocol, and redundancy requirements.
Soru 258Soru

A financial services firm is onboarding an external auditing agency to review its Azure subscription resources. The agency has five auditors who need temporary, approved access to the 'Reader' role on a production subscription. The firm's security policy requires:
- Access must be delegated and managed via groups rather than assigning roles directly to individual user accounts.
- Access must be activated on-demand (Just-In-Time) and require approval.
- The firm must also implement a Conditional Access policy to enforce multi-factor authentication (MFA) for all administrative access, but must prevent tenant lockout of their emergency-access accounts.

Which solution should you recommend to meet these requirements?

Cevabı ve açıklamayı göster

Cevap: Create a security group, assign the 'Reader' role to the group, configure Microsoft Entra Privileged Identity Management (PIM) for Groups to make the auditors eligible for group membership, and configure a Conditional Access policy requiring MFA for administrative access that explicitly excludes the emergency-access accounts.

Cevap

Create a security group, assign the 'Reader' role to the group, configure Microsoft Entra Privileged Identity Management (PIM) for Groups to make the auditors eligible for group membership, and configure a Conditional Access policy requiring MFA for administrative access that explicitly excludes the emergency-access accounts.
The correct solution uses a security group to manage permissions, aligning with Azure RBAC best practices of avoiding individual assignments. By configuring Microsoft Entra Privileged Identity Management (PIM) for Groups, the external auditors can activate their membership in the group on-demand (Just-In-Time), which automatically grants them the 'Reader' role. Additionally, excluding the emergency-access accounts from the administrative multi-factor authentication (MFA) Conditional Access policy follows security best practices to prevent directory lockout.

Adım Adım Çözüm

1
Identify the governance mechanism for group-based role delegation.
Determine that assigning Azure RBAC roles to a Microsoft Entra security group satisfies the requirement to manage permissions via groups rather than individual accounts.
Ensures scalable access governance and minimizes administrative overhead.
2
Configure Just-In-Time (JIT) access for group members.
Configure Privileged Identity Management (PIM) for Groups to make the auditors eligible for group membership.
Enables on-demand activation of group membership, which transitively grants the assigned roles only when required.
3
Enforce MFA and protect break-glass accounts.
Create a Conditional Access policy enforcing MFA for administrative roles, and add the emergency-access accounts to the policy's exclusion list.
Ensures secure administrative access while preventing tenant lockout in the event of an identity provider outage.

Anahtar Kavram

Implementing group-based Privileged Identity Management (PIM) and safe Conditional Access policies.
Soru 259Soru

An organization needs to set up a backup strategy for their Azure Virtual Machines hosting development and testing workloads. The design must meet the following requirements:
- Minimize storage costs for the backup data.
- Retain daily backups for 30 days.
- Provide the fastest possible restore speed for the last 5 days of backups.

Which of the following configurations should you include in the backup design? (Select TWO).

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: A Recovery Services vault configured with Locally Redundant Storage (LRS); A backup policy with the instant restore retention range set to 5 days

Cevap

To meet the requirements of minimizing costs and allowing rapid restore for the last 5 days, you should configure the Recovery Services vault with Locally Redundant Storage (LRS) and set the instant restore retention range to 5 days in the backup policy.
For non-production development environments, minimizing costs is achieved by using Locally Redundant Storage (LRS). Rapid restores are achieved by keeping snapshots on local disk using the instant restore feature, which is limited to a maximum retention of 5 days.

Adım Adım Çözüm

1
Select the backup storage redundancy option that minimizes cost.
Choose Locally Redundant Storage (LRS) because it is the cheapest storage replication option for the Recovery Services vault.
LRS keeps three copies of the data within a single datacenter, which is sufficient for non-production environments and reduces costs compared to zone-redundant or geo-redundant storage.
2
Determine the configuration to achieve the fastest restore speed for the most recent 5 days of backups.
Configure the backup policy's instant restore retention to 5 days.
This retains the backup snapshots on the local disk tier for 5 days, allowing fast, disk-level restore operations instead of copying data from the vault.
3
Verify retention limitations for daily recovery points.
Keep the remaining 25 days of recovery points in the vault tier by setting the total retention to 30 days.
Instant restore snapshots cannot be kept for 30 days due to the 5-day limit, so the rest of the 30-day period must use vault-tier storage.

Anahtar Kavram

Configuring Recovery Services vault storage redundancy and backup policy instant restore limitations
Tahmini Süre:1m 0s
Soru 260Soru

An enterprise is designing a high-availability SQL Server Failover Cluster Instance (FCI) on Azure Virtual Machines. The virtual machines are distributed across two Availability Zones within a single region. The database requires a shared storage volume that supports SCSI Persistent Reservations. The storage solution must sustain high IOPS with low latency for transactional workloads and must remain online even if a single datacenter zone experiences an outage. Which storage solution should you recommend?

Cevabı ve açıklamayı göster

Cevap: Premium SSD managed disks configured with Zone-Redundant Storage (ZRS) and Shared Disks enabled

Cevap

Premium SSD managed disks configured with Zone-Redundant Storage (ZRS) and Shared Disks enabled
The correct answer is the option recommending Premium SSD managed disks configured with Zone-Redundant Storage (ZRS) and Shared Disks enabled. This configuration satisfies the block-storage requirement for SCSI-3 Persistent Reservations, provides the low latency needed for database workloads, and replicates data synchronously across three availability zones to handle zone outages.

Adım Adım Çözüm

1
Identify the protocol and access requirement for the clustered database workload.
The requirement specifies SCSI Persistent Reservations, which requires a block storage solution with Shared Disks enabled rather than file-level storage.
Traditional SQL Server Failover Cluster Instances (FCI) rely on shared block storage volumes that support SCSI-3 persistent reservations to coordinate access between active and passive nodes.
2
Determine the availability and zone-resiliency requirements.
The system must survive a single availability zone failure, meaning the storage must support Zone-Redundant Storage (ZRS). Locally Redundant Storage (LRS) is insufficient.
ZRS replicates data synchronously across three availability zones in the primary region, ensuring data remains accessible during a zone outage.
3
Evaluate disk type compatibility for Shared Disks and ZRS.
Only Premium SSD managed disks support both Shared Disks and Zone-Redundant Storage (ZRS) while meeting the low latency and high IOPS demands.
Ultra Disks only support LRS, and Standard SSDs do not support ZRS in combination with Shared Disks, nor do they meet the performance requirements for database transaction logs.

Anahtar Kavram

Azure Shared Disks enable sharing a managed disk across multiple VMs, with Premium SSD supporting both ZRS and the SCSI persistent reservations needed for cluster configurations.
Tahmini Süre:1m 30s
ÖncekiSayfa 13 / 60Sonraki