Question 205 of 213
Single answerHOTSPOT -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 = 5000New-AzCosmosDBSqlContainer --ResourceGroupName $resourceGroupName-AccountName $accountName-DatabaseName $databaseName-Name $containerName-PartitionKeyKind Hash-PartitionKeyPath $partitionKeyPath-AutoscaleMaxThroughput $autoscaleMaxThroughputYou 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.Hot Area:
✓A Box 1: No -You set the highest, or maximum RU/s Tmax you don't want the system to exceed. The system automatically scales the throughput T such that 0.1* Tmax <= T <=Tmax.In this example we have autoscaleMaxThroughput = 5000, so the minimu
BRefer to simulation panel
✓
Correct Answer: A
Box 1: No -You set the highest, or maximum RU/s Tmax you don't want the system to exceed. The system automatically scales the throughput T such that 0.1* Tmax <= T <=Tmax.In this example we have autoscaleMaxThroughput = 5000, so the minimu
▥
Explanation
The correct answer is highlighted above. Review the wording carefully, then use the next question to continue building your understanding of Microsoft certification topics.