Tüm alıştırma soruları

1186 soru

Soru 1061Soru

The location specified when creating an Azure resource group determines where the metadata for that resource group is stored, and it does not restrict the region in which resources inside that group can be deployed.

Cevabı ve açıklamayı göster

Cevap: True

Cevap

True
The correct answer is True because Azure resource groups store metadata about their resources, and the resource group's location specifies where this metadata resides. This location does not restrict the regions of the resources contained within the group.

Adım Adım Çözüm

1
Analyze the purpose of the resource group location.
The resource group location specifies where the metadata about the resources in the group is stored, which is crucial for compliance and sovereignty.
Understanding why a resource group requires a region even though it is a logical container.
2
Analyze the restriction on resource locations within the resource group.
Resources placed in a resource group do not inherit or conform to the resource group's region; they can be deployed to any region allowed by the subscription.
Evaluating whether the resource group location restricts resource deployment.
3
Combine these findings to evaluate the statement.
The statement is true because the resource group location defines the metadata storage location and does not limit resource deployment regions.
Concluding the validity of the true/false statement.

Anahtar Kavram

Azure Resource Group Location and Metadata Storage
Soru 1062Soru

A company is planning to migrate its payroll application to Azure. To ensure the application remains online, the lead architect proposes deploying the application across two Availability Zones within the same Azure region. Is the statement that this deployment strategy will protect the application from a region-wide disaster, such as a severe storm that impacts the entire region, true or false?

Cevabı ve açıklamayı göster

Cevap: False

Cevap

False
The correct answer is false because Availability Zones only protect against localized failures within a single region's datacenters. A region-wide disaster impacts the entire geographic region, meaning all Availability Zones within that region could be affected simultaneously. Protection against such disasters requires a multi-region deployment strategy, typically utilizing Azure Region Pairs.

Adım Adım Çözüm

1
Analyze the proposed deployment strategy and the scope of protection it offers.
Deploying across two Availability Zones within the same Azure region provides redundancy against localized datacenter failures (power, cooling, network) but not region-wide failures.
Availability Zones are physically separate datacenters within a single Azure region.
2
Compare the scope of a region-wide disaster to the boundary of Availability Zones.
A region-wide disaster, such as a major hurricane, impacts the entire region, which includes all Availability Zones within that region.
Since all Availability Zones in a region are in the same geographic area, they are subject to the same region-wide disaster risks.
3
Determine if the statement is true or false.
The statement is false because Availability Zones do not protect against region-wide disasters.
To protect against region-wide disasters, resources must be deployed across multiple regions (e.g., using Azure Region Pairs), not just multiple zones within the same region.

Anahtar Kavram

Availability Zones protect against localized datacenter outages within a single region, whereas Region Pairs (multi-region deployments) are required to protect against region-wide disasters.
Tahmini Süre:1m 0s
Soru 1063Soru

A smart agriculture company hosts its global sensor data processing solution in Azure. The solution must meet the following operational requirements:
- The system must remain operational and recover its data in a different geographic region if the primary region suffers a complete, catastrophic outage.
- The deployment template must ensure that application performance and resource costs remain consistent and within expected thresholds across testing and production environments.

Which two cloud concepts are directly demonstrated by these requirements? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Predictability; Disaster Recovery

Cevap

Predictability and Disaster Recovery are the correct concepts.
The requirement to recover data and restore operations in a different region after a catastrophic regional outage represents Disaster Recovery. The requirement to maintain consistent performance and cost behavior across multiple environments represents Predictability.

Adım Adım Çözüm

1
Analyze the first requirement regarding regional outage recovery.
Identify that recovering from a catastrophic regional outage in a separate geographic region represents disaster recovery rather than fault tolerance.
Disaster recovery involves failing over to another region to restore service after a disaster, whereas fault tolerance keeps systems up and running during localized component failures within a region.
2
Analyze the second requirement regarding performance and cost consistency.
Identify that ensuring consistent performance and resource costs across different environments is a benefit of predictability.
Predictability in the cloud can be configuration-based (ensuring templates deploy identical environments) or cost-based (ensuring costs are forecastable and consistent).

