Tüm alıştırma soruları

1186 soru

Soru 481Soru

A manufacturing company wants to estimate the financial benefits of decommissioning their on-premises server room and migrating their legacy ERP system to Azure Virtual Machines. The estimation must include a comparison of physical hardware maintenance, software licensing, and facility overhead costs against estimated cloud service costs. Which tool should the company use to perform this analysis?

Cevabı ve açıklamayı göster

Cevap: Azure Total Cost of Ownership (TCO) Calculator

Cevap

Azure Total Cost of Ownership (TCO) Calculator
The Total Cost of Ownership (TCO) Calculator is the correct tool because it allows an organization to input their current on-premises server, database, storage, and networking details, along with labor and electricity assumptions, to generate a report showing the cost savings of migrating to Azure over a specified timeframe.

Adım Adım Çözüm

1
Identify the business requirement, which is to compare on-premises infrastructure costs (such as physical hardware, licenses, and power) with cloud hosting costs to find potential savings.
Recognized that the task involves a pre-migration cost-benefit analysis comparing on-premises and cloud costs.
This establishes the scope of the required tool.
2
Evaluate the available Azure tools against this requirement.
The Total Cost of Ownership (TCO) Calculator is identified as the tool designed for comparing on-premises workloads to Azure equivalents, while the Pricing Calculator is for estimating new cloud configurations, Azure Advisor is for optimizing deployed resources, and Cost Management is for tracking existing cloud expenditures.
This determines the correct tool for the scenario.

Anahtar Kavram

Azure TCO Calculator vs Pricing Calculator
Soru 482Soru

A game development studio needs to run a custom Python script that analyzes player telemetry data whenever a new log file is uploaded to Azure Blob Storage. Is it true that Azure Logic Apps is the primary serverless service designed to execute such custom code-first scripts?

Cevabı ve açıklamayı göster

Cevap: False

Cevap

The statement is false because Azure Functions is the primary serverless service designed for custom code-first execution, whereas Azure Logic Apps is designed for visual workflow orchestration.
The correct answer is false. Azure Functions is the code-first serverless compute service designed for custom code execution, such as running a Python script in response to an event. Azure Logic Apps, on the other hand, is a visual, connector-first service for integrating applications and orchestrating workflows.

Adım Adım Çözüm

1
Analyze the scenario requirement: running a custom Python script to process telemetry data triggered by a file upload.
Identify that the solution requires a serverless compute service that supports custom code execution (code-first approach).
Custom code execution requires a runtime environment that supports developer languages like Python.
2
Compare the core features of Azure Functions and Azure Logic Apps.
Azure Functions is code-first, supporting C#, Python, JavaScript, and other languages. Azure Logic Apps is visual and connector-first, designed for orchestrating workflows.
Distinguishing between code-first compute (Functions) and connector-first workflows (Logic Apps) is a key concept in Azure serverless architecture.
3
Evaluate the statement's claim that Azure Logic Apps is the primary service for executing such custom scripts.
The claim is false because Azure Functions should be used instead of Azure Logic Apps for this requirement.
Since the requirement specifies executing a custom Python script, Azure Functions is the correct service, making the statement false.

Anahtar Kavram

Azure Functions vs. Azure Logic Apps serverless capabilities
Tahmini Süre:1m 0s
Soru 483Soru

An organization needs to query and analyze telemetry logs gathered from several cloud resources in a central repository. Which Azure Monitor feature should the organization use to write and run these queries?

Cevabı ve açıklamayı göster

Cevap: Log Analytics

Cevap

Log Analytics
Log Analytics is the feature within Azure Monitor used to write and run Kusto Query Language (KQL) queries on log data collected from various resources in a centralized workspace.

Adım Adım Çözüm

1
Identify the requirement to query and analyze log telemetry from resources in a central repository.
The requirement specifies log querying and analysis.
Understanding the core task helps filter out management and policy services.
2
Recall the feature within Azure Monitor designed for writing log queries.
Log Analytics is the environment where queries are executed against log data.
Log Analytics uses Kusto Query Language (KQL) to search, filter, and analyze logs collected by Azure Monitor.

