main for studying currently

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/201

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 7:55 AM on 9/24/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

202 Terms

1
New cards

What is the main financial benefit of replacing CapEx with OpEx in the cloud?

You pay for resources as you use them instead of buying infrastructure upfront.

2
New cards

Which cloud advantage avoids predicting infrastructure demand in advance?

Elasticity: scale capacity up or down as demand changes.

3
New cards

What is a hybrid cloud deployment?

A deployment that connects cloud resources with on-premises infrastructure.

4
New cards

Which Well-Architected pillar focuses on runbooks, automation, and monitoring?

Operational Excellence.

5
New cards

Which Well-Architected pillar focuses on least privilege and encryption?

Security.

6
New cards

Which Well-Architected pillar focuses on recovery and reducing downtime?

Reliability.

7
New cards

Which Well-Architected pillar focuses on efficient resource use?

Performance Efficiency.

8
New cards

Which Well-Architected pillar focuses on avoiding unnecessary spending?

Cost Optimization.

9
New cards

Which Well-Architected pillar focuses on reducing environmental impact?

Sustainability.

10
New cards

What does it mean to decouple application components?

Let components communicate without depending directly on each other's availability, often through SQS or events.

11
New cards

What is an AWS Region?

A geographic area containing multiple isolated Availability Zones.

12
New cards

What is an Availability Zone?

One or more distinct data centers within a Region, with independent infrastructure.

13
New cards

Why deploy an application across multiple Availability Zones?

To improve availability if one AZ fails.

14
New cards

What is an edge location used for?

Caching and delivering content closer to users, especially with CloudFront.

15
New cards

When would you use AWS Local Zones?

When applications need compute and storage near users in a particular metropolitan area.

16
New cards

When would you use AWS Wavelength?

For low-latency applications inside a telecom provider's 5G network.

17
New cards

What is AWS Outposts?

AWS-managed infrastructure installed on premises to run supported AWS services locally.

18
New cards

What are four factors for selecting an AWS Region?

Compliance or data residency, proximity to users, service availability, and pricing.

19
New cards

In the shared responsibility model, what does AWS secure?

Security of the cloud: physical facilities, hardware, and underlying infrastructure.

20
New cards

In the shared responsibility model, what does the customer secure?

Security in the cloud: data, identities, application configuration, and responsibilities specific to the service.

21
New cards

Who patches the guest operating system on an EC2 instance?

The customer.

22
New cards

Who patches the underlying physical host of EC2?

AWS.

23
New cards

Who manages IAM access and permissions?

The customer.

24
New cards

How does customer responsibility generally change from EC2 to managed services?

The customer manages fewer infrastructure components, but still controls data, identities, and relevant configurations.

25
New cards

What is the principle of least privilege?

Grant only the permissions needed to perform a task.

26
New cards

What is an IAM user?

A long-term identity in an AWS account for a person or application.

27
New cards

What is an IAM group?

A collection of IAM users to which permissions can be assigned together.

28
New cards

What is an IAM role?

An assumable identity that supplies temporary credentials to people or workloads.

29
New cards

What is an IAM policy?

A JSON document defining allowed or denied actions on resources.

30
New cards

How should an EC2 instance obtain permissions to access S3?

Attach an IAM role to the instance instead of storing long-term access keys.

31
New cards

What should you do to secure the root user?

Enable MFA, protect its credentials, and reserve it for tasks that require root access.

32
New cards

What is IAM Identity Center used for?

Centralized workforce access to multiple AWS accounts and applications.

33
New cards

What is the difference between Cognito User Pools and Identity Pools?

User Pools authenticate app users; Identity Pools grant temporary AWS credentials to authenticated identities.

34
New cards

What does AWS KMS manage?

Encryption keys used by AWS services and applications.

35
New cards

When would you use AWS CloudHSM?

When compliance or control requirements call for dedicated hardware security modules and direct key control.

36
New cards

What does AWS Certificate Manager provide?

Provisioning and management of TLS certificates for supported AWS integrations.

37
New cards

Which service stores and automatically rotates secrets?

AWS Secrets Manager.

38
New cards

Which service stores application configuration values and can store SecureString secrets?

AWS Systems Manager Parameter Store.

39
New cards

Which service detects suspicious activity such as compromised credentials and unusual API calls?

Amazon GuardDuty.

40
New cards

Which service continuously scans EC2, Lambda, and container images for vulnerabilities?

Amazon Inspector.

41
New cards

Which service discovers sensitive data such as personal information in S3?

Amazon Macie.

42
New cards

Which service helps investigate security findings using related events and activity?

Amazon Detective.

43
New cards

Which service filters HTTP requests for SQL injection, XSS, and abusive traffic?

AWS WAF.

44
New cards

Which service provides DDoS protection?

AWS Shield.

45
New cards

Which service centrally manages security rules across AWS accounts?

AWS Firewall Manager.

46
New cards

Which service aggregates security findings and compliance checks?

AWS Security Hub.

47
New cards

Where can you download AWS compliance reports and agreements?

AWS Artifact.

48
New cards

Which service collects evidence for audits?

AWS Audit Manager.

49
New cards

What is AWS Organizations used for?

Managing multiple accounts with consolidated billing, organizational units, and service control policies.

50
New cards

What does a service control policy (SCP) do?