Anahtar Kavram

Cloud concepts of Predictability and Disaster Recovery in Microsoft Azure
Soru 1064Soru

A company can deploy a custom accounting application to Azure App Service if the application requires specific operating system registry modifications and the installation of custom background system services.

Cevabı ve açıklamayı göster

Cevap: False

Cevap

The statement is false.
The correct answer is false because Azure App Service is a Platform as a Service (PaaS) offering. Under the PaaS model, the cloud provider manages the operating system, hardware, and runtime. The customer does not have access to the underlying OS configuration, registry, or system services. Applications requiring registry edits or custom background system services must be deployed using an Infrastructure as a Service (IaaS) model, such as Azure Virtual Machines.

Adım Adım Çözüm

1
Analyze the application requirements.
The application requires operating system registry modifications and custom background system services.
Understanding the host-level requirements is necessary to determine the appropriate cloud service model.
2
Evaluate the management model of Azure App Service.
Azure App Service is a Platform as a Service (PaaS) offering where Microsoft manages the operating system, middleware, and runtime.
Knowing who manages the operating system helps determine if administrative OS-level modifications are allowed.
3
Determine if PaaS can support the required OS modifications.
Because PaaS restricts access to the underlying OS registry and system services, Azure App Service cannot host this application. The application requires an Infrastructure as a Service (IaaS) solution like Azure Virtual Machines.
This confirms that the statement claiming the application can be deployed to Azure App Service is false.

Anahtar Kavram

Platform as a Service (PaaS) limits administrative access to the underlying operating system, whereas Infrastructure as a Service (IaaS) provides full control over the operating system configuration.
Soru 1065Soru

An administrator is setting up an Azure environment for a new sales application. The administrator creates a resource group named rg-sales-data and sets its location to North Europe. The database for the application must be deployed in West Europe to meet local compliance requirements, while the virtual machine can be deployed in North Europe. Which configuration option should the administrator use to deploy these resources?

Cevabı ve açıklamayı göster

Cevap: Deploy both the database in West Europe and the virtual machine in North Europe directly within the rg-sales-data resource group.

Cevap

Deploy both the database in West Europe and the virtual machine in North Europe directly within the rg-sales-data resource group.
The correct configuration is to deploy both the database in West Europe and the virtual machine in North Europe directly within the rg-sales-data resource group. Azure resource groups do not restrict the location of the resources they contain. A resource group's location is only used to store its metadata, allowing you to group resources that share a lifecycle even if they are deployed in different regions.

Adım Adım Çözüm

1
Analyze the relationship between resource group location and resource location.
The resource group location determines where its metadata is stored, but it does not restrict the geographic region of the resources placed inside it.
This allows resources from different regions to share the same lifecycle management within a single resource group.
2
Evaluate the possibility of nesting resource groups.
Azure does not support nesting resource groups within other resource groups.
Resource groups are flat containers immediately under an Azure subscription.
3
Select the configuration that successfully deploys the database in West Europe and the virtual machine in North Europe under the single rg-sales-data resource group.
The correct option is to deploy both resources directly inside rg-sales-data, despite them residing in different regions.
This is fully supported in Azure and aligns with resource group architecture rules.

Anahtar Kavram

Azure resource groups act as logical containers for resources, and resources inside a resource group can reside in different regions than the resource group itself. Additionally, resource groups cannot be nested.
Soru 1066Soru

An organization is designing a critical web application on Azure. The application must meet two key requirements:

1. It must remain online even if an entire datacenter facility within the primary region experiences a power or cooling failure.
2. In the event of a catastrophic disaster affecting the entire primary region, the application must be restorable in a secondary region that is at least 300 miles away, while ensuring that Azure platform updates are never applied to both regions simultaneously.

Which combination of Azure architectural features should the organization use to meet these requirements?

