Skip to content

Diagnostic questions: Analyzing and Optimizing Technical and Business Processes :Preparing for your Professional Cloud Architect Journey (Preparing for Google Cloud Certification: Cloud Architect Professional Certificate) Answers 2025

1. Question 1 โ€” Availability SLO Monitoring

๐ŸŸฉ Uptime check
โŒ Readiness probe
โŒ Health check
โŒ Liveness probe

Explanation:
An Uptime Check monitors whether your service is reachable from outside and helps verify if you are meeting your availability SLO. Probes and health checks are internal to Kubernetes/Compute Engine and do not measure user-visible availability.


2. Question 2 โ€” Cheapest VMs for Test Environments

๐ŸŸฉ Preemptible machines
โŒ Sole tenant nodes
โŒ Committed use discount
โŒ Sustained use discount

Explanation:
Preemptible VMs are up to 80% cheaper than regular VMs. Since downtime is acceptable for test environments, preemptible VMs give the biggest cost savings.


3. Question 3 โ€” Test New Version With Small Traffic Portion

โŒ Rolling update
โŒ Blue/green deployment
๐ŸŸฉ Canary deployment
โŒ A/B testing

Explanation:
A Canary deployment sends a small percentage of real traffic to a new version. This is exactly suited for testing a minor update in production.


4. Question 4 โ€” Deploy With Zero Downtime

โŒ Canary deployment
๐ŸŸฉ Blue/green deployment
โŒ Rolling update
โŒ A/B test

Explanation:
A Blue/Green deployment runs two identical environments (blue=old, green=new). You switch traffic instantly โ†’ zero downtime rollback and release.


๐Ÿงพ Summary Table

Q# Correct Answer Key Concept
1 Uptime check Measures availability SLO externally
2 Preemptible machines Cheapest option for non-critical workloads
3 Canary deployment Test new version with small traffic
4 Blue/green deployment Zero downtime deployment