Complete the code to select the pricing model for an Azure SQL Database.
pricing_model = "[1]"
The DTU pricing model bundles compute, storage, and IO resources into a single unit.
Complete the code to select the pricing model that allows independent scaling of compute and storage.
pricing_model = "[1]"
The vCore model lets you scale compute and storage separately for more flexibility.
Fix the error in the code to correctly assign the pricing model variable.
pricing_model = [1]String values must be enclosed in quotes in Python code.
Fill both blanks to create a dictionary showing pricing models and their scaling features.
pricing_features = {"DTU": "[1]", "vCore": "[2]"}DTU bundles compute and storage together, while vCore allows independent scaling.
Fill all three blanks to complete the dictionary showing pricing model, billing unit, and flexibility.
pricing_info = {"model": "[1]", "billing_unit": "[2]", "flexibility": "[3]"}The vCore model bills by virtual cores, offers independent scaling, while DTU bundles resources.