Cevabı ve açıklamayı göster

Cevap: Availability Zones for datacenter failure protection, and Azure Region Pairs for disaster recovery

Cevap

Availability Zones for datacenter failure protection, and Azure Region Pairs for disaster recovery
The correct option is the choice specifying Availability Zones and Azure Region Pairs. Availability Zones protect applications from datacenter-level failures within a single region because each zone consists of one or more datacenters equipped with independent power, cooling, and networking. Azure Region Pairs provide disaster recovery across regions separated by at least 300 miles, with the unique advantage that Azure schedules platform updates sequentially across paired regions to prevent simultaneous downtime.

Adım Adım Çözüm

1
Analyze the first requirement: protection against an entire datacenter failure within a single region.
Identify that Availability Zones consist of one or more physical datacenters with independent power, cooling, and networking within a region, making them the correct choice to survive datacenter outages.
Availability Sets only protect against rack-level failures within a single datacenter, and Resource Groups are logical boundaries, not physical ones.
2
Analyze the second requirement: disaster recovery to a secondary region at least 300 miles away with sequential updates.
Identify that Azure Region Pairs are designed specifically for regional disaster recovery, spanning at least 300 miles of separation and receiving sequential Azure platform updates to avoid concurrent downtime.
Other features like Edge Zones are for edge computing/low-latency services, and Resource Groups have no geographic replication features.

Anahtar Kavram

Azure physical infrastructure components including Availability Zones and Region Pairs
Soru 1067Soru

A company is planning to migrate two workloads to Azure:

* Workload 1: A legacy server application that requires full administrative control over the operating system, custom registry settings, and control over updates.
* Workload 2: A remote workstation environment for 50 temporary contractors who need to run standard productivity tools on Windows 11. Multiple contractors must share the compute resources of the same virtual machine simultaneously to reduce hosting expenses.

Which of the following statements are correct regarding how the company should implement these workloads? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Deploying the legacy server application on Azure Virtual Machines provides the required administrative control over the guest operating system configuration.; Deploying Azure Virtual Desktop with Windows 11 Enterprise multi-session allows multiple contractors to log in and share the resources of a single virtual machine.

Cevap

Deploying the legacy server application on Azure Virtual Machines provides administrative control, and deploying Azure Virtual Desktop with Windows 11 Enterprise multi-session allows multiple contractors to share virtual machine resources.
Deploying the legacy server application on Azure Virtual Machines is correct because it belongs to the Infrastructure as a Service (IaaS) model, where the customer receives full administrative control over the guest operating system to customize registry settings and manage updates. Deploying Azure Virtual Desktop with Windows 11 Enterprise multi-session is also correct because it specifically allows multiple concurrent users to access a single virtualized client environment, reducing resource overhead and lowering costs.

Adım Adım Çözüm

1
Analyze the administrative requirements for Workload 1.
The application requires OS customization, registry access, and control over updates. Azure Virtual Machines (IaaS) provides full administrative access to the OS.
IaaS resources give the customer control over everything from the OS level upward.
2
Analyze the multi-session requirements for Workload 2.
Multiple users must concurrently share a Windows 11 client environment. Azure Virtual Desktop supports Windows 11 Enterprise multi-session for this purpose.
Standard Azure VMs running standard Windows client OS do not support concurrent multi-session connections natively; this capability is enabled via Azure Virtual Desktop.

Anahtar Kavram

Understanding the differences, administrative scopes, and sharing models of Azure Virtual Machines and Azure Virtual Desktop.
Soru 1068Soru

A university needs to orchestrate a data integration workflow that automatically triggers when a student submits an enrollment form. The administration wants to build this workflow using a graphical designer and pre-built connector blocks rather than writing custom code. Which Azure service is designed to meet this requirement?

Cevabı ve açıklamayı göster

Cevap: Azure Logic Apps

Cevap

