0
0
Azurecloud~20 mins

Function pricing (consumption vs premium) in Azure - Practice Questions

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Azure Function Pricing Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding billing triggers in Consumption plan

Which event causes billing to start for an Azure Function running on the Consumption plan?

AWhen the function code is executed in response to an event
BWhen the function app is deployed to Azure
CWhen the function app is idle for more than 5 minutes
DWhen the function app is scaled to multiple instances
Attempts:
2 left
💡 Hint

Think about what triggers actual work and resource use.

Architecture
intermediate
2:00remaining
Scaling behavior difference between Consumption and Premium plans

Which statement correctly describes the scaling behavior difference between Azure Functions Consumption and Premium plans?

AConsumption plan scales instantly with no cold starts; Premium plan has fixed instances
BConsumption plan scales automatically with possible cold starts; Premium plan pre-warms instances to avoid cold starts
CBoth plans require manual scaling and have cold starts
DPremium plan scales only during business hours; Consumption plan scales 24/7
Attempts:
2 left
💡 Hint

Consider how each plan handles instance readiness.

security
advanced
2:00remaining
Network isolation capabilities in Function plans

Which Azure Function pricing plan supports Virtual Network (VNet) integration for secure network isolation?

ANeither plan supports VNet integration
BBoth Consumption and Premium plans
CConsumption plan only
DPremium plan only
Attempts:
2 left
💡 Hint

Think about which plan offers advanced networking features.

Best Practice
advanced
2:00remaining
Choosing the right plan for predictable workloads

You have an Azure Function with a steady, predictable workload that requires no cold starts and needs to run 24/7. Which plan is best?

APremium plan, because it pre-warms instances and supports always-on
BConsumption plan, because it is cost-effective for steady workloads
CConsumption plan, because it automatically scales to zero when idle
DPremium plan, because it charges only when functions run
Attempts:
2 left
💡 Hint

Consider the need for no cold starts and always-on availability.

service_behavior
expert
2:00remaining
Memory allocation and billing differences

How does memory allocation affect billing in Azure Functions Consumption vs Premium plans?

ABoth plans bill only per execution count, memory is not billed separately
BConsumption plan bills per GB-second with fixed 1.5 GB memory; Premium plan bills per instance regardless of memory
CConsumption plan bills per GB-second based on allocated memory; Premium plan allows custom memory sizes and bills per vCPU and memory allocated
DPremium plan bills per GB-second; Consumption plan bills per vCPU usage
Attempts:
2 left
💡 Hint

Think about how memory customization affects billing in each plan.