# The Console, Regions & Availability Zones — AWS

Source: https://www.geekswithgeeks.com/en/aws/aws-console-regions

> Where you manage AWS, and how it's physically spread across the world.

## The Management Console

The **AWS Management Console** is the web UI for creating and managing every service — from a single EC2 server to a whole VPC. Everything it does is also possible via CLI/API.

## Regions

A **Region** is a separate geographic area (e.g. `ap-south-1` Mumbai, `us-east-1` N. Virginia). Pick a region close to your users for latency, and mind data-residency/compliance rules.

## Availability Zones

Each region has multiple **Availability Zones (AZs)** — isolated data centers with independent power and networking. Spreading resources across AZs protects you if one data center fails.

**Quiz:** Why deploy your app's servers across multiple Availability Zones?

- [ ] It makes the code run faster
- [x] It survives the failure of a single data center
- [ ] It reduces the AWS bill automatically

*Answer:* It survives the failure of a single data center. AZs are physically isolated, so spreading instances across them gives you resilience if one AZ goes down.