Azure Logic Apps
Azure Logic Apps is the correct service because it is a serverless, designer-first orchestration engine. It allows users to build workflows visually using a graphical designer and pre-built connector blocks with minimal or no custom code.

Adım Adım Çözüm

1
Analyze the requirements from the scenario.
The requirements are: a serverless integration workflow, triggered by an event, built using a visual/graphical designer and pre-built connectors, with no custom code.
Identifying these key requirements helps filter out code-first or infrastructure-heavy services.
2
Compare the features of Azure Logic Apps and Azure Functions.
Azure Logic Apps is designer-first (visual workflow, pre-built connectors), whereas Azure Functions is code-first (requires writing custom code to execute tasks).
This distinction isolates the correct serverless service suited for non-developers or low-code scenarios.
3
Eliminate other non-serverless or out-of-scope services.
Azure Virtual Machines is an IaaS compute service requiring OS management, and Microsoft 365 is a SaaS application suite rather than an integration platform.
Ensures that IaaS and SaaS options are rejected based on the service model and integration requirements.

Anahtar Kavram

Azure Logic Apps is a serverless, designer-first integration platform that uses pre-built connectors to automate workflows without writing custom code.
Tahmini Süre:45s
Soru 1069Soru

A company needs to host a web application on a customized installation of Windows Server. The company requires full administrative access to the operating system to configure custom background services. Which Azure service should they deploy?

Cevabı ve açıklamayı göster

Cevap: Azure Virtual Machines

Cevap

Azure Virtual Machines
Azure Virtual Machines provide Infrastructure as a Service (IaaS), which gives you full control over the virtual machine, including administrative access to the operating system. This allows you to install custom software, configure the OS, and run background processes exactly as needed.

Adım Adım Çözüm

1
Identify the core requirement from the scenario.
The requirement is hosting a web application on a customized server operating system with full administrative access.
This helps determine the required cloud service model (IaaS vs. PaaS).
2
Evaluate the available compute options against the requirement.
Only Infrastructure as a Service (IaaS) options like Azure Virtual Machines provide full root/administrator access to the underlying operating system.
Platform as a Service (PaaS) and serverless services abstract the operating system level away from the user.

Anahtar Kavram

Azure Virtual Machines as an IaaS offering providing full operating system control
Tahmini Süre:45s
Soru 1070Soru

A retail company wants to automate its order processing system. The solution must run a custom C# script to validate inventory levels and then send a confirmation email to the customer using an Office 365 Outlook connector. Which of the following recommendations should the company implement? (Select two).

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

Cevabı ve açıklamayı göster

Cevap: Use Azure Functions to execute the custom C# script.; Use Azure Logic Apps to design the workflow and integrate the Outlook connector.

Cevap

Use Azure Functions to execute the custom C# script, and use Azure Logic Apps to design the integration workflow and connect the Office 365 Outlook service.
The solution requires both custom code execution and visual workflow orchestration. The recommendation to use Azure Functions is correct because it provides serverless compute to execute custom scripts like C#. The recommendation to use Azure Logic Apps is correct because it is a serverless orchestration service that makes it easy to integrate with systems such as Outlook using pre-built connectors.

Adım Adım Çözüm

1
Identify the service for custom code execution.
Azure Functions is selected because it is a code-first, serverless compute service designed to run custom code such as C# scripts.
Running custom application logic requires code execution capability rather than visual workflows.
2
Identify the service for system integration and visual workflow orchestration.
Azure Logic Apps is selected because it provides a visual designer and pre-built connectors to orchestrate workflows and connect to services like Office 365 Outlook.
Connecting multiple services and triggering workflows is best achieved using a visual orchestrator.

Anahtar Kavram

Azure Serverless Compute services: Azure Functions for code-first execution and Azure Logic Apps for connector-first workflow orchestration.
Soru 1071Soru

An organization is planning its cloud infrastructure strategy in Microsoft Azure. The architecture team needs to define how services will be distributed to meet high availability and disaster recovery goals. Which two of the following statements are true about Azure architecture components?

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

