option
Cuestiones
ayuda
daypo
buscar.php

AZ-204

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
AZ-204

Descripción:
151 - 200 Azure Developer Solutions

Fecha de Creación: 2022/09/10

Categoría: Otros

Número Preguntas: 50

Valoración:(0)
COMPARTE EL TEST
Nuevo ComentarioNuevo Comentario
Comentarios
NO HAY REGISTROS
Temario:

HOTSPOT - You are developing an ASP.NET Core app that includes feature flags which are managed by Azure App Configuration. You create an Azure App Configuration store named AppFeatureflagStore as shown in the exhibit: You must be able to use the feature in the app by using the following markup: <feature name="Export”> <li class="nav-item”> <a class="nav-link text-dark” asp-area="” asp-controller="Home” asp- action="Export”>Export Data</a> </li> </feature> You need to update the app to use the feature flag. Which values should you use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: Controller attribute. Startup method. AppConfig endpoint setting.

HOTSPOT - You have a single page application (SPA) web application that manages information based on data returned by Microsoft Graph from another company's Azure Active Directory (Azure AD) instance. Users must be able to authenticate and access Microsoft Graph by using their own company's Azure AD instance. You need to configure the application manifest for the app registration. How should you complete the manifest? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: “oauth2AllowImplicitFlow”:__,. "______________":[{. “signInAudience”: “_______".

You manage a data processing application that receives requests from an Azure Storage queue. You need to manage access to the queue. You have the following requirements: ✑ Provide other applications access to the Azure queue. ✑ Ensure that you can revoke access to the queue without having to regenerate the storage account keys. ✑ Specify access at the queue level and not at the storage account level. Which type of shared access signature (SAS) should you use?. Service SAS with a stored access policy. Account SAS. User Delegation SAS. Service SAS with ad hoc SAS.

You are developing an application to store and retrieve data in Azure Blob storage. The application will be hosted in an on-premises virtual machine (VM). The VM is connected to Azure by using a Site-to-Site VPN gateway connection. The application is secured by using Azure Active Directory (Azure AD) credentials. The application must be granted access to the Azure Blob storage account with a start time, expiry time, and read permissions. The Azure Blob storage account access must use the Azure AD credentials of the application to secure data access. Data access must be able to be revoked if the client application security is breached. You need to secure the application access to Azure Blob storage. Which security features should you use? To answer select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: Application (Client). Azure Storage (Server).

You are building a web application that uses the Microsoft identity platform for user authentication. You are implementing user identification for the web application. You need to retrieve a claim to uniquely identify a user. Which claim type should you use?. aud. nonce. oid. idp.

You are developing an Azure Function that calls external APIs by providing an access token for the API. The access token is stored in a secret named token in an Azure Key Vault named mykeyvault. You need to ensure the Azure Function can access to the token. Which value should you store in the Azure Function App configuration?. KeyVault:mykeyvault;Secret:token. App:Settings:Secret:mykeyvault:token. AZUREKVCONNSTR_ https://mykeyveult.vault.ezure.net/secrets/token/. @Microsoft.KeyVault(SecretUri=https://mykeyvault.vault.azure.net/secrets/token/).

company maintains multiple web and mobile applications. Each application uses custom in-house identity providers as well as social identity providers. You need to implement single sign-on (SSO) for all the applications. What should you do?. Use Azure Active Directory B2C (Azure AD B2C) with custom policies. Use Azure Active Directory B2B (Azure AD B2B) and enable external collaboration. Use Azure Active Directory B2C (Azure AD B2C) with user flows. Use Azure Active Directory B2B (Azure AD B2B).

You develop a Python application for image rendering that uses GPU resources to optimize rendering processes. You deploy the application to an Azure Container Instances (ACI) Linux container. The application requires a secret value to be passed when the container is started. The value must only be accessed from within the container. You need to pass the secret value. What are two possible ways to achieve this goal? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point. Create an environment variable Set the secureValue property to the secret value. Add the secret value to the container image. Use a managed identity. Add the secret value to the application code Set the container startup command. Add the secret value to an Azure Blob storage account. Generate a SAS token. Mount a secret volume containing the secret value in a secrets file.

You are developing a user portal for a company. You need to create a report for the portal that lists information about employees who are subject matter experts for a specific topic. You must ensure that administrators have full control and consent over the data. Which technology should you use?. Microsoft Graph data connect. Microsoft Graph API. Microsoft Graph connectors.

You are a developer building a web site using a web app. The web site stores configuration data in Azure App Configuration. Access to Azure App Configuration has been configured to use the identity of the web app for authentication. Security requirements specify that no other authentication systems must be used. You need to load configuration data from Azure App Configuration. How should you complete the code? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: config.____ options => fig . (options =>. new __________ ()));.

HOTSPOT - You are building an application that stores sensitive customer data in Azure Blob storage. The data must be encrypted with a key that is unique for each customer. If the encryption key has been corrupted it must not be used for encryption. You need to ensure that the blob is encrypted. How should you complete the code segment? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: var x = new ___________;. if(____________){. { ____ = x };.

DRAG DROP - You develop a web app that uses the tier D1 app service plan by using the Web Apps feature of Microsoft Azure App Service. Spikes in traffic have caused increases in page load times. You need to ensure that the web app automatically scales when CPU load is about 85 percent and minimize costs. Which four actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. NOTE: More than one order of answer choices is correct. You will receive credit for any of the correct orders you select. Select and Place: Configure the web app to the Premium App Service tier. Configure the web app to the Standard App Service tier. Enable autoscaling on the web app. Add a Scale rule. Switch to an Azure App. Services consumption plan. Configure a Scale condition.

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution. Determine whether the solution meets the stated goals. You are developing and deploying several ASP.NET web applications to Azure App Service. You plan to save session state information and HTML output. You must use a storage mechanism with the following requirements: ✑ Share session state across all ASP.NET web applications. ✑ Support controlled, concurrent access to the same session state data for multiple readers and a single writer. ✑ Save full HTTP responses for concurrent requests. You need to store the information. Proposed Solution: Enable Application Request Routing (ARR). Does the solution meet the goal?. Yes. No.

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution. Determine whether the solution meets the stated goals. You are developing and deploying several ASP.NET web applications to Azure App Service. You plan to save session state information and HTML output. You must use a storage mechanism with the following requirements: ✑ Share session state across all ASP.NET web applications. ✑ Support controlled, concurrent access to the same session state data for multiple readers and a single writer. ✑ Save full HTTP responses for concurrent requests. You need to store the information. Proposed Solution: Deploy and configure an Azure Database for PostgreSQL. Update the web applications. Does the solution meet the goal?. Yes. No.

HOTSPOT - A company is developing a gaming platform. Users can join teams to play online and see leaderboards that include player statistics. The solution includes an entity named Team. You plan to implement an Azure Redis Cache instance to improve the efficiency of data operations for entities that rarely change. You need to invalidate the cache when team data is changed. How should you complete the code? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: IDatabase cache = Connection.GetDatabase();. ICache cache = Connection.GetDatabase();. cache KeyDelete('Team”);. cache.StringSet("Team”, "");. cache.ValueDelete("Team”);. cache.StringGet(“Team”,"");.

A company has multiple warehouses. Each warehouse contains IoT temperature devices which deliver temperature data to an Azure Service Bus queue. You need to send email alerts to facility supervisors immediately if the temperature at a warehouse goes above or below specified threshold temperatures. Which five actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. Select and Place: Add a logic app trigger that fires when one or more messages arrive in the queue. Add a Recurrence trigger that schedules the app to run every 15 minutes. Add an action that sends an email to specified personnel if the temperature is outside of those thresholds. Add a trigger that reads loT temperature data from a Service Bus queue. Add a logic app action that fires when one or more messages arrive in the queue. Add a condition that compares the temperature against the upper and lower thresholds. Create a blank Logic app. Add an action that reads IoT temperature data from the Service Bus queue.

DRAG DROP - You develop an ASP.NET Core MVC application. You configure the application to track webpages and custom events. You need to identify trends in application usage. Which Azure Application Insights Usage Analysis features should you use? To answer, drag the appropriate features to the correct requirements. Each feature may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point. Select and Place: Which pages visited by users most often correlate to a product purchase?. How does load time of the product display page affect a user's decision to purchase a product?. Which events most influence a user's decision to continue to use the application?. Are there places in the application that users often perform repetitive actions?.

You develop a gateway solution for a public facing news API. The news API back end is implemented as a RESTful service and uses an OpenAPI specification. You need to ensure that you can access the news API by using an Azure API Management service instance. Which Azure PowerShell command should you run?. Import-AzureRmApiManagementApi -Context $ApiMgmtContext -SpecificationFormat "Swagger" -SpecificationPath $SwaggerPath -Path $Path. New-AzureRmApiManagementBackend -Context $ApiMgmtContext -Url $Url -Protocol http. New-AzureRmApiManagement -ResourceGroupName $ResourceGroup -Name $Name ג€"Location $Location -Organization $Org -AdminEmail $AdminEmail. New-AzureRmApiManagementBackendProxy -Url $ApiUrl.

You are creating a hazard notification system that has a single signaling server which triggers audio and visual alarms to start and stop. You implement Azure Service Bus to publish alarms. Each alarm controller uses Azure Service Bus to receive alarm signals as part of a transaction. Alarm events must be recorded for audit purposes. Each transaction record must include information about the alarm type that was activated. You need to implement a reply trail auditing solution. Which two actions should you perform? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point. Assign the value of the hazard message SessionID property to the ReplyToSessionId property. Assign the value of the hazard message MessageId property to the DevileryCount property. Assign the value of the hazard message SessionID property to the SequenceNumber property. Assign the value of the hazard message MessageId property to the CorrelationId property. Assign the value of the hazard message SequenceNumber property to the DeliveryCount property. Assign the value of the hazard message MessageId property to the SequenceNumber property.

You are developing an Azure function that connects to an Azure SQL Database instance. The function is triggered by an Azure Storage queue. You receive reports of numerous System.InvalidOperationExceptions with the following message: `Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.` You need to prevent the exception. What should you do?. In the host.json file, decrease the value of the batchSize option. Convert the trigger to Azure Event Hub. Convert the Azure Function to the Premium plan. In the function.json file, change the value of the type option to queueScaling.

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution. Determine whether the solution meets the stated goals. You are developing and deploying several ASP.NET web applications to Azure App Service. You plan to save session state information and HTML output. You must use a storage mechanism with the following requirements: ✑ Share session state across all ASP.NET web applications. ✑ Support controlled, concurrent access to the same session state data for multiple readers and a single writer. ✑ Save full HTTP responses for concurrent requests. You need to store the information. Proposed Solution: Deploy and configure Azure Cache for Redis. Update the web applications. Does the solution meet the goal?. Yes. No.

HOTSPOT - You are debugging an application that is running on Azure Kubernetes cluster named cluster1. The cluster uses Azure Monitor for containers to monitor the cluster. The application has sticky sessions enabled on the ingress controller. Some customers report a large number of errors in the application over the last 24 hours. You need to determine on which virtual machines (VMs) the errors are occurring. How should you complete the Azure Monitor query? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. ago(1d). since(1d). date(now() - 1d). sample ContaineriD. distinct ContainerlD. join ContaineriD = = ContainerlDs. ContainerlD. restrict ContaineriD in (ContaineriDs). where ContaineriD in (ContaineriDs). summarize by Computer. summarize count() by Computer.

HOTSPOT - You plan to deploy a web app to App Service on Linux. You create an App Service plan. You create and push a custom Docker image that contains the web app to Azure Container Registry. You need to access the console logs generated from inside the container in real-time. How should you complete the Azure CLI command? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. config. download. show. --web-server-logging. --docker-container-logging. --application-logging. webapp. acr. aks.

You develop and deploy an ASP.NET web app to Azure App Service. You use Application Insights telemetry to monitor the app. You must test the app to ensure that the app is available and responsive from various points around the world and at regular intervals. If the app is not responding, you must send an alert to support staff. You need to configure a test for the web app. Which two test types can you use? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point. integration. multi-step web. URL ping. unit. load.

DRAG DROP - A web service provides customer summary information for e-commerce partners. The web service is implemented as an Azure Function app with an HTTP trigger. Access to the API is provided by an Azure API Management instance. The API Management instance is configured in consumption plan mode. All API calls are authenticated by using OAuth. API calls must be cached. Customers must not be able to view cached data for other customers. You need to configure API Management policies for caching. How should you complete the policy statement? Select and Place: Except. Public. Private. Internal. External. Authorization.

You are developing applications for a company. You plan to host the applications on Azure App Services. The company has the following requirements: ✑ Every five minutes verify that the websites are responsive. ✑ Verify that the websites respond within a specified time threshold. Dependent requests such as images and JavaScript files must load properly. ✑ Generate alerts if a website is experiencing issues. ✑ If a website fails to load, the system must attempt to reload the site three more times. You need to implement this process with the least amount of effort. What should you do?. Create a Selenium web test and configure it to run from your workstation as a scheduled task. Set up a URL ping test to query the home page. Create an Azure function to query the home page. Create a multi-step web test to query the home page. Create a Custom Track Availability Test to query the home page.

You develop and add several functions to an Azure Function app that uses the latest runtime host. The functions contain several REST API endpoints secured by using SSL. The Azure Function app runs in a Consumption plan. You must send an alert when any of the function endpoints are unavailable or responding too slowly. You need to monitor the availability and responsiveness of the functions. What should you do?. Create a URL ping test. Create a timer triggered function that calls TrackAvailability() and send the results to Application Insights. Create a timer triggered function that calls GetMetric("Request Size") and send the results to Application Insights. Add a new diagnostic setting to the Azure Function app. Enable the FunctionAppLogs and Send to Log Analytics options.

DRAG DROP - You are developing an application to retrieve user profile information. The application will use the Microsoft Graph SDK. The app must retrieve user profile information by using a Microsoft Graph API call. You need to call the Microsoft Graph API from the application. In which order should you perform the actions? To answer, move all actions from the list of actions to the answer area and arrange them in the correct order. Select and Place: Create an authentication provider. Create a new instance of the GraphServiceClient. Invoke the request to the Microsoft Graph API. Register the application with the Microsoft identity platform. Build a client by using the client app ID.

DRAG DROP - You develop and deploy an Azure Logic App that calls an Azure Function app. The Azure Function App includes an OpenAPI (Swagger) definition and uses an Azure Blob storage account. All resources are secured by using Azure Active Directory (Azure AD). The Logic App must use Azure Monitor logs to record and store information about runtime data and events. The logs must be stored in the Azure Blob storage account. You need to set up Azure Monitor logs and collect diagnostics data for the Azure Logic App. Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. Select and Place: Create action groups and alert rules. Create a Log Analytics workspace. Install the Logic Apps Management solution. Add a diagnostic setting to the Azure Function App. Create an Azure storage account. Add a diagnostic setting to the Azure Logic App.

DRAG DROP - You develop an application. You plan to host the application on a set of virtual machines (VMs) in Azure. You need to configure Azure Monitor to collect logs from the application. Which four actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. Select and Place: Create a Log Analytics workspace. Install agents on the VM and VM scale set to be monitored. Send console logs. Add a VMInsights solution. Create an Application Insights resource.

You develop and deploy an Azure App Service web app. The app is deployed to multiple regions and uses Azure Traffic Manager. Application Insights is enabled for the app. You need to analyze app uptime for each month. Which two solutions will achieve the goal? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point. Azure Monitor logs. Application Insights alerts. Azure Monitor metrics. Application Insights web tests.

DRAG DROP - You develop and deploy an Azure App Service web app. The web app accesses data in an Azure SQL database. You must update the web app to store frequently used data in a new Azure Cache for Redis Premium instance. You need to implement the Azure Cache for Redis features. Which feature should you implement? To answer, drag the appropriate feature to the correct requirements. Each feature may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point. Select and Place: Create a data structure for storing collections of related items. Create a data structure for the most recently accessed cache items. Send messages through a high-performance publisher/subscriber mechanism.

You are developing an ASP.NET Core Web API web service. The web service uses Azure Application Insights for all telemetry and dependency tracking. The web service reads and writes data to a database other than Microsoft SQL Server. You need to ensure that dependency tracking works for calls to the third-party database. Which two dependency telemetry properties should you use? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point. Telemetry.Context.Cloud.RoleInstance. Telemetry.Id. Telemetry.Name. Telemetry.Context.Operation.Id. Telemetry.Context.Session.Id.

HOTSPOT - You are using Azure Front Door Service. You are expecting inbound files to be compressed by using Brotli compression. You discover that inbound XML files are not compressed. The files are 9 megabytes (MB) in size. You need to determine the root cause for the issue. To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: The file MIME type is supported by the service. Edge nodes must be purged of all cache assets. The compression type is supported.

HOTSPOT - You are developing an Azure App Service hosted ASP.NET Core web app to deliver video-on-demand streaming media. You enable an Azure Content Delivery Network (CDN) Standard for the web endpoint. Customer videos are downloaded from the web app by using the following example URL: http://www.contoso.com/ content.mp4?quality=1. All media content must expire from the cache after one hour. Customer videos with varying quality must be delivered to the closest regional point of presence (POP) node. You need to configure Azure CDN caching rules. Which options should you use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: Caching behavior. Cache expiration duration. Query string caching behavior.

HOTSPOT - You are developing an ASP.NET Core time sheet application that runs as an Azure Web App. Users of the application enter their time sheet information on the first day of every month. The application uses a third-party web service to validate data. The application encounters periodic server errors due to errors that result from calling a third-party web server. Each request to the third-party server has the same chance of failure. You need to configure an Azure Monitor alert to detect server errors unrelated to the third-party service. You must minimize false-positive alerts. How should you complete the Azure Resource Manager template? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: “criterionType”: "________",. “metricName”: “________",. “alertSensitivity": "_____".

You are developing a web application that uses Azure Cache for Redis. You anticipate that the cache will frequently fill and that you will need to evict keys. You must configure Azure Cache for Redis based on the following predicted usage pattern: A small subset of elements will be accessed much more often than the rest. You need to configure the Azure Cache for Redis to optimize performance for the predicted usage pattern. Which two eviction policies will achieve the goal? NOTE: Each correct selection is worth one point. noeviction. allkeys-lru. volatile-lru. allkeys-random. volatile-ttl. volatile-random.

DRAG DROP - An organization has web apps hosted in Azure. The organization wants to track events and telemetry data in the web apps by using Application Insights. You need to configure the web apps for Application Insights. Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. Select and Place: Configure the Azure App Service SDK for the app. Configure the Application Insights SDK in the app. Copy the connection string. Create an Azure Machine Learning workspace. Create an Application Insights resource.

An organization hosts web apps in Azure. The organization uses Azure Monitor. You discover that configuration changes were made to some of the web apps. You need to identify the configuration changes. Which Azure Monitor log should you review?. AppServiceAppLogs. AppServiceEnvironmentPlatformlogs. AppServiceConsoleLogs. AppServiceAuditLogs.

You develop and deploy an Azure App Service web app to a production environment. You enable the Always On setting and the Application Insights site extensions. You deploy a code update and receive multiple failed requests and exceptions in the web app. You need to validate the performance and failure counts of the web app in near real time. Which Application Insights tool should you use?. Profiler. Smart Detection. Live Metrics Stream. Application Map. Snapshot Debugger.

HOTSPOT - You deploy an ASP.NET web app to Azure App Service. You must monitor the web app by using Application Insights. You need to configure Application Insights to meet the requirements. Which feature should you use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: Automatically warn you of potential performance problems and failure anomalies in the web app. Automatically collect the state of the source code and variables when an exception is thrown in the web app. Capture performance traces of the web app without negatively affecting users of the web app.

You are building a web application that performs image analysis on user photos and returns metadata containing objects identified. The image analysis is very costly in terms of time and compute resources. You are planning to use Azure Redis Cache so duplicate uploads do not need to be reprocessed. In case of an Azure data center outage, metadata loss must be kept to a minimum. You need to configure the Azure Redis cache instance. Which two actions should you perform? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point. Configure Azure Redis with AOF persistence. Configure Azure Redis with RDB persistence. Configure second storage account for persistence. Set backup frequency to the minimum value.

You are developing an Azure-based web application. The application goes offline periodically to perform offline data processing. While the application is offline, numerous Azure Monitor alerts fire which result in the on-call developer being paged. The application must always log when the application is offline for any reason. You need to ensure that the on-call developer is not paged during offline processing. What should you do?. Add Azure Monitor alert processing rules to suppress notifications. Disable Azure Monitor Service Health Alerts during offline processing. Create an Azure Monitor Metric Alert. Build an Azure Monitor action group that suppresses the alerts.

You are developing an Azure solution to collect point-of-sale (POS) device data from 2,000 stores located throughout the world. A single device can produce 2 megabytes (MB) of data every 24 hours. Each store location has one to five devices that send data. You must store the device data in Azure Blob storage. Device data must be correlated based on a device identifier. Additional stores are expected to open in the future. You need to implement a solution to receive the device data. Solution: Provision an Azure Service Bus. Configure a topic to receive the device data by using a correlation filter. Does the solution meet the goal?. Yes. No.

You are developing an Azure solution to collect point-of-sale (POS) device data from 2,000 stores located throughout the world. A single device can produce 2 megabytes (MB) of data every 24 hours. Each store location has one to five devices that send data. You must store the device data in Azure Blob storage. Device data must be correlated based on a device identifier. Additional stores are expected to open in the future. You need to implement a solution to receive the device data. Solution: Provision an Azure Event Grid. Configure event filtering to evaluate the device identifier. Does the solution meet the goal?. Yes. No.

DRAG DROP - You manage several existing Logic Apps. You need to change definitions, add new logic, and optimize these apps on a regular basis. What should you use? To answer, drag the appropriate tools to the correct functionalities. Each tool may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point. Select and Place: Edit B2B workflows. Edit definitions in JSON. Visually add functionality.

A company is developing a solution that allows smart refrigerators to send temperature information to a central location. The solution must receive and store messages until they can be processed. You create an Azure Service Bus instance by providing a name, pricing tier, subscription, resource group, and location. You need to complete the configuration. Which Azure CLI or PowerShell command should you run?. az servicebus queue create --resource-group fridge-rg --namespace-name fridge-ns --name fridge-q. New-AzureRmResourceGroup -Name fridge-rg -Location fridge-loc. az servicebus namespace create --resource-group fridge-rg --name fridge-ns --location fridge-loc. connectionString-$)az serviceBus namespace authorization-rule keys list --resource-group fridge-rg --fridge-ns fridge-ns --query primaryConnectionString —output tsv).

HOTSPOT - You are developing an application that uses Azure Storage Queues. You have the following code: For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point. Hot Area: The code configures the lock duration for the queue. The last message read remains in the queue after the code runs. The storage queue remains in the storage account after the code runs.

A company is developing a solution that allows smart refrigerators to send temperature information to a central location. The solution must receive and store messages until they can be processed. You create an Azure Service Bus instance by providing a name, pricing tier, subscription, resource group, and location. You need to complete the configuration. Which Azure CLI or PowerShell command should you run?. az group create --name fridge-rg --location fridge-loc. New-AzureRmServiceBusNamespace -ResourceGroupName fridge-rg -NamespaceName fridge-ns -Location fridge-loc. New-AzureRmServiceBusQueue -ResourceGroupName fridge-rg -NamespaceName fridge-ns -Name fridge-q -EnablePartitioning $False. az servicebus namespace create --resource-group fridge-rg --name fridge-rg --location fridge-loc.

You are developing an Azure Service application that processes queue data when it receives a message from a mobile application. Messages may not be sent to the service consistently. You have the following requirements: ✑ Queue size must not grow larger than 80 gigabytes (GB). ✑ Use first-in-first-out (FIFO) ordering of messages. ✑ Minimize Azure costs. You need to implement the messaging solution. Solution: Use the .Net API to add a message to an Azure Storage Queue from the mobile application. Create an Azure Function App that uses an Azure Storage Queue trigger. Does the solution meet the goal?. Yes. No.

Denunciar Test