0
0
Azurecloud~10 mins

DTU vs vCore pricing models in Azure - Interactive Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to select the pricing model for an Azure SQL Database.

Azure
pricing_model = "[1]"
Drag options to blanks, or click blank then click option'
AvCore
BBandwidth
CStorage
DDTU
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'vCore' which is a different pricing model.
Selecting 'Storage' or 'Bandwidth' which are not pricing models.
2fill in blank
medium

Complete the code to select the pricing model that allows independent scaling of compute and storage.

Azure
pricing_model = "[1]"
Drag options to blanks, or click blank then click option'
ABasic
BvCore
CDTU
DPremium
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'DTU' which bundles resources together.
Selecting service tiers like 'Basic' or 'Premium' which are not pricing models.
3fill in blank
hard

Fix the error in the code to correctly assign the pricing model variable.

Azure
pricing_model = [1]
Drag options to blanks, or click blank then click option'
A"vCore"
BDTU
CvCore
D'DTU'
Attempts:
3 left
💡 Hint
Common Mistakes
Not using quotes causes a NameError.
Using unquoted identifiers instead of strings.
4fill in blank
hard

Fill both blanks to create a dictionary showing pricing models and their scaling features.

Azure
pricing_features = {"DTU": "[1]", "vCore": "[2]"}
Drag options to blanks, or click blank then click option'
Abundled compute and storage
Bindependent compute and storage
Cfixed storage only
Ddynamic bandwidth allocation
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up which model bundles or separates resources.
Choosing unrelated features like bandwidth.
5fill in blank
hard

Fill all three blanks to complete the dictionary showing pricing model, billing unit, and flexibility.

Azure
pricing_info = {"model": "[1]", "billing_unit": "[2]", "flexibility": "[3]"}
Drag options to blanks, or click blank then click option'
ADTU
BvCore
Cbundled resources
Dindependent scaling
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing billing units between models.
Mixing flexibility descriptions.