Cevabı ve açıklamayı göster

Cevap: Azure Availability Zones are unique physical locations within an Azure region, with each zone containing one or more datacenters equipped with independent power, cooling, and networking.; An Azure region pair consists of two regions within the same geography, typically separated by at least 300 miles, to provide disaster recovery protection.

Cevap

The two correct statements are that Azure Availability Zones are unique physical locations with independent infrastructure within an Azure region, and that an Azure region pair consists of two regions within the same geography typically separated by at least 300 miles.
The correct statements are the ones describing Availability Zones as isolated datacenters within a single region with independent infrastructure, and Region Pairs as two geographically separated regions (by at least 300 miles) within the same geography. These definitions correctly reflect Azure's infrastructure redundancy model.

Adım Adım Çözüm

1
Evaluate the definition and boundaries of Azure Availability Zones.
Availability Zones are isolated physical locations within a single Azure region, containing independent power, cooling, and networking.
This confirms that the statement about Availability Zones containing independent infrastructure within a region is true, and the statement about them spanning multiple regions is false.
2
Analyze Resource Group region requirements.
A Resource Group's location is only for storing metadata, and resources inside it can be deployed to different regions.
This identifies the statement restricting resources to the same region as their resource group as false.
3
Evaluate the design principles of Azure Region Pairs.
Region Pairs are located within the same geography, separated by at least 300 miles, to ensure disaster recovery without violating data residency boundaries.
This confirms that the statement regarding Region Pairs is true.

Anahtar Kavram

Azure geographic infrastructure elements, specifically the distinct physical boundaries of regions, availability zones, and region pairs, along with logical resource organization limitations.
Tahmini Süre:1m 30s
Soru 1072Soru

A financial technology company deploys a transaction-processing API using Azure Platform as a Service (PaaS). Under the shared responsibility model for PaaS, the cloud provider is responsible for operating system patching, while the customer remains responsible for application code and database access configuration. Is this statement true or false?

Cevabı ve açıklamayı göster

Cevap: True

Cevap

True
The statement is true because the Platform as a Service (PaaS) model divides responsibilities such that the cloud provider manages the physical infrastructure, virtualization, and the operating system (including patching), while the customer is responsible for application-level components and data management.

Adım Adım Çözüm

1
Identify the cloud service model used in the scenario.
The scenario describes a transaction-processing API deployed using Azure Platform as a Service (PaaS).
Identifying the cloud service model establishes the correct boundaries of the shared responsibility model.
2
Evaluate the management responsibilities described in the statement against the identified PaaS model.
Operating system patching is managed by the cloud provider in PaaS, while application code and database access configuration are managed by the customer.
PaaS offloads OS and infrastructure management to the cloud provider, leaving the customer in control of the applications and data.

Anahtar Kavram

PaaS Shared Responsibility Model
Soru 1073Soru

A hospital system deploys its patient monitoring application on Microsoft Azure. The system must be designed to withstand localized hardware failures, automatically recover from software faults, and maintain service continuity even during major regional outages.

Which cloud concept represents the overall ability of an application to recover from failures and continue to function under these conditions?

Cevabı ve açıklamayı göster

Cevap: Reliability

Cevap

Reliability
Reliability is defined as the capability of a system to recover from failures and continue to function. It is a broad cloud concept that incorporates both high availability (to mitigate local failures) and disaster recovery (to mitigate catastrophic or regional failures).

Adım Adım Çözüm

1
Identify the core requirements from the scenario.
The application must withstand local hardware/software faults and major regional failures.
Understanding the scope of the failures to recover from helps determine the cloud concept that encompasses both local resiliency and regional recovery.
2
Compare cloud concepts that define failure recovery.
While high availability addresses localized faults and disaster recovery addresses regional failures, reliability is the overarching cloud benefit that ensures a system can recover from any failure and continue functioning.
Analyzing the relationship between reliability, high availability, and disaster recovery leads to the correct terminology.