Anahtar Kavram

Azure Monitor Log Analytics allows users to query and analyze log data collected from monitored resources.
Tahmini Süre:45s
Soru 484Soru

Your team uploads historical application logs to the Archive access tier of an Azure Storage account. To troubleshoot a newly reported issue, a developer needs to analyze a log file from three months ago. When trying to download the file directly, the download fails. What is required to read the contents of this log file?

Cevabı ve açıklamayı göster

Cevap: The blob must be rehydrated to either the Hot or Cool access tier.

Cevap

The blob must be rehydrated to either the Hot or Cool access tier.
Data in the Archive access tier is stored offline and is not directly readable. To read or download the data, the blob must first be rehydrated by shifting it to either the Hot or Cool access tier, or by copying it to a new blob in an online tier.

Adım Adım Çözüm

1
Identify the storage tier of the requested file.
The file is in the Archive access tier.
Different tiers have different access characteristics and latency profiles.
2
Determine if the Archive tier allows direct data access.
Direct read operations on Archive tier data are not allowed and will fail.
The Archive tier is offline to minimize storage costs and is not directly readable.
3
Choose the method to make the data readable.
Rehydrate the blob by copying it to an online tier or changing its tier setting to Hot or Cool.
Rehydration brings the data back online so it can be accessed by users or applications.

Anahtar Kavram

Azure Storage Access Tiers and Archive Rehydration
Soru 485Soru

A smart agriculture company wants to automate its irrigation management system. The company needs to build a workflow that automatically retrieves daily weather forecast data from an external API, sends email alerts to field operations teams if high temperatures are predicted, and logs the execution history. The solution must be created using a visual, designer-first interface with pre-built connectors and require no custom coding. Which Azure service should the company select to meet these requirements?

Cevabı ve açıklamayı göster

Cevap: Azure Logic Apps

Cevap

Azure Logic Apps
Azure Logic Apps is the correct service because it provides a visual, designer-first interface to create serverless workflows. It supports pre-built connectors (e.g., for APIs, emails, databases) to integrate different systems without requiring the user to write code, which perfectly aligns with the scenario's constraints.

Adım Adım Çözüm

