Global Infrastructure Quiz
Quiz
Question 1 of 31
(0 answered)
Question 1
What is the primary purpose of AWS Regions being geographically separated?
✓
Correct!
AWS Regions are geographically separated to provide disaster recovery options, business continuity, and allow compliance with data residency requirements. AWS does not move data between Regions without explicit customer action.
✗
Incorrect
AWS Regions are geographically separated to provide disaster recovery options, business continuity, and allow compliance with data residency requirements. AWS does not move data between Regions without explicit customer action.
Think about regulatory compliance and disaster scenarios.
Question 2
Which factors should you consider when choosing an AWS Region for your application?
✓
Correct!
The five key factors for choosing a Region are: latency/user proximity, data sovereignty/compliance, service availability, cost, and disaster recovery requirements. While the number of AZs matters for architecture, it’s not a primary Region selection criterion.
✗
Incorrect
The five key factors for choosing a Region are: latency/user proximity, data sovereignty/compliance, service availability, cost, and disaster recovery requirements. While the number of AZs matters for architecture, it’s not a primary Region selection criterion.
The content lists five specific factors to consider when selecting a Region.
Question 3
Availability Zones within a Region are connected via the public internet to ensure maximum accessibility.
✓
Correct!
False. Availability Zones within a Region are connected via low-latency, high-bandwidth, redundant fiber optic networks—not the public internet. This provides single-digit millisecond latency and enables synchronous replication.
✗
Incorrect
False. Availability Zones within a Region are connected via low-latency, high-bandwidth, redundant fiber optic networks—not the public internet. This provides single-digit millisecond latency and enables synchronous replication.
Consider what type of network would provide the best performance and security.
Question 4
Complete the ARN for an EC2 instance in the us-east-1 Region:
Fill in the missing partition identifier
arn:___:ec2:us-east-1:123456789012:instance/i-1234567890abcdef0✓
Correct!
The partition for standard AWS Regions is ‘aws’. Other partitions include ‘aws-cn’ for AWS China Regions and ‘aws-us-gov’ for AWS GovCloud (US) Regions.
✗
Incorrect
The partition for standard AWS Regions is ‘aws’. Other partitions include ‘aws-cn’ for AWS China Regions and ‘aws-us-gov’ for AWS GovCloud (US) Regions.
Question 5
How many data centers does an Availability Zone contain?
✓
Correct!
An Availability Zone consists of one or more discrete data centers within an AWS Region. Each AZ has redundant power, networking, and connectivity, and may contain multiple data centers working together.
✗
Incorrect
An Availability Zone consists of one or more discrete data centers within an AWS Region. Each AZ has redundant power, networking, and connectivity, and may contain multiple data centers working together.
The definition mentions ‘one or more’ data centers.
Question 6
What is the typical inter-AZ latency within a Region (in milliseconds)?
✓
Correct!
Typical inter-AZ latency within a Region is single-digit milliseconds. This low latency enables synchronous replication for databases and storage systems.
✗
Incorrect
Typical inter-AZ latency within a Region is single-digit milliseconds. This low latency enables synchronous replication for databases and storage systems.
Think about the order of magnitude—less than 10ms.
Question 7
Which of the following are characteristics of AWS Local Zones?
✓
Correct!
Local Zones are designed for ultra-low (single-digit millisecond) latency, are associated with a parent AWS Region, and connected via AWS’s private network. However, not all services are available in Local Zones (only select compute, storage, and database services), and they are not independent from Regions.
✗
Incorrect
Local Zones are designed for ultra-low (single-digit millisecond) latency, are associated with a parent AWS Region, and connected via AWS’s private network. However, not all services are available in Local Zones (only select compute, storage, and database services), and they are not independent from Regions.
Local Zones extend AWS infrastructure but have limitations compared to full Regions.
Question 8
What does Multi-AZ deployment provide?
What does Multi-AZ deployment provide?
High Availability and (enables) Fault Tolerance
Distributing resources across multiple Availability Zones within a Region provides:
- Protection against AZ-level failures
- Automatic failover capabilities
- Continuous operation during infrastructure issues
- Best practice: use at least 2 AZs for production (3+ preferred)
Did you get it right?
✓
Correct!
✗
Incorrect
Question 9
Arrange these AWS Global Infrastructure components from largest to smallest scope:
Drag to arrange in order from broadest to most specific
⋮⋮
AWS Region
⋮⋮
Availability Zone
⋮⋮
Data Center
⋮⋮
AWS Global Infrastructure
✓
Correct!
The hierarchy is: AWS Global Infrastructure (worldwide) → Region (geographic location) → Availability Zone (isolated location within Region) → Data Center (physical facility).
✗
Incorrect
The hierarchy is: AWS Global Infrastructure (worldwide) → Region (geographic location) → Availability Zone (isolated location within Region) → Data Center (physical facility).
Question 10
Given this S3 bucket ARN, what can you determine about the bucket?
arn:aws:s3:::my-application-bucketWhat will this code output?
✓
Correct!
S3 bucket ARNs do not include region or account ID because bucket names are globally unique across all AWS accounts. However, buckets themselves exist in a specific Region—the ARN format simply doesn’t show it. Objects stay in their Region unless explicitly replicated.
✗
Incorrect
S3 bucket ARNs do not include region or account ID because bucket names are globally unique across all AWS accounts. However, buckets themselves exist in a specific Region—the ARN format simply doesn’t show it. Objects stay in their Region unless explicitly replicated.
S3 bucket names must be globally unique, which affects the ARN format.
Question 11
Which statement about IAM (Identity and Access Management) is most accurate?
✓
Correct!
IAM is a global service, but it has regional dependencies. IAM uses AWS STS (Security Token Service) for temporary credentials, which has regional endpoints. If a region hosting STS fails, IAM operations in that region may be affected.
✗
Incorrect
IAM is a global service, but it has regional dependencies. IAM uses AWS STS (Security Token Service) for temporary credentials, which has regional endpoints. If a region hosting STS fails, IAM operations in that region may be affected.
Consider the relationship between IAM and Security Token Service (STS).
Question 12
Amazon S3 bucket names must be globally unique, but the data in buckets is always stored regionally.
✓
Correct!
True. S3 bucket names are globally unique (cannot be reused across accounts), but buckets exist in a specific Region and objects remain in that Region unless Cross-Region Replication (CRR) is configured.
✗
Incorrect
True. S3 bucket names are globally unique (cannot be reused across accounts), but buckets exist in a specific Region and objects remain in that Region unless Cross-Region Replication (CRR) is configured.
Think about the difference between naming and storage location.
Question 13
Which AWS services are global in scope?
✓
Correct!
Global services include IAM, Route 53, CloudFront, and AWS Organizations. Regional services include EC2, VPC, RDS, and DynamoDB (though DynamoDB offers Global Tables for multi-region replication).
✗
Incorrect
Global services include IAM, Route 53, CloudFront, and AWS Organizations. Regional services include EC2, VPC, RDS, and DynamoDB (though DynamoDB offers Global Tables for multi-region replication).
Global services typically relate to identity, DNS, or content delivery.
Question 14
What is the minimum recommended number of Availability Zones for production workloads?
✓
Correct!
Best practice recommends using at least 2 Availability Zones for production workloads, with 3 or more preferred. This provides high availability and fault tolerance while balancing cost and complexity.
✗
Incorrect
Best practice recommends using at least 2 Availability Zones for production workloads, with 3 or more preferred. This provides high availability and fault tolerance while balancing cost and complexity.
Think about the minimum needed for redundancy versus the ideal setup.
Question 15
Traffic between AWS Regions stays on AWS’s private ________ network and does not traverse the public internet.
✓
Correct!
Regions are interconnected via AWS’s private, high-speed global backbone network. Traffic between Regions stays on this AWS backbone and doesn’t traverse the public internet, enabling secure, low-latency inter-region communication.
✗
Incorrect
Regions are interconnected via AWS’s private, high-speed global backbone network. Traffic between Regions stays on this AWS backbone and doesn’t traverse the public internet, enabling secure, low-latency inter-region communication.
It’s a term referring to the main high-capacity network infrastructure.
Question 16
Complete the IAM role ARN:
Fill in what belongs in the region field for IAM resources
arn:aws:iam:___:123456789012:role/MyApplicationRole✓
Correct!
IAM is a global service, so the region field is left empty (represented by ::). The ARN format shows two colons with nothing between them where the region would normally appear.
✗
Incorrect
IAM is a global service, so the region field is left empty (represented by ::). The ARN format shows two colons with nothing between them where the region would normally appear.
Question 17
When would you use AWS Local Zones instead of standard Availability Zones?
✓
Correct!
Local Zones are designed for applications requiring single-digit millisecond (sub-10ms) latency to end users in geographic areas not served by nearby AWS Regions. They’re ideal for latency-sensitive workloads like media rendering and real-time gaming, though they have limited service availability.
✗
Incorrect
Local Zones are designed for applications requiring single-digit millisecond (sub-10ms) latency to end users in geographic areas not served by nearby AWS Regions. They’re ideal for latency-sensitive workloads like media rendering and real-time gaming, though they have limited service availability.
Local Zones prioritize one specific performance characteristic.
Question 18
What information can you extract from this ARN: arn:aws:lambda:eu-west-1:123456789012:function:my-function
✓
Correct!
From the ARN, you can determine: it’s a Lambda function (service: lambda), located in eu-west-1 region, owned by account 123456789012, and named ‘my-function’. The runtime language is not part of the ARN—that’s a separate configuration attribute.
✗
Incorrect
From the ARN, you can determine: it’s a Lambda function (service: lambda), located in eu-west-1 region, owned by account 123456789012, and named ‘my-function’. The runtime language is not part of the ARN—that’s a separate configuration attribute.
ARNs contain structural information but not runtime configuration details.
Question 19
Resources in one AWS Region automatically replicate to other Regions for disaster recovery purposes.
✓
Correct!
False. Resources in one Region do not automatically replicate to another. Regions are designed to be completely independent and isolated. Cross-region replication must be explicitly configured using services like S3 Cross-Region Replication, DynamoDB Global Tables, or Aurora Global Database.
✗
Incorrect
False. Resources in one Region do not automatically replicate to another. Regions are designed to be completely independent and isolated. Cross-region replication must be explicitly configured using services like S3 Cross-Region Replication, DynamoDB Global Tables, or Aurora Global Database.
Think about the principle of regional independence and isolation.
Question 20
What are the key components of an AWS ARN?
What are the key components of an AWS ARN?
ARN Format: arn:partition:service:region:account-id:resource
- Partition: aws, aws-cn, or aws-us-gov
- Service: The AWS service (ec2, s3, iam, lambda, etc.)
- Region: AWS Region (omitted for global services)
- Account ID: 12-digit AWS account (omitted for globally unique names)
- Resource: Resource type and identifier (format varies by service)
Did you get it right?
✓
Correct!
✗
Incorrect
Question 21
Arrange these deployment patterns from least resilient to most resilient:
Drag to order by increasing fault tolerance
⋮⋮
Multi-Region with replication
⋮⋮
Single Region, Multi-AZ
⋮⋮
Single Region, Single AZ
✓
Correct!
Resilience increases with geographic distribution: Single AZ (single point of failure) → Multi-AZ (protects against AZ failures) → Multi-Region (protects against region-wide failures and provides global redundancy).
✗
Incorrect
Resilience increases with geographic distribution: Single AZ (single point of failure) → Multi-AZ (protects against AZ failures) → Multi-Region (protects against region-wide failures and provides global redundancy).
Question 22
Which architectural pattern provides protection against both AZ failures and region-wide failures?
✓
Correct!
Multi-Region deployment with replication (CRR, Global Tables, Aurora Global Database) protects against both AZ-level and region-wide failures. Single Region Multi-AZ protects only against AZ failures, while Local Zones don’t provide region-level redundancy.
✗
Incorrect
Multi-Region deployment with replication (CRR, Global Tables, Aurora Global Database) protects against both AZ-level and region-wide failures. Single Region Multi-AZ protects only against AZ failures, while Local Zones don’t provide region-level redundancy.
Think about what’s needed to survive a complete regional outage.
Question 23
What does this IAM policy statement allow?
{
"Effect": "Allow",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::my-bucket/*"
}What will this code output?
✓
Correct!
This policy grants read access (GetObject) to all objects (
/*) in the specific bucket ‘my-bucket’. The wildcard (*) after the bucket name matches all object keys. It does not grant write access or access to other buckets.✗
Incorrect
This policy grants read access (GetObject) to all objects (
/*) in the specific bucket ‘my-bucket’. The wildcard (*) after the bucket name matches all object keys. It does not grant write access or access to other buckets.Focus on the Action (GetObject) and the Resource ARN with the wildcard.
Question 24
Each AWS Availability Zone has independent power, cooling, and networking infrastructure to provide fault isolation.
✓
Correct!
True. Each AZ is designed with independent power, cooling, and networking infrastructure. This independence means that a failure in one AZ (power outage, network issue, etc.) should not affect other AZs within the same Region.
✗
Incorrect
True. Each AZ is designed with independent power, cooling, and networking infrastructure. This independence means that a failure in one AZ (power outage, network issue, etc.) should not affect other AZs within the same Region.
This is a core design principle of Availability Zones.
Question 25
Which services offer features for global distribution despite being regional by default?
✓
Correct!
S3 (via Cross-Region Replication), DynamoDB (via Global Tables), and Aurora (via Global Database) are regional services with global distribution features. IAM is already global (though it has regional dependencies), and EC2 Auto Scaling groups are regional only.
✗
Incorrect
S3 (via Cross-Region Replication), DynamoDB (via Global Tables), and Aurora (via Global Database) are regional services with global distribution features. IAM is already global (though it has regional dependencies), and EC2 Auto Scaling groups are regional only.
Look for services that explicitly mention cross-region or global capabilities.
Question 26
What is the naming pattern for an AWS Local Zone in Boston associated with the us-east-1 Region?
✓
Correct!
Local Zone identifiers follow the pattern:
<parent-region>-<metro-code>-<zone-id><letter>. For Boston associated with us-east-1, it would be ‘us-east-1-bos-1a’. Other examples include us-west-2-lax-1a (Los Angeles) and us-west-2-phx-1a (Phoenix).✗
Incorrect
Local Zone identifiers follow the pattern:
<parent-region>-<metro-code>-<zone-id><letter>. For Boston associated with us-east-1, it would be ‘us-east-1-bos-1a’. Other examples include us-west-2-lax-1a (Los Angeles) and us-west-2-phx-1a (Phoenix).The format includes the parent region, a city abbreviation, and zone identifier.
Question 27
What are best practices for using Availability Zones?
What are best practices for using Availability Zones?
AZ Best Practices:
- Deploy resources across multiple AZs for high availability
- Use at least 2 AZs for production (3+ preferred)
- Design for AZ failure—applications should gracefully handle outages
- Leverage AZ-aware services (ELB, RDS Multi-AZ, Auto Scaling)
- Monitor AZ health and balance traffic appropriately
Did you get it right?
✓
Correct!
✗
Incorrect
Question 28
In the region code ‘us-east-1’, the number ‘1’ represents the ________ number.
✓
Correct!
In AWS Region naming (e.g., us-east-1), the components are: geographic area (us) - location within area (east) - region number (1). The number distinguishes between multiple regions in the same geographic area.
✗
Incorrect
In AWS Region naming (e.g., us-east-1), the components are: geographic area (us) - location within area (east) - region number (1). The number distinguishes between multiple regions in the same geographic area.
What does the ‘1’ distinguish from potential future regions in the same area?
Question 29
If you need to comply with GDPR data residency requirements, which Region selection factor is most critical?
✓
Correct!
Data sovereignty and compliance is the most critical factor for GDPR. GDPR requires data to remain within specific geographic boundaries (Europe). AWS does not move data between Regions without explicit customer action, so choosing an EU region is essential for GDPR compliance.
✗
Incorrect
Data sovereignty and compliance is the most critical factor for GDPR. GDPR requires data to remain within specific geographic boundaries (Europe). AWS does not move data between Regions without explicit customer action, so choosing an EU region is essential for GDPR compliance.
GDPR is a European regulation about data protection and privacy.
Question 30
New AWS services typically launch in all Regions simultaneously to ensure global availability.
✓
Correct!
False. New AWS services typically launch in us-east-1 first, then gradually expand to other Regions. Not all services are available in all Regions, which is why service availability is a factor to consider when choosing a Region.
✗
Incorrect
False. New AWS services typically launch in us-east-1 first, then gradually expand to other Regions. Not all services are available in all Regions, which is why service availability is a factor to consider when choosing a Region.
Think about how technology companies typically roll out new features.
Question 31
Complete the S3 object ARN for a file in a bucket:
Add the correct separator between bucket name and object path
arn:aws:s3:::my-bucket___path/to/file.txt✓
Correct!
S3 object ARNs use a forward slash (/) to separate the bucket name from the object key: arn:aws:s3:::my-bucket/path/to/file.txt. This follows standard path notation.
✗
Incorrect
S3 object ARNs use a forward slash (/) to separate the bucket name from the object key: arn:aws:s3:::my-bucket/path/to/file.txt. This follows standard path notation.
Quiz Results
Score
0/0
Accuracy
0%
Right
0
Wrong
Skipped
0
Last updated on