Anahtar Kavram

Reliability in Azure represents the ability of a system to recover from failures and continue to function. It encompasses both high availability (resiliency within a region) and disaster recovery (resiliency across regions).
Tahmini Süre:1m 0s
Soru 1074Soru

A financial company is organizing its Azure resources for a new customer portal. The portal requires separate environments for development and production, each with distinct compliance requirements and billing lines. The administration team is designing the hierarchy using management groups, subscriptions, and resource groups. Which two statements are true regarding how the team can structure these Azure resources? (Select two.)

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

Cevabı ve açıklamayı göster

Cevap: A single resource group can contain resources that reside in different Azure regions than the resource group itself.; Subscriptions can be grouped under management groups to apply unified policy definitions and access controls that inherit down to the resources.

Cevap

A single resource group can contain resources that reside in different Azure regions than the resource group itself, and subscriptions can be grouped under management groups to apply unified policy definitions and access controls that inherit down to the resources.
The correct options are that a resource group can contain resources from different regions, and subscriptions can be organized under management groups. In Azure, a resource group's location is only for metadata storage, meaning the actual resources (like virtual machines or databases) can reside in different geographical regions. Additionally, management groups allow administrators to organize multiple subscriptions into a hierarchy, facilitating the inheritance of policies and access controls.

Adım Adım Çözüm

1
Analyze the hierarchy of Azure governance levels: management groups, subscriptions, resource groups, and resources.
Identified that management groups sit above subscriptions to apply policies at scale, and resource groups cannot be nested within one another.
This helps rule out the option proposing nested resource groups.
2
Evaluate resource group location and resource deployment rules.
Confirmed that the resource group's region only dictates where metadata is stored and does not restrict resources from being in other regions.
This helps identify that resources can reside in different regions from their resource group, ruling out the requirement for same-region deployment.

Anahtar Kavram

Azure resource hierarchy and governance boundaries
Tahmini Süre:1m 30s
Soru 1075Soru

A company plans to deploy a multi-tier application consisting of a virtual machine and a storage account. The administrator creates a resource group named rg-app-prod in the North Europe region. Which of the following configurations is supported when deploying these resources?

Cevabı ve açıklamayı göster

Cevap: Deploying the virtual machine to the West Europe region and the storage account to the North Europe region, both inside rg-app-prod.

Cevap

Deploying the virtual machine to the West Europe region and the storage account to the North Europe region, both inside rg-app-prod.
Deploying the virtual machine to the West Europe region and the storage account to the North Europe region, both inside the resource group, is fully supported. Resources do not need to be in the same location as the resource group that contains them. The resource group's location only determines where its own metadata is stored.

Adım Adım Çözüm

1
Analyze the relationship between resource groups and resource locations.
Azure resources do not inherit their location from the resource group they reside in, allowing a resource group to contain resources from multiple different regions.
This flexibility allows logically related resources to be managed together even if they are physically deployed in different regions for latency or residency reasons.
2
Evaluate the rules concerning resource group structure.
Resource groups cannot be nested inside other resource groups.
Azure Resource Manager uses a flat hierarchy structure under each subscription for resource groups.
3
Verify tag inheritance behavior.
Resource tags applied at the resource group level are not inherited by the resources inside that resource group automatically.
Understanding governance behavior ensures that administrators correctly plan their tagging strategy using Azure Policy if inheritance is required.

Anahtar Kavram

Azure resource group boundaries, location independence, and flat hierarchy rules
Tahmini Süre:1m 0s
Soru 1076Soru

Deploying an application across multiple Availability Zones within a single Azure region ensures that the application remains available if that entire Azure region experiences an outage.

Cevabı ve açıklamayı göster

Cevap: False

Cevap

The statement is false because Availability Zones reside within a single Azure region and do not provide protection against an outage that affects the entire region.
The correct answer is false because Availability Zones are bounded by a single region. An outage affecting the entire region will impact all Availability Zones in that region, requiring a multi-region strategy to ensure continuous availability.

