0
0
Azurecloud~20 mins

Performance efficiency pillar in Azure - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Azure Performance Efficiency Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Azure Autoscale Behavior

You configure an Azure App Service with autoscale rules based on CPU usage. The rule scales out by adding one instance when CPU usage exceeds 70% for 5 minutes. What happens if CPU usage spikes to 80% for 3 minutes and then drops to 60%?

AThe service does not add any instance because the CPU usage did not exceed 70% for a full 5 minutes.
BThe service adds one instance after 3 minutes and keeps it running indefinitely.
CThe service adds multiple instances proportional to the CPU spike duration.
DThe service adds one instance immediately when CPU hits 80%, then removes it after CPU drops below 70%.
Attempts:
2 left
💡 Hint

Autoscale rules require the condition to be true for the full duration specified.

Architecture
intermediate
2:00remaining
Choosing Azure Storage for Performance

You need to store large amounts of unstructured data with high read throughput and low latency. Which Azure storage option best fits this requirement?

AAzure Blob Storage with Hot access tier
BAzure File Storage with Premium tier
CAzure Table Storage
DAzure Queue Storage
Attempts:
2 left
💡 Hint

Consider storage optimized for large unstructured data and fast reads.

security
advanced
2:00remaining
Impact of Network Security Groups on Performance

You apply a complex Network Security Group (NSG) with many rules to an Azure Virtual Machine subnet. What is the likely impact on network performance?

ANSGs improve performance by blocking unwanted traffic early.
BNo impact, NSGs do not affect network performance.
CSignificant throughput reduction due to NSG processing overhead.
DSlight latency increase due to rule evaluation on each packet.
Attempts:
2 left
💡 Hint

Think about how packet filtering works in Azure.

service_behavior
advanced
2:00remaining
Azure Cosmos DB Consistency and Performance

You configure Azure Cosmos DB with strong consistency. How does this choice affect read latency compared to eventual consistency?

ARead latency is the same for both consistency levels.
BRead latency is higher with strong consistency due to coordination across replicas.
CRead latency is lower with strong consistency because data is always up-to-date.
DStrong consistency disables replication, improving read latency.
Attempts:
2 left
💡 Hint

Consider how data synchronization affects response times.

Best Practice
expert
2:00remaining
Optimizing Azure Functions for Performance Efficiency

You have an Azure Function app that experiences cold start delays impacting user experience. Which approach best reduces cold start latency?

AUse the Consumption plan with pre-warmed instances enabled.
BDeploy multiple function apps to distribute load.
CSwitch to Premium plan with Always On enabled.
DIncrease function timeout to allow longer execution.
Attempts:
2 left
💡 Hint

Consider plans that keep instances warm to avoid cold starts.