C1000-176 · Question #32
Which combination of technologies would be best for designing a solution that can survive the outage of a region? (Select two)
The correct answer is A. Multi-region database replication C. Cross-region load balancing. Multi-region database replication (A) ensures data remains available and consistent even if an entire region goes down, by maintaining synchronized copies of data across geographic boundaries. Cross-region load balancing (C) automatically routes traffic away from a failed…
Question
Which combination of technologies would be best for designing a solution that can survive the outage of a region? (Select two)
Options
- AMulti-region database replication
- BSingle-zone server deployments
- CCross-region load balancing
- DRegion-specific user authentication
How the community answered
(28 responses)- A79% (22)
- B7% (2)
- D14% (4)
Explanation
Multi-region database replication (A) ensures data remains available and consistent even if an entire region goes down, by maintaining synchronized copies of data across geographic boundaries. Cross-region load balancing (C) automatically routes traffic away from a failed region to healthy ones, making the failure transparent to users. Together, these two form the foundation of a region-resilient architecture: one protects the data layer, the other protects traffic routing.
Why the distractors fail:
- B (Single-zone deployments): Concentrating resources in one zone is the opposite of resilience - a zone failure takes everything down.
- D (Region-specific authentication): Tying auth to a single region creates a regional dependency; if that region fails, users can't authenticate anywhere.
Memory tip: Think "survive a region outage" = replicate the data, reroute the traffic - A and C map directly to those two actions. If an answer limits scope to a single zone or region, it's always wrong for availability questions.
Topics
Community Discussion
No community discussion yet for this question.