Adım Adım Çözüm

1
Analyze the scope of the outage described.
The scenario specifies an outage affecting the 'entire Azure region'.
This establishes the scale of the failure the application needs to withstand.
2
Determine the physical boundary of Availability Zones.
Availability Zones are physically separate datacenters located within the same Azure region.
This helps map the relationship between Availability Zones and region boundaries.
3
Evaluate if cross-zone replication protects against a regional outage.
Because all zones in a region are part of that region, a region-wide outage will impact all zones. Surviving a regional outage requires deploying across multiple Azure regions.
This confirms that deploying across multiple Availability Zones within a single region does not protect against a regional outage.

Anahtar Kavram

Availability Zones protect against datacenter-level failures within a region, but protecting against region-level outages requires multi-region replication (Disaster Recovery).
Soru 1077Soru

A healthcare provider is designing the architecture for a new patient health portal on Microsoft Azure. The portal must be resilient against localized datacenter failures as well as widespread regional outages. The database administrator is configuring regions, Availability Zones, and region pairs to meet these requirements. Which of the following statements regarding these Azure infrastructure components are true? (Select two.)

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

Cevabı ve açıklamayı göster

Cevap: Availability Zones are unique physical locations within a single Azure region, each equipped with independent power, cooling, and networking.; Azure region pairs are typically located at least 300 miles away from each other to minimize the likelihood of a disaster affecting both regions simultaneously.

Cevap

Availability Zones are unique physical locations within a single Azure region with independent infrastructure, and Azure region pairs are separated by a minimum physical distance to protect against regional disasters.
The statement describing Availability Zones as unique physical locations within a single Azure region with independent infrastructure, and the statement that Azure region pairs are separated by a minimum physical distance to protect against regional disasters, are correct. These accurately reflect the architectural parameters defined by Microsoft for high availability within a region and disaster recovery across regions.

Adım Adım Çözüm

1
Analyze the scope of Availability Zones within Azure architecture.
Availability Zones are physically separate locations containing datacenters within a single region.
This helps rule out the misconception that zones span across regions or protect against total regional outages.
2
Evaluate how Azure region pairs provide disaster recovery.
Region pairs are spaced at least 300 miles apart to prevent a single event from disrupting both regions.
This establishes the distance constraint and purpose of region pairs for geographical redundancy.
3
Review resource group boundaries relative to resources.
Resource groups do not restrict resource locations; resources can be in any region regardless of the group's region.
This eliminates the false assumption that resources must inherit their group's region.

Anahtar Kavram

Distinction between Azure Regions, Availability Zones, and Region Pairs for High Availability and Disaster Recovery.
Tahmini Süre:1m 30s
Soru 1078Soru

An online ticketing platform is migrating its booking API to Azure App Service, which is a Platform as a Service (PaaS) model. The development team needs to plan their operational and maintenance tasks under the Azure shared responsibility model. Which of the following tasks is the responsibility of the ticketing platform?

Cevabı ve açıklamayı göster

Cevap: Deploying the custom booking API code and configuring application-level access permissions

Cevap

Deploying the custom booking API code and configuring application-level access permissions
In a Platform as a Service (PaaS) model such as Azure App Service, the cloud provider manages the physical infrastructure, virtualization layer, operating system, and runtime middleware. The customer is responsible for deploying their custom application code and configuring access permissions to that application.

Adım Adım Çözüm

1
Identify the service model used.
The scenario specifies Azure App Service, which is a Platform as a Service (PaaS) model.
Understanding the specific cloud service model is necessary to apply the correct shared responsibility division.
2
Analyze the customer's boundary of control in a PaaS model.
In PaaS, the cloud provider manages the physical infrastructure, operating systems, and middleware. The customer remains responsible for application code and data/access configurations.
This helps filter out responsibilities managed by the cloud provider (like OS patching or hardware).
3
Match the tasks to their respective responsibility owners.
Deploying the booking API code and configuring permissions is the customer's responsibility. OS patching, web server middleware configuration, and SaaS configuration are not.
Identifying the task belonging solely to the customer yields the correct answer.

