AZ-204 Exam Question 76

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 question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are developing a website that will run as an Azure Web App. Users will authenticate by using their Azure Active Directory (Azure AD) credentials.
You plan to assign users one of the following permission levels for the website: admin, normal, and reader. A user's Azure AD group membership must be used to determine the permission level. You need to configure authorization.
Solution: Configure the Azure Web App for the website to allow only authenticated requests and require Azure AD log on.
Does the solution meet the goal?
  • AZ-204 Exam Question 77

    You need to migrate on-premises shipping data to Azure.
    What should you use?
  • AZ-204 Exam Question 78

    You are developing an Azure App Service hosted ASP.NET Core web app to deliver video on-demand streaming medi a. 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.

    AZ-204 Exam Question 79

    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 80

    You are developing an application that runs in several customer Azure Kubernetes Service clusters, Within each cluster, a pod runs that collects performance data to be analyzed later, a large amount of data is collected so saving latency must be minimized The performance data must be stored so that pod restarts do not impact the stored dat a. Write latency should be minimized.
    You need to configure blob storage.
    How should you complete the YAML configuration? To answer, select the appropriate options in the answer area.