0
0
GCPcloud~20 mins

Cloud DNS for domain management in GCP - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Cloud DNS Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
service_behavior
intermediate
2:00remaining
How does Cloud DNS handle DNS record updates?

You update a DNS record in Cloud DNS. What happens immediately after the update?

AThe update is applied only after the DNS zone is manually reloaded.
BThe update propagates gradually based on the TTL of the DNS record.
CThe update requires restarting the Cloud DNS service to take effect.
DThe update is instantly visible worldwide with zero delay.
Attempts:
2 left
💡 Hint

Think about how DNS caching works globally.

Architecture
intermediate
2:00remaining
Choosing DNS zone type for domain management

You want to manage DNS records for your public website domain using Cloud DNS. Which DNS zone type should you create?

AForwarding DNS zone to forward queries to another DNS server.
BPrivate DNS zone to restrict DNS resolution to your internal network.
CReverse DNS zone to map IP addresses back to domain names.
DPublic DNS zone to allow global DNS resolution for your domain.
Attempts:
2 left
💡 Hint

Consider if your domain should be visible on the internet.

security
advanced
2:00remaining
Securing DNS updates in Cloud DNS

Which method provides the best security to prevent unauthorized DNS record changes in Cloud DNS?

AUse a VPN to connect to Cloud DNS for updates.
BEnable DNSSEC to encrypt DNS record updates.
CUse IAM roles to restrict who can update DNS zones.
DDisable all DNS updates except during business hours.
Attempts:
2 left
💡 Hint

Think about controlling access permissions.

Configuration
advanced
2:00remaining
Configuring a DNS A record for a VM instance

You want to create a DNS A record in Cloud DNS that points app.example.com to the external IP of your VM instance. Which configuration is correct?

AName: app.example.com., Type: A, TTL: 300, Data: 35.192.0.1
BName: app, Type: A, TTL: 300, Data: 35.192.0.1
CName: app.example.com, Type: CNAME, TTL: 300, Data: 35.192.0.1
DName: app.example.com., Type: A, TTL: 300, Data: app.example.com
Attempts:
2 left
💡 Hint

Remember the correct record type and format for IP addresses.

Best Practice
expert
2:00remaining
Designing DNS for high availability and low latency

You want to design Cloud DNS for a global application to ensure high availability and low latency DNS resolution. Which approach is best?

AUse a single public DNS zone and rely on Cloud DNS global anycast infrastructure.
BCreate private DNS zones in each region and forward queries to them.
CManually update DNS records with different IPs based on user location.
DCreate multiple public DNS zones with the same domain name in different regions.
Attempts:
2 left
💡 Hint

Think about how Cloud DNS handles global traffic.