Anahtar Kavram

The division of responsibility in a Platform as a Service (PaaS) model
Tahmini Süre:1m 0s
Soru 1079Soru

A software testing firm wants to provision temporary Windows 11 desktops for its quality assurance testers to run manual tests. Is the statement 'Azure Virtual Desktop requires you to deploy a separate, dedicated virtual machine for each active user session because it does not support sharing a single virtual machine among multiple users' true or false?

Cevabı ve açıklamayı göster

Cevap: False

Cevap

The statement is false because Azure Virtual Desktop supports Windows 11 multi-session, enabling multiple users to share a single virtual machine concurrently.
The statement is false because Azure Virtual Desktop supports Windows 11 and Windows 10 multi-session, allowing multiple users to log in and share the compute resources of a single virtual machine concurrently, which is a major advantage for cost optimization.

Adım Adım Çözüm

1
Analyze the scenario and the specific claim in the statement regarding Azure Virtual Desktop user hosting.
The statement claims that Azure Virtual Desktop requires a dedicated virtual machine per user session and cannot share a virtual machine among multiple users.
Understanding the premise of the question is necessary to evaluate its accuracy.
2
Recall the capabilities of Azure Virtual Desktop, specifically regarding multi-session support for Windows operating systems.
Azure Virtual Desktop supports Windows 11 and Windows 10 multi-session, which allows multiple concurrent user sessions on a single virtual machine.
Comparing the statement with actual Azure service features helps determine if the statement is true or false.
3
Evaluate the statement's validity based on the recalled multi-session capabilities.
Since Azure Virtual Desktop does support sharing a single virtual machine among multiple users via multi-session, the statement is false.
Formulate the final evaluation of the statement.

Anahtar Kavram

Azure Virtual Desktop multi-session hosting capabilities
Soru 1080Soru

A company is planning to deploy a critical database application in Azure. The application must meet the following requirements:
- Maintain uptime in the primary region even if an entire datacenter suffers a power or cooling failure.
- Replicate data to a secondary region located at least 300 miles away to survive a regional disaster.
The company creates a resource group in the East US region to manage the deployment.
Which deployment strategy should the company use to satisfy these requirements?

Cevabı ve açıklamayı göster

Cevap: Deploy the application across multiple Availability Zones within East US, and replicate data to the East US regional pair.

Cevap

Deploy the application across multiple Availability Zones within East US, and replicate data to the East US regional pair.
Deploying the application across multiple Availability Zones within East US ensures that if one datacenter experiences a localized outage, the application remains online in other zones. Replicating the data to the East US regional pair ensures that data is stored at least 300 miles away, protecting the application against a major regional disaster.

Adım Adım Çözüm

1
Analyze the requirement for local high availability.
Identify that Azure Availability Zones provide protection against localized datacenter failures (like power or cooling outages) by distributing resources across unique physical locations within a single region.
This directly satisfies the requirement to maintain uptime in the primary region.
2
Analyze the requirement for regional disaster recovery.
Identify that Azure Region Pairs provide replication to a secondary region (typically 300+ miles apart) to protect against a regional disaster.
This satisfies the requirement to replicate data to a distant secondary region.
3
Determine if there are resource group location restrictions.
Confirm that resources do not need to reside in the same region as their containing resource group.
Resource groups only store resource metadata, allowing resources within the group to reside in different regions.

Anahtar Kavram

Azure Availability Zones provide high availability within a region by isolating power, cooling, and networking across datacenters, while Azure Region Pairs provide regional disaster recovery by replicating resources across regions that are at least 300 miles apart.
Tahmini Süre:1m 30s
ÖncekiSayfa 54 / 60Sonraki
Tüm alıştırma soruları — Microsoft Azure Fundamentals (AZ-900) | Examkin