1
Analyze the business and technical requirements of the scenario.
The requirement asks for a serverless workflow orchestration tool that integrates an external API and email alerts using a visual, designer-first interface without custom code.
This helps filter the Azure services by their primary interface type (code-first vs. designer-first).
2
Compare Azure serverless offerings: Azure Functions vs. Azure Logic Apps.
Azure Functions is code-first (requires writing C#, Python, JavaScript, etc.), whereas Azure Logic Apps is designer-first and connector-driven.
This directly maps to the requirement of using a visual interface with no custom coding.
3
Select the service that fits the visual, connector-first criteria.
Azure Logic Apps provides a web-based designer and pre-built connectors for HTTP APIs and email systems (like Office 365 or Outlook).
Azure Logic Apps satisfies all criteria outlined in the scenario.

Anahtar Kavram

Azure Serverless Compute (Functions vs. Logic Apps)
Soru 486Soru

A company runs a web application in Microsoft Azure while hosting the application's underlying database on physical servers located in the company's local datacenter. Does this deployment scenario represent an example of a hybrid cloud model?

Cevabı ve açıklamayı göster

Cevap: True

Cevap

Yes, this scenario represents a hybrid cloud model.
The correct answer is true because a hybrid cloud model is defined by combining public cloud services (Azure) with private on-premises infrastructure (local datacenter) to work as a single, integrated environment.

Adım Adım Çözüm

1
Identify the deployment environments used in the scenario.
The scenario utilizes Microsoft Azure (a public cloud) and a local datacenter (an on-premises or private environment).
Determining the types of infrastructure is the first step in identifying the cloud deployment model.
2
Analyze how the environments interact with each other.
The web application in the public cloud communicates directly with the database in the local datacenter to function.
A hybrid cloud model is characterized by the connection and orchestration between public and private environments.

Anahtar Kavram

Hybrid Cloud Model
Tahmini Süre:45s
Soru 487Soru

An organization is migrating their on-premises workloads to Azure and requires a shared file storage solution for archiving historical documents. Is the following statement regarding Azure Storage options true or false?

Azure Files supports the Archive access tier for file shares, allowing files to be archived at the lowest storage cost.

Cevabı ve açıklamayı göster

Cevap: False

Cevap

The statement is false.
The statement is false. Azure Files does not support the Archive access tier. Azure Files only supports Hot, Cool, and Premium tiers. The Archive tier is exclusive to Azure Blob storage.

Adım Adım Çözüm

1
Identify the target storage service and feature being evaluated.
The target service is Azure Files, and the feature is the Archive access tier.
This establishes the scope of the capability we need to verify.
2
Determine the supported access tiers for Azure Files.
Azure Files supports Premium (SSD-based), Hot, and Cool tiers.
Checking the available tiers for Azure Files determines if the Archive tier is one of them.
3
Compare with other Azure storage services that support archiving.
The Archive access tier is a feature exclusive to Azure Blob Storage (specifically Block Blobs).
This confirms that the Archive tier is not a cross-service feature and is restricted to Blob storage.

Anahtar Kavram

Azure Files supports Hot, Cool, and Premium storage tiers, but does not support the Archive tier, which is exclusive to Azure Blob Storage.
Tahmini Süre:1m 0s
Soru 488Soru

Determine if the following statement is true or false: Storing data in the Cool access tier of an Azure Storage account results in lower storage costs but higher access costs compared to storing the same data in the Hot access tier.

Cevabı ve açıklamayı göster

Cevap: True

Cevap

True
The correct answer is True because Azure Storage access tiers implement a pricing structure where storage capacity fees and data access fees are inversely related; cooler tiers offer lower storage costs but charge higher rates for data retrieval and transaction operations.

Adım Adım Çözüm

1
Identify the primary purpose and cost structure of the Hot access tier in Azure Blob Storage.
The Hot tier is designed for active data, featuring the lowest costs for read/write access (transactions) but the highest costs for data storage.
To establish a baseline for comparison.
2
Identify the primary purpose and cost structure of the Cool access tier in Azure Blob Storage.
The Cool tier is designed for infrequently accessed data, featuring lower storage rates than the Hot tier but higher fees for data access transactions.
To understand how the Cool tier differs from the Hot tier.
3
Compare the cost dynamics described in the statement against the identified rules.
The statement accurately reflects the trade-off: the Cool tier has lower storage costs and higher access costs compared to the Hot tier.
To determine the truth value of the statement.

Anahtar Kavram

Azure Storage access tiers (Hot vs. Cool) present a trade-off where storage costs decrease and data access costs increase as the tier becomes cooler.
Soru 489Soru

An organization's business decision maker wants to review a personalized, historical record of service outages, planned maintenance, and security advisories that have specifically impacted the resources within their subscription over the past 90 days. Which Azure service or dashboard should they use to retrieve this history?

Cevabı ve açıklamayı göster

Cevap: Azure Service Health

Cevap

Azure Service Health
Azure Service Health provides a personalized dashboard showing the health of the Azure services and regions that you use. It includes a history of past incidents (up to 90 days), planned maintenance events, and health advisories that have impacted your specific subscription.

Adım Adım Çözüm

1
Analyze the requirements: The user wants a personalized historical record of service outages, maintenance, and advisories specifically impacting their subscription's resources.
The requirement focuses on platform-level events (outages, maintenance) mapped to specific resources within a subscription.
This helps distinguish between public global status dashboards, resource-level monitoring, and personalized platform health.
2
Evaluate the choices based on target capabilities: Compare Azure Service Health, Azure Monitor, Azure Status, and Azure Advisor.
Azure Service Health directly filters Microsoft-managed events to show only what impacts the user's subscriptions. Azure Monitor tracks the user's workload metrics/logs. Azure Status is public/global. Azure Advisor offers optimization recommendations.
To select the dashboard that provides personalized platform health tracking and history.

Anahtar Kavram

Azure Service Health provides personalized alerts and guidance when Azure service issues affect your resources. It tracks service issues, planned maintenance, and health advisories, and provides a history of incidents that occurred over the past 90 days.
Tahmini Süre:1m 0s
Soru 490Soru

An IT department uses a mix of Windows, macOS, and Linux workstations to manage their cloud infrastructure. The administration team wants to standardize their local command-line tools to automate Azure resource management across all these operating systems. Which of the following statements correctly describe the availability of these management tools? Select two.

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

Cevabı ve açıklamayı göster

Cevap: Azure CLI can be installed and executed locally on Windows, macOS, and Linux operating systems.; Azure PowerShell can be installed and executed locally on Windows, macOS, and Linux operating systems.

Cevap

Azure CLI and Azure PowerShell are both cross-platform tools that can be installed and executed locally on Windows, macOS, and Linux.
Both Azure CLI and Azure PowerShell are fully cross-platform management tools. They can be installed locally and executed on Windows, macOS, and Linux operating systems. This flexibility allows IT teams with heterogeneous workstations to utilize either scripting environment without operating system constraints.

Adım Adım Çözüm

1
Evaluate the cross-platform support of Azure CLI.
Azure CLI is cross-platform and supports Windows, macOS, and Linux.
To determine if Azure CLI can be used locally by all team members regardless of their workstation OS.
2
Evaluate the cross-platform support of Azure PowerShell.
Azure PowerShell supports Windows, macOS, and Linux via PowerShell Core.
To determine if Azure PowerShell can be used locally by all team members regardless of their workstation OS.

Anahtar Kavram

Azure CLI and Azure PowerShell cross-platform capabilities
Soru 491Soru

An administrator applies a tag named `Environment` with a value of `Production` to an Azure subscription. When the administrator runs a cost analysis report in Azure Cost Management filtered by this tag, the individual resources within the subscription do not appear in the results. What is the cause of this behavior?

Cevabı ve açıklamayı göster

Cevap: Azure resource tags are not inherited from a subscription to its resource groups or resources.

Cevap

Azure resource tags are not inherited from a subscription to its resource groups or resources.
The correct answer is that Azure resource tags are not inherited from a subscription to its resource groups or resources. In Azure, tags applied at a higher level (like a subscription or resource group) do not automatically apply to the underlying resources. To track costs by tags at the resource level, you must apply the tags directly to those resources, or use Azure Policy to enforce tag compliance.

Adım Adım Çözüm

1
Analyze how tags behave when applied at the subscription level in Azure.
Tags applied to a subscription or resource group do not automatically apply to the resources inside them.
Azure design keeps resource tags independent of container tags to prevent unwanted metadata propagation.
2
Determine the effect of this behavior on Azure Cost Management filtering.
Since the individual resources do not have the tag applied to them directly, a filter on that tag in Cost Management will not return these resources.
Filters in Cost Management rely on the tags directly associated with the resource.

Anahtar Kavram

Azure resource tags are not inherited from parent containers (subscriptions or resource groups) to child resources.
Soru 492Soru

An organization plans to implement a new resource governance model in Azure with the following hierarchy and configuration:

- A management group named Group-A contains a subscription named Sub-1.
- An Azure Policy is assigned to Group-A that denies the creation of resources in any region other than East US.
- A resource group named RG-1 is created in East US under Sub-1, and a tag named 'Environment: Production' is applied directly to RG-1.
- An administrator attempts to deploy a virtual network named VNet-1 in the West US region inside RG-1.

Which of the following statements correctly describes the result of this deployment attempt?

Cevabı ve açıklamayı göster

Cevap: The deployment of the virtual network will fail because the policy applied to the management group is inherited by the subscription and blocks resource creation in the West US region.

Cevap

The deployment of the virtual network will fail because the policy applied to the management group is inherited by the subscription and blocks resource creation in the West US region.
The correct option explains that Azure Policy inheritance flows down from the management group to the subscription and eventually to resources. Because the policy restricts resource creation to the East US region, any attempt to deploy a resource in West US will fail. The location of the resource group does not bypass this policy enforcement.

Adım Adım Çözüm

1
Analyze the management group hierarchy and policy inheritance.
The Azure Policy denying resource creation outside of East US is applied to the parent management group (Group-A). This policy is inherited by the child subscription (Sub-1) and applies to all deployments within it.
To determine what rules restrict resource creation in the target environment.
2
Evaluate the deployment location of the resource group and the resource.
The resource group (RG-1) is in East US (allowed by policy), but the virtual network (VNet-1) is targeted for West US (denied by policy).
To verify if the resource's region violates the inherited policy.
3
Determine if the resource group location can bypass subscription-level policies, or if the resource is required to match the resource group's location.
Resource group location does not bypass inherited policies, and Azure allows resources to be in different regions than their resource groups. However, the policy applies to the resource itself, meaning VNet-1's deployment is blocked.
To resolve whether the deployment succeeds or fails based on region configurations and policy enforcement.
4
Verify tag inheritance and nesting rules for the proposed resources.
Resources do not inherit tags from their resource groups, and resource groups cannot be nested. Therefore, options suggesting success with tag inheritance or nesting are incorrect.
To eliminate incorrect options and confirm the correct behavior of the deployment.

Anahtar Kavram

Azure resource hierarchy, policy inheritance, and resource group properties
Soru 493Soru

An Azure Policy assignment configured with the Audit effect will block the deployment of new resources that do not comply with the policy standards. Is this statement true or false?

Cevabı ve açıklamayı göster

Cevap: False

Cevap

False
The statement is false because the Audit effect in Azure Policy is designed to report on non-compliant resources by logging a warning in the activity log and marking them in the compliance dashboard, without actively preventing or blocking the deployment of the resource.

Adım Adım Çözüm

1
Analyze the action of the Audit effect in Azure Policy.
The Audit effect evaluates resources and reports non-compliance without blocking or modifying resource creation or configuration.
This helps administrators gain visibility into resource compliance without disrupting developer workflows.
2
Determine if the Audit effect blocks deployments.
It does not block deployments; non-compliant resources are successfully created but flagged as non-compliant.
Only the Deny effect blocks the deployment of non-compliant resources.

Anahtar Kavram

Azure Policy effects (Audit vs Deny)
Soru 494Soru

Azure Service Health is used to monitor the performance and log telemetry of your applications and virtual machines, while Azure Monitor is used to track Azure service outages and planned maintenance. Is this statement true or false?

Cevabı ve açıklamayı göster

Cevap: False

Cevap

False
The correct answer is false because the statement reverses the definitions of Azure Monitor and Azure Service Health. Azure Monitor is the tool that collects and analyzes telemetry data for resources, whereas Azure Service Health provides notifications regarding platform-level issues like outages and maintenance.

Adım Adım Çözüm

1
Analyze the description of Azure Service Health in the statement.
The statement claims Azure Service Health monitors application and virtual machine performance.
To verify if this matches the actual capability of Azure Service Health, which is instead to notify about Azure service outages, planned maintenance, and health advisories.
2
Analyze the description of Azure Monitor in the statement.
The statement claims Azure Monitor tracks Azure service outages and planned maintenance.
To verify if this matches the actual capability of Azure Monitor, which is instead to collect and analyze telemetry data from your Azure resources.
3
Determine the truth value of the combined statement.
The functions of the two services are swapped, making the statement false.
To arrive at the correct true/false evaluation.

Anahtar Kavram

Azure Monitor vs. Azure Service Health
Soru 495Soru

Is the following statement true or false: To use Azure PowerShell to manage Azure resources from a local Linux or macOS computer, you must first install PowerShell on that computer?

Cevabı ve açıklamayı göster

Cevap: True

Cevap

True
PowerShell Core is a cross-platform prerequisite for running the Az PowerShell module on macOS and Linux operating systems.

Adım Adım Çözüm

1
Identify the target tool and the client operating system environments.
The scenario involves running Azure PowerShell cmdlets on macOS and Linux.
To evaluate tool prerequisites and dependencies on non-Windows platforms.
2
Determine the execution environment requirement for Azure PowerShell on macOS and Linux.
Azure PowerShell is delivered as the Az module, which requires the PowerShell runtime (PowerShell Core / PowerShell 7+) to execute on macOS and Linux.
Unlike Windows which has PowerShell pre-installed, macOS and Linux do not ship with PowerShell, meaning it must be installed prior to using Azure PowerShell.

Anahtar Kavram

Cross-platform compatibility requirements of Azure PowerShell
Soru 496Soru

A company is migrating its customer relationship management system from a custom-built solution hosted on Azure App Service (PaaS) to Microsoft Dynamics 365 (SaaS). Which responsibility shifts from the customer to Microsoft because of this migration?

Cevabı ve açıklamayı göster

Cevap: Managing and updating the application code

Cevap

Managing and updating the application code
The correct answer is the option stating that managing and updating the application code shifts to Microsoft. Under a PaaS model, the customer must manage and maintain their own application code. When transitioning to a SaaS model, Microsoft manages the application entirely, freeing the customer from this administrative task.

Adım Adım Çözüm

1
Identify the service models in the scenario
The company is transitioning from Azure App Service, which is Platform as a Service (PaaS), to Microsoft Dynamics 365, which is Software as a Service (SaaS).
Understanding the starting and target service models is necessary to determine how responsibilities shift.
2
Compare customer responsibilities between PaaS and SaaS
In PaaS, the customer is responsible for the application and database configurations. In SaaS, the cloud provider manages the entire application, leaving the customer responsible only for their data, devices, and user accounts.
By finding the difference in customer responsibility between the two models, we can identify which responsibility shifts to Microsoft.

Anahtar Kavram

Shared Responsibility Model transitions between PaaS and SaaS
Soru 497Soru

A logistics company is designing a new cloud-based route optimization application. The solution will require two virtual machines, an Azure Cosmos DB database, and an Azure Load Balancer. The company does not have any existing physical server infrastructure and needs to estimate the monthly operational cost of running these specific resources before committing to the development phase.

Which tool should the company use to estimate these costs?

Cevabı ve açıklamayı göster

Cevap: Azure Pricing Calculator

Cevap

Azure Pricing Calculator
The correct tool is the Azure Pricing Calculator because it allows users to select, configure, and estimate the consumption costs of new Azure resources (such as virtual machines, databases, and load balancers) prior to deployment.

Adım Adım Çözüm

1
Analyze the business requirements.
The company wants to estimate the monthly operational costs of running a set of specific new Azure resources (Virtual Machines, Cosmos DB, and Load Balancer) before deploying them. They do not have an existing on-premises environment to compare.
Understanding whether the scenario is about estimating new deployments or comparing existing on-premises infrastructure is key to selecting the correct cost estimation tool.
2
Evaluate the available Azure tools against the requirements.
The Azure Pricing Calculator is the correct tool because it allows users to estimate costs for new Azure services by configuring their properties. The TCO Calculator is incorrect because it is designed for comparing on-premises to cloud migration costs. Azure Cost Management and Billing and Azure Advisor require existing deployments to function.
Matching the feature set of each tool to the pre-deployment state of the company's application determines the appropriate solution.

Anahtar Kavram

Azure Pricing Calculator is used to estimate the cost of new Azure services before deployment, whereas the TCO Calculator is used to compare on-premises costs with Azure costs.
Soru 498Soru

A healthcare provider wants to design a serverless workflow to handle patient appointment scheduling. The requirements are:

1. Automatically send a notification to an on-premises hospital database and send a confirmation email via Microsoft 365 when a patient schedules an appointment. This requires integrating multiple external APIs using a visual design interface with minimal coding.
2. Run a custom C# sorting and scheduling optimization algorithm to allocate physician slots based on patient urgency levels.

Which two Azure services should the company use to meet these requirements? (Select two.)

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

Cevabı ve açıklamayı göster

Cevap: Azure Logic Apps; Azure Functions

Cevap

Azure Logic Apps and Azure Functions
The solution requires a combination of integration workflows and custom code execution. Azure Logic Apps provides a designer-first, low-code interface with pre-built connectors to orchestrate workflows across systems like Microsoft 365 and databases. Azure Functions provides a code-first, serverless environment to run custom code (such as the C# scheduling algorithm) on demand without managing servers.

Adım Adım Çözüm

1
Identify the integration and orchestration requirements.
Azure Logic Apps is selected for connecting Microsoft 365 and the database with minimal code.
Azure Logic Apps is designed for connector-first integrations using a visual designer.
2
Identify the custom code execution requirement.
Azure Functions is selected to execute the custom C# sorting algorithm.
Azure Functions is a code-first serverless compute service ideal for custom logic.
3
Verify that both selected services are serverless.
Both Azure Logic Apps and Azure Functions scale automatically and charge based on consumption.
This fulfills the constraint to use serverless technologies in Azure.

Anahtar Kavram

Distinction between Azure Functions (code-first serverless compute) and Azure Logic Apps (connector-first serverless orchestration)
Tahmini Süre:1m 30s
Soru 499Soru

An IT administrator needs to run a deployment script from a local macOS workstation to automate the creation of several resources in Azure. The script is written using Verb-Noun command syntax, such as `New-AzResourceGroup`. Which tool must be installed locally on the macOS workstation to execute this script?

Cevabı ve açıklamayı göster

Cevap: Azure PowerShell

Cevap

Azure PowerShell
The correct answer is Azure PowerShell. Azure PowerShell is a command-line tool that uses Verb-Noun cmdlets (like `New-AzResourceGroup`) to manage Azure resources. It is cross-platform and can be installed locally on macOS, Windows, and Linux.

Adım Adım Çözüm

1
Analyze the script's command syntax.
The script uses Verb-Noun syntax (e.g., `New-AzResourceGroup`), which is characteristic of PowerShell cmdlets.
Identifying the syntax helps determine whether Azure CLI (which uses `az` commands) or Azure PowerShell is required.
2
Determine the installation requirement.
The script must run locally on a macOS workstation, which rules out Azure Portal (a GUI) and Azure Cloud Shell (a browser-based environment).
The scenario specifically asks for a tool installed locally on the workstation.
3
Verify cross-platform compatibility for the selected tool.
Azure PowerShell is supported on macOS via PowerShell Core.
This confirms that Azure PowerShell can be installed on macOS to run the script.

Anahtar Kavram

Azure PowerShell is a cross-platform command-line tool that uses Verb-Noun cmdlets and can be installed on Windows, macOS, and Linux.
Tahmini Süre:1m 0s
Soru 500Soru

An administrator stores backup files in the Archive access tier of an Azure Storage account. The administrator now needs to read the contents of one of these files. What must the administrator do first?

Cevabı ve açıklamayı göster

Cevap: Rehydrate the file by copying or moving it to either the Hot or Cool access tier.

Cevap

Rehydrate the file by copying or moving it to either the Hot or Cool access tier.
Data in the Archive access tier is stored offline to reduce storage costs. To read or modify this data, it must first be rehydrated to an online tier (such as the Hot or Cool tier). Rehydration can be accomplished by changing the blob's tier or by copying the archived blob to a new blob in an online tier.

Adım Adım Çözüm

1
Identify the current storage tier of the file.
The file is currently in the Archive access tier, which is an offline tier used for long-term retention.
Understanding the status of the data is necessary since data in the Archive tier is not immediately accessible.
2
Determine the requirement to read the data.
The data must be brought online.
Azure Storage requires that offline archived blobs are rehydrated to an active online tier (either Hot or Cool) before their contents can be read or modified.
3
Select the appropriate operation to bring the data online.
Initiate a rehydration process to copy or change the tier of the blob to Hot or Cool.
Rehydration restores the blob to an online state, making it readable.

Anahtar Kavram

Azure Blob Storage Archive tier data is offline and must be rehydrated to the Hot or Cool tier before it can be read.
ÖncekiSayfa 25 / 60Sonraki
Tüm alıştırma soruları — Microsoft Azure Fundamentals (AZ-900) | Examkin