Sets the maximum permissions available to accounts within an AWS Organization; it does not grant permissions by itself.

51
New cards

What does AWS Control Tower help set up?

A governed multi-account landing zone with guardrails.

52
New cards

Which tool finds resources shared with external entities?

IAM Access Analyzer.

53
New cards

What is Amazon EC2?

Resizable virtual servers with control over the guest operating system.

54
New cards

What is AWS Lambda?

Event-driven code execution without managing servers; each invocation has a maximum duration of 15 minutes.

55
New cards

What is AWS Fargate?

Serverless compute for running containers with ECS or EKS without managing EC2 hosts.

56
New cards

What is AWS Elastic Beanstalk?

A service that deploys applications and handles provisioning, scaling, and health monitoring.

57
New cards

Which service is suited to a simple virtual private server or WordPress site?

Amazon Lightsail.

58
New cards

Which service runs large numbers of batch jobs?

AWS Batch.

59
New cards

Which EC2 instance family fits balanced workloads?

General purpose instances, such as M or T families.

60
New cards

Which EC2 instance family fits CPU-intensive tasks?

Compute optimized C family.

61
New cards

Which EC2 instance family fits large in-memory databases?

Memory optimized families such as R.

62
New cards

Which EC2 instance family fits high disk throughput or I/O?

Storage optimized families.

63
New cards

Which EC2 instance family fits GPU-based machine learning or graphics?

Accelerated computing instances.

64
New cards

What does EC2 Auto Scaling change?

The number of EC2 instances based on demand or a schedule.

65
New cards

What is the difference between ECS and EKS?

ECS is AWS-native container orchestration; EKS provides managed Kubernetes.

66
New cards

What is Amazon ECR?

A managed repository for container images.

67
New cards

What is Amazon S3?

Scalable object storage organized into buckets and objects.

68
New cards

Which S3 class is best for frequently accessed objects?

S3 Standard.

69
New cards

Which S3 class adapts to unknown or changing access patterns?

S3 Intelligent-Tiering.

70
New cards

Which S3 class is for infrequently accessed objects requiring immediate retrieval across multiple AZs?

S3 Standard-IA.

71
New cards

Which S3 class is for recreatable infrequently accessed objects stored in one AZ?

S3 One Zone-IA.

72
New cards

Which S3 archival class offers millisecond retrieval?

S3 Glacier Instant Retrieval.

73
New cards

Which S3 archival class supports minutes-to-hours retrieval?

S3 Glacier Flexible Retrieval.

74
New cards

Which S3 class fits the lowest-cost long-term archive with the slowest retrieval?

S3 Glacier Deep Archive.

75
New cards

What does S3 versioning protect against?

Accidental overwrite or deletion by retaining previous object versions.

76
New cards

What does an S3 lifecycle policy do?

Automatically transitions or expires objects according to rules.

77
New cards

What is an S3 presigned URL?

A time-limited link granting access to a private object.

78
New cards

What is Amazon EBS?

Persistent block storage typically attached to an EC2 instance.

79
New cards

What happens to instance store data when its instance stops or terminates?

It is lost; instance store is ephemeral.

80
New cards

What is Amazon EFS?

A managed shared NFS file system that can be mounted by multiple Linux instances.

81
New cards

Which service offers a managed Windows file system using SMB?

Amazon FSx for Windows File Server.

82
New cards

Which service connects on-premises file, volume, or tape workloads to AWS storage?

AWS Storage Gateway.

83
New cards

Which service centrally manages backups across supported AWS services?

AWS Backup.

84
New cards

What is Amazon RDS?

A managed relational database service supporting engines such as PostgreSQL and MySQL.

85
New cards

What is Amazon Aurora?

An AWS-built relational database compatible with MySQL or PostgreSQL.

86
New cards

What is Amazon DynamoDB?

A managed NoSQL key-value and document database.

87
New cards

Which managed database supports MongoDB-compatible document workloads?

Amazon DocumentDB.

88
New cards

Which managed database is designed for highly connected graph data?

Amazon Neptune.

89
New cards

Which service adds in-memory caching for applications?

Amazon ElastiCache.

90
New cards

Which service is an AWS data warehouse for analytics?

Amazon Redshift.

91
New cards

What problem does an RDS Multi-AZ deployment solve?

High availability through automatic failover to a standby in another AZ.

92
New cards

What problem do RDS read replicas solve?

Scaling read traffic using asynchronous replicas.

93
New cards

What is an Amazon VPC?

A logically isolated virtual network in AWS.

94
New cards

What makes a subnet public?

Its route table has a route to an internet gateway.

95
New cards

What does an internet gateway enable?

Internet connectivity for resources in a VPC that have suitable routing and addresses.

96
New cards

Why use a NAT gateway?

Allow private-subnet resources to initiate outbound internet connections without permitting unsolicited inbound internet traffic.

97
New cards

What is the difference between a security group and a network ACL?

Security groups are stateful and use allow rules at the resource interface; NACLs are stateless and support allow and deny rules at the subnet.

98
New cards

What is a VPC endpoint?

A private way to reach supported AWS services without traversing the public internet.

99
New cards

What is a limitation of VPC peering?

It is not transitive.

100
New cards

Which service connects many VPCs and on-premises networks through a hub?

AWS Transit Gateway.