AZ-204 Exam Question 71

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.
  • AZ-204 Exam Question 72

    You are building a web application that performs image analysis on user photos and returns metadata containing objects identified. The image 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?
  • AZ-204 Exam Question 73

    You have an Azure Web app that uses Cosmos DB as a data store. You create a CosmosDB container by running the following PowerShell script:
    $resourceGroupName = "testResourceGroup"
    $accountName = "testCosmosAccount"
    $databaseName = "testDatabase"
    $containerName = "testContainer"
    $partitionKeyPath = "/EmployeeId"
    $autoscaleMaxThroughput = 5000
    New-AzCosmosDBSqlContainer
    -ResourceGroupName $resourceGroupName
    -AccountName $accountName
    -DatabaseName $databaseName
    -Name $containerName
    -PartitionKeyKind Hash
    -PartitionKeyPath $partitionKeyPath
    -AutoscaleMaxThroughput $autoscaleMaxThroughput
    You create the following queries that target the container:
    SELECT * FROM c WHERE c.EmployeeId > '12345'
    SELECT * FROM c WHERE c.UserID = '12345'
    For each of the following statements, select Yes if the statement is true. Otherwise, select No.
    NOTE: Each correct selection is worth one point.

    AZ-204 Exam Question 74

    You need to configure API Management for authentication.
    Which policy values should you use? To answer, select the appropriate options in the answer area.
    NOTE: Each correct selection is worth one point.

    AZ-204 Exam Question 75

    Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
    After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
    You develop a software as a service (SaaS) offering to manage photographs. Users upload photos to a web service which then stores the photos in Azure Storage Blob storage. The storage account type is General-purpose V2.
    When photos are uploaded, they must be processed to produce and save a mobile-friendly version of the image. The process to produce a mobile-friendly version of the image must start in less than one minute.
    You need to design the process that starts the photo processing.
    Solution: Create an Azure Function app that uses the Consumption hosting model and that is triggered from the blob upload.
    Does the solution meet the goal?