0
0
Azurecloud~20 mins

Resource naming conventions in Azure - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Azure Resource Naming Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Azure resource name length limits

Azure resources have specific length limits for their names. Which of the following resource names is valid for an Azure Storage Account?

Astorageaccount12345678901234567890
Bstorageaccounttoolong1234567890123456789012345
Cstorage_account_with_underscores
Dstgacc
Attempts:
2 left
💡 Hint

Azure Storage Account names must be between 3 and 24 characters, and only lowercase letters and numbers are allowed.

Architecture
intermediate
2:00remaining
Choosing resource names for environment separation

You want to name Azure resources to clearly separate development and production environments. Which naming pattern best supports this goal?

Aapp-prod-webserver, app-dev-webserver
Bappwebserver1, appwebserver2
Cwebserver-prod, webserver-prod2
Dprodappwebserver, devappwebserver
Attempts:
2 left
💡 Hint

Think about clarity and consistency in naming to identify environment quickly.

security
advanced
2:00remaining
Avoiding sensitive information in resource names

Which of the following Azure resource names best avoids exposing sensitive information?

Adbserver-prod-001
Bfinance-prod-db-server-nyc
Cfinance-prod-db-password123
Dnyc-finance-prod-db
Attempts:
2 left
💡 Hint

Resource names should not contain passwords or sensitive data.

Best Practice
advanced
2:00remaining
Consistent resource naming for automation

Which naming convention is best for automating resource management scripts in Azure?

AresGrp1, resGrp2, resGrp3
Brg-prod-eastus-001, rg-prod-eastus-002, rg-prod-eastus-003
Cprod-eastus-rg-1, prod-eastus-rg-2, prod-eastus-rg-3
Deastus-prod-rg-01, eastus-prod-rg-02, eastus-prod-rg-03
Attempts:
2 left
💡 Hint

Automation benefits from predictable, structured names including environment, region, and sequence.

service_behavior
expert
2:00remaining
Impact of resource name on Azure DNS resolution

Consider an Azure App Service with the name 'myappservice123'. What is the fully qualified domain name (FQDN) automatically assigned to this app service?

Amyappservice123.azure.com
Bmyappservice123.windows.net
Cmyappservice123.azurewebsites.net
Dmyappservice123.cloudapp.net
Attempts:
2 left
💡 Hint

Azure App Services use a specific domain suffix for their default URLs.