Right-sizing EC2 instances helps match resources to workload needs and avoids paying for unused capacity.
Incorrect! Try again.
21A company stores monthly reports that are accessed frequently for 30 days and then rarely accessed, but they must remain immediately available. Which S3 storage class is most appropriate after the first 30 days?
Amazon S3 fundamentals and storage classes
Medium
A.S3 Standard-Infrequent Access
B.S3 One Zone-Infrequent Access
C.S3 Glacier Flexible Retrieval
D.S3 Standard
Correct Answer: S3 Standard-Infrequent Access
Explanation:
S3 Standard-IA is designed for infrequently accessed data that still requires millisecond access and multi-Availability Zone resilience.
Incorrect! Try again.
22A workload has unpredictable object access patterns, and the team wants S3 to optimize storage costs automatically without retrieval fees. Which storage class should be selected?
Amazon S3 fundamentals and storage classes
Medium
A.S3 Standard-Infrequent Access
B.S3 Standard
C.S3 Intelligent-Tiering
D.S3 Glacier Instant Retrieval
Correct Answer: S3 Intelligent-Tiering
Explanation:
S3 Intelligent-Tiering automatically moves objects between access tiers as usage changes and does not charge retrieval fees.
Incorrect! Try again.
23A company stores reproducible image thumbnails that are rarely accessed. Losing the data because an Availability Zone fails is acceptable. Which storage class offers the best fit?
Amazon S3 fundamentals and storage classes
Medium
A.S3 Glacier Deep Archive
B.S3 One Zone-Infrequent Access
C.S3 Standard-Infrequent Access
D.S3 Standard
Correct Answer: S3 One Zone-Infrequent Access
Explanation:
S3 One Zone-IA reduces cost by storing data in one Availability Zone and suits infrequently accessed, reproducible data.
Incorrect! Try again.
24A company must upload a 200 GB file to S3 over an unreliable network. Which approach provides efficient transfer and allows failed parts to be retried independently?
Data transfer, lifecycle policies, and versioning in S3
Medium
A.S3 Select
B.S3 Batch Operations
C.Multipart upload
D.Single PUT request
Correct Answer: Multipart upload
Explanation:
Multipart upload divides a large object into parts that can be uploaded in parallel and retried independently.
Incorrect! Try again.
25An application generates log files that must remain immediately accessible for 90 days and then be retained at the lowest cost for seven years. Which S3 configuration best meets the requirement?
Data transfer, lifecycle policies, and versioning in S3
Medium
A.Transition objects to S3 Glacier Deep Archive after 90 days
B.Replicate objects to another bucket after 90 days
C.Transition objects to S3 One Zone-IA after seven years
D.Enable versioning and retain all versions in S3 Standard
Correct Answer: Transition objects to S3 Glacier Deep Archive after 90 days
Explanation:
A lifecycle transition can move logs to S3 Glacier Deep Archive after 90 days, minimizing long-term archival cost.
Incorrect! Try again.
26Versioning is enabled on an S3 bucket. A user deletes an object without specifying a version ID. What happens?
Data transfer, lifecycle policies, and versioning in S3
Medium
A.All versions are permanently removed
B.The bucket automatically disables versioning
C.The latest version is moved to Glacier
D.A delete marker becomes the current version
Correct Answer: A delete marker becomes the current version
Explanation:
In a versioned bucket, a normal delete adds a delete marker while preserving the existing object versions.
Incorrect! Try again.
27Users in several continents upload large files to one S3 bucket in a fixed AWS Region. Which feature can improve upload performance over long geographic distances?
Data transfer, lifecycle policies, and versioning in S3
Medium
A.S3 Transfer Acceleration
B.S3 Access Points
C.S3 Inventory
D.S3 Object Lock
Correct Answer: S3 Transfer Acceleration
Explanation:
S3 Transfer Acceleration routes transfers through nearby AWS edge locations and the AWS global network.
Incorrect! Try again.
28A team must launch identical EC2 instances containing a preinstalled application and approved operating system patches. Which approach provides the most consistent launches?
Launching EC2 instances and choosing AMIs
Medium
A.Select any public AMI and configure it manually
B.Attach the same existing EBS volume to every instance
C.Store the installation files in an S3 bucket
D.Create a custom AMI from a configured instance
Correct Answer: Create a custom AMI from a configured instance
Explanation:
A custom AMI captures the approved operating system and installed software, enabling repeatable instance launches.
Incorrect! Try again.
29An EC2 instance using an EBS-backed AMI is stopped and started. Which outcome should the administrator expect?
Launching EC2 instances and choosing AMIs
Medium
A.The root EBS volume is preserved
B.The instance moves to another Region
C.The instance receives a new AMI
D.All attached EBS volumes are deleted
Correct Answer: The root EBS volume is preserved
Explanation:
Stopping an EBS-backed instance preserves its root EBS volume, although some host-related properties may change after restart.
Incorrect! Try again.
30A company wants to launch an EC2 instance in a Region different from the Region where its custom AMI was created. What must it do first?
Launching EC2 instances and choosing AMIs
Medium
A.Convert the AMI into an EBS snapshot
B.Move the subnet to the destination Region
C.Register the same AMI ID in both Regions
D.Copy the AMI to the destination Region
Correct Answer: Copy the AMI to the destination Region
Explanation:
AMI IDs and AMIs are regional resources, so the custom AMI must be copied to the destination Region before launch.
Incorrect! Try again.
31A scientific application continuously performs processor-intensive calculations while using little memory. Which EC2 instance family is the best starting choice?
EC2 instance types, user data, and configuration
Medium
A.General purpose
B.Storage optimized
C.Memory optimized
D.Compute optimized
Correct Answer: Compute optimized
Explanation:
Compute-optimized instances provide a high ratio of compute resources and suit sustained processor-intensive workloads.
Incorrect! Try again.
32An in-memory analytics database requires hundreds of gigabytes of RAM and moderate CPU capacity. Which EC2 instance family is most suitable?
EC2 instance types, user data, and configuration
Medium
A.Accelerated computing
B.Compute optimized
C.General purpose
D.Memory optimized
Correct Answer: Memory optimized
Explanation:
Memory-optimized instances are designed for workloads that process large datasets primarily in memory.
Incorrect! Try again.
33A user data script installs a web server when an EC2 instance launches, but the server is not installed after a later stop and start. What is the most likely explanation?
EC2 instance types, user data, and configuration
Medium
A.User data is ignored on EBS-backed instances
B.User data normally runs only during the first boot
C.User data works only with instance store volumes
D.User data requires an Elastic IP address
Correct Answer: User data normally runs only during the first boot
Explanation:
By default, EC2 user data is processed during the initial boot, not every time an instance is restarted.
Incorrect! Try again.
34An application running on EC2 must read objects from S3 without storing long-term access keys on the instance. Which configuration should be used?
EC2 instance types, user data, and configuration
Medium
A.Attach an IAM role to the instance
B.Place access keys in instance tags
C.Store access keys in the user data
D.Add the keys to the custom AMI
Correct Answer: Attach an IAM role to the instance
Explanation:
An EC2 IAM role supplies temporary credentials to the application and avoids embedding long-term keys.
Incorrect! Try again.
35Several Linux EC2 instances in different Availability Zones need concurrent access to the same directory of uploaded files. Which storage service is the best fit?
Storage options such as EBS and EFS for EC2
Medium
A.EC2 instance store
B.Amazon EBS
C.Amazon S3 Glacier
D.Amazon EFS
Correct Answer: Amazon EFS
Explanation:
Amazon EFS provides a shared network file system that multiple Linux instances can mount across Availability Zones.
Incorrect! Try again.
36A transactional database on one EC2 instance requires low-latency block storage with provisioned performance. Which option is most appropriate?
Storage options such as EBS and EFS for EC2
Medium
A.S3 Standard storage class
B.EFS Standard file system
C.S3 Glacier Instant Retrieval
D.Provisioned IOPS EBS volume
Correct Answer: Provisioned IOPS EBS volume
Explanation:
Provisioned IOPS EBS volumes provide durable block storage with predictable high I/O performance for transactional databases.
Incorrect! Try again.
37An EC2 workload uses temporary scratch data that can be recreated, but it requires very high local I/O performance. Which storage option is the best fit?
Storage options such as EBS and EFS for EC2
Medium
A.General Purpose EBS
B.Amazon S3 Standard
C.Amazon EFS
D.EC2 instance store
Correct Answer: EC2 instance store
Explanation:
Instance store offers high-performance local storage but is suitable only for temporary data because it is ephemeral.
Incorrect! Try again.
38A team wants to create a durable point-in-time backup of an EBS volume that can later be used to create another volume. What should it create?
Storage options such as EBS and EFS for EC2
Medium
A.An S3 delete marker
B.An EC2 placement group
C.An EFS access point
D.An EBS snapshot
Correct Answer: An EBS snapshot
Explanation:
An EBS snapshot is an incremental point-in-time backup that can be used to create new EBS volumes.
Incorrect! Try again.
39A production application runs on one EC2 instance in one Availability Zone. Which change most directly improves reliability under the AWS Well-Architected Framework?
Applying the Well-Architected Framework to storage and compute layers
Medium
A.Increase the size of the existing instance
B.Deploy instances across multiple Availability Zones
C.Move application logs to instance store
D.Assign an Elastic IP to the instance
Correct Answer: Deploy instances across multiple Availability Zones
Explanation:
Distributing instances across Availability Zones reduces the risk that one infrastructure failure will stop the application.
Incorrect! Try again.
40An application runs at 20% CPU utilization most of the month but experiences predictable traffic peaks every weekday. Which design best follows cost optimization and performance efficiency principles?
Applying the Well-Architected Framework to storage and compute layers
Medium
A.Replace all instances with Dedicated Hosts
B.Disable monitoring to reduce operational overhead
C.Use Auto Scaling with scheduled and metric-based policies
D.Run maximum-capacity instances continuously
Correct Answer: Use Auto Scaling with scheduled and metric-based policies
Explanation:
Auto Scaling can add capacity for scheduled or measured demand and remove excess capacity when traffic falls.
Incorrect! Try again.
41A data lake stores 2 PB of objects that are accessed unpredictably, but the application requires millisecond access whenever an object is requested. The organization also wants automatic cost optimization without changing object names or application logic. Which S3 storage class is the most appropriate starting point?
Amazon S3 fundamentals and storage classes
Hard
A.S3 Glacier Flexible Retrieval with expedited retrieval
B.S3 One Zone-Infrequent Access with replication enabled
C.S3 Intelligent-Tiering with its default access tiers
D.S3 Standard with manual archival rules
Correct Answer: S3 Intelligent-Tiering with its default access tiers
Explanation:
S3 Intelligent-Tiering is designed for unpredictable access patterns and automatically moves objects among access tiers while maintaining low-latency access for frequently accessed data.
Incorrect! Try again.
42A compliance archive requires objects to remain protected from deletion or overwrite for seven years. Administrators must not be able to shorten this retention period, even if they have broad S3 permissions. Which configuration best satisfies the requirement?
Amazon S3 fundamentals and storage classes
Hard
A.S3 Object Lock in governance mode
B.S3 Versioning with an MFA Delete requirement
C.S3 Glacier Deep Archive with a seven-year lifecycle rule
D.S3 Object Lock in compliance mode
Correct Answer: S3 Object Lock in compliance mode
Explanation:
Object Lock compliance mode prevents protected object versions from being deleted or retention from being shortened by any user, including administrators, until the retention period expires.
Incorrect! Try again.
43An application uses S3 Standard-IA for backup objects that are typically retrieved once every six months. Some objects are deleted after 20 days because they are superseded. Which issue must be addressed before selecting this class?
Amazon S3 fundamentals and storage classes
Hard
A.Standard-IA requires all objects to be encrypted with KMS
B.Standard-IA has a minimum billable storage duration of 30 days
C.Standard-IA supports retrieval only through a batch job
D.Standard-IA cannot store objects larger than 5 GB
Correct Answer: Standard-IA has a minimum billable storage duration of 30 days
Explanation:
S3 Standard-IA has a 30-day minimum billable storage duration. Objects deleted earlier can still incur charges for the remainder of that period.
Incorrect! Try again.
44A company requires a single logical namespace for objects uploaded by applications in multiple AWS Regions. It wants users to access data through one regional endpoint while automatically routing requests to the closest bucket replica. Which S3 feature is intended for this design?
Amazon S3 fundamentals and storage classes
Hard
A.S3 Transfer Acceleration
B.S3 Multi-Region Access Points
C.S3 Access Points
D.S3 Batch Operations
Correct Answer: S3 Multi-Region Access Points
Explanation:
S3 Multi-Region Access Points provide a global endpoint that routes requests across replicated buckets in multiple Regions, subject to the configured replication and routing design.
Incorrect! Try again.
45A media company uploads 100 TB from an on-premises data center over a 1-Gbps link. The transfer must complete within 12 hours, but the link is also needed for business traffic. Which approach most directly reduces network impact while meeting the deadline?
Data transfer, lifecycle policies, and versioning in S3
Hard
A.Use AWS DataSync with bandwidth throttling disabled
B.Use AWS Snowball Edge to transfer the dataset offline
C.Use multipart upload with a larger part size over the link
D.Use S3 Transfer Acceleration through the same constrained link
Correct Answer: Use AWS Snowball Edge to transfer the dataset offline
Explanation:
An offline Snowball Edge transfer avoids sending the full dataset across the constrained WAN link. Multipart upload and acceleration still depend on available network capacity.
Incorrect! Try again.
46An S3 bucket has versioning enabled. A lifecycle rule transitions current objects to Glacier after 30 days and expires noncurrent versions after 90 days. A client deletes an object on day 40. What happens under this rule?
Data transfer, lifecycle policies, and versioning in S3
Hard
A.The object is permanently deleted immediately
B.A delete marker becomes current and the prior version remains
C.The current version transitions and the delete marker expires
D.All versions are deleted when the delete request succeeds
Correct Answer: A delete marker becomes current and the prior version remains
Explanation:
A delete request in a versioned bucket normally creates a delete marker. The previous object version remains as a noncurrent version and is governed by noncurrent-version lifecycle actions.
Incorrect! Try again.
47A lifecycle rule should archive objects seven days after their last modification, but many objects receive metadata updates that change their current version. Which design best ensures archival is based on business inactivity rather than accidental version changes?
Data transfer, lifecycle policies, and versioning in S3
Hard
A.Use the object creation date as the lifecycle transition trigger
B.Disable versioning so metadata updates cannot create versions
C.Use object tags updated by the business workflow as lifecycle filters
D.Transition every current version after seven calendar days
Correct Answer: Use object tags updated by the business workflow as lifecycle filters
Explanation:
Lifecycle rules can use object tags as filters, allowing the application workflow to mark business-inactive objects explicitly instead of relying on timestamps affected by technical updates.
Incorrect! Try again.
48A versioned bucket has millions of noncurrent versions and expired delete markers. The organization wants to reduce storage cost without removing the current versions of active objects. Which lifecycle configuration is most appropriate?
Data transfer, lifecycle policies, and versioning in S3
Hard
A.Transition delete markers to S3 Standard-IA
B.Disable versioning and immediately purge the bucket
C.Permanently delete noncurrent versions after the required retention period
D.Expire current versions after one day
Correct Answer: Permanently delete noncurrent versions after the required retention period
Explanation:
Noncurrent-version expiration removes older retained versions while preserving current versions. Expired delete markers can also be cleaned up with a separate lifecycle action.
Incorrect! Try again.
49A workload uploads objects to S3 from globally distributed clients. Upload latency is high, but the bucket must remain in one Region and the clients already have reliable Internet connectivity. Which service is the best fit for accelerating uploads?
Data transfer, lifecycle policies, and versioning in S3
Hard
A.S3 Transfer Acceleration
B.VPC gateway endpoint for Amazon S3
C.AWS Storage Gateway
D.S3 Glacier Instant Retrieval
Correct Answer: S3 Transfer Acceleration
Explanation:
S3 Transfer Acceleration uses AWS edge locations to improve long-distance transfers into a bucket while keeping the bucket in its original Region.
Incorrect! Try again.
50A company needs to launch EC2 instances with a preinstalled application, hardened operating system settings, and approved monitoring agents. The image must be reused across accounts and Regions. Which approach provides the most repeatable result?
Launching EC2 instances and choosing AMIs
Hard
A.Create and distribute a hardened custom AMI
B.Use the latest public AMI and configure it manually
C.Install packages with user data after every launch
D.Attach an EBS snapshot after the instance starts
Correct Answer: Create and distribute a hardened custom AMI
Explanation:
A hardened custom AMI captures the required operating system and software state and can be copied or shared for consistent launches across accounts and Regions.
Incorrect! Try again.
51An Auto Scaling group launches instances from an AMI whose root EBS volume is encrypted with a customer managed KMS key. Instances fail to launch because the Auto Scaling service cannot use the key. Which remedy is required?
Launching EC2 instances and choosing AMIs
Hard
A.Enable public access on the AMI snapshot
B.Grant the required KMS permissions through the key policy
C.Make the KMS key asymmetric
D.Convert the root volume to instance store
Correct Answer: Grant the required KMS permissions through the key policy
Explanation:
The principals launching or creating encrypted volumes must be allowed to use the customer managed KMS key. IAM permissions alone may be insufficient if the key policy does not delegate access.
Incorrect! Try again.
52A security team requires that every production EC2 launch use an approved AMI and prevents direct launches from unapproved image IDs. Which control most directly enforces this requirement at the account level?
Launching EC2 instances and choosing AMIs
Hard
A.A security group restricting SSH access
B.An S3 bucket policy for AMI metadata
C.An EBS volume policy limiting volume size
D.An IAM policy condition limiting allowed AMI IDs
Correct Answer: An IAM policy condition limiting allowed AMI IDs
Explanation:
IAM policies can restrict the RunInstances action using conditions such as approved image IDs, preventing users or roles from launching unapproved AMIs.
Incorrect! Try again.
53A batch analytics workload runs for several hours, is fault tolerant, and can be interrupted and restarted from checkpoints. Its CPU demand varies substantially throughout the month. Which purchasing and instance strategy is most cost-effective?
EC2 instance types, user data, and configuration
Hard
A.Spot Instances in a diversified Auto Scaling group
B.Reserved Instances on memory-optimized instances
C.On-Demand Instances on burstable instances
D.Dedicated Hosts with fixed capacity reservations
Correct Answer: Spot Instances in a diversified Auto Scaling group
Explanation:
Spot Instances suit interruptible workloads. Diversifying instance types and Availability Zones reduces interruption exposure, while checkpoints support recovery.
Incorrect! Try again.
54An application performs sustained vectorizable numerical computations and is CPU-bound after testing. Memory utilization remains below 35%, and network throughput is adequate. Which instance family should be evaluated first?
EC2 instance types, user data, and configuration
Hard
A.Storage-optimized instances
B.General-purpose instances
C.Compute-optimized instances
D.Memory-optimized instances
Correct Answer: Compute-optimized instances
Explanation:
Compute-optimized instances are intended for workloads requiring sustained high CPU performance, especially when memory capacity is not the limiting resource.
Incorrect! Try again.
55A Linux EC2 instance uses user data to install an agent. The agent is installed during the first boot, but a later stop and start does not rerun the installation. Which explanation is correct?
EC2 instance types, user data, and configuration
Hard
A.User data runs only after an Elastic IP is attached
B.User data runs only during the initial launch by default
C.User data is ignored when the root volume is persistent
D.User data runs only when the AMI is created
Correct Answer: User data runs only during the initial launch by default
Explanation:
EC2 user data scripts normally execute during the first boot. Repeated execution requires explicit cloud-init configuration or an instance lifecycle mechanism.
Incorrect! Try again.
56An application launched with user data intermittently starts before its database dependency is reachable. The script exits successfully but the application is unhealthy. Which improvement is most appropriate?
EC2 instance types, user data, and configuration
Hard
A.Add retry logic and dependency health checks
B.Disable automatic instance recovery
C.Increase the AMI file size
D.Replace user data with a security group
Correct Answer: Add retry logic and dependency health checks
Explanation:
User data should be idempotent and resilient to startup ordering. Retry logic with health checks prevents transient dependency failures from producing a permanently misconfigured instance.
Incorrect! Try again.
57A fleet of Linux EC2 instances in multiple Availability Zones requires concurrent read-write access to the same POSIX file hierarchy. The workload has unpredictable throughput and must remain available if one Availability Zone fails. Which storage option is best suited?
Storage options such as EBS and EFS for EC2
Hard
A.An EFS Regional file system using standard storage
B.One gp3 EBS volume attached to every instance
C.One io2 Block Express volume shared across Regions
D.Instance store volumes on each instance
Correct Answer: An EFS Regional file system using standard storage
Explanation:
EFS provides managed POSIX file storage that can be mounted concurrently by instances across Availability Zones. A Regional file system is designed for multi-AZ availability.
Incorrect! Try again.
58A relational database requires low-latency block storage with predictable IOPS. The workload is write-intensive, and the team wants to provision IOPS independently from capacity. Which EBS option is most appropriate?
Storage options such as EBS and EFS for EC2
Hard
A.Instance store with an EFS backup mount
B.st1 with burst throughput
C.gp3 with independently provisioned IOPS
D.sc1 with the lowest baseline cost
Correct Answer: gp3 with independently provisioned IOPS
Explanation:
gp3 allows capacity, throughput, and IOPS to be provisioned separately and provides predictable SSD-backed performance for many database workloads.
Incorrect! Try again.
59A stateless web tier needs temporary scratch space for cached thumbnails. Data can be regenerated after an instance replacement, and the workload benefits from very high local I/O with no persistence requirement. Which storage is most suitable?
Storage options such as EBS and EFS for EC2
Hard
A.A gp3 volume with daily snapshots
B.EFS Infrequent Access
C.A Multi-Attach io2 volume
D.Instance store volumes
Correct Answer: Instance store volumes
Explanation:
Instance store provides high-performance temporary local storage. Because the thumbnails are regenerable, loss of the data during instance termination is acceptable.
Incorrect! Try again.
60A team stores every object permanently in S3 Standard and runs oversized EC2 instances to handle occasional monthly peaks. Which Well-Architected improvement most directly addresses cost optimization while preserving workload requirements?
Applying the Well-Architected Framework to storage and compute layers
Hard
A.Disable encryption on infrequently used objects
B.Move all objects to S3 One Zone-IA
C.Replace Auto Scaling with fixed large instances
D.Use lifecycle transitions and rightsize compute capacity
Correct Answer: Use lifecycle transitions and rightsize compute capacity
Explanation:
Lifecycle policies align storage cost with access patterns, while right-sizing and scaling compute capacity align spending with actual demand without weakening required durability or availability.
Incorrect! Try again.
Did this save you a night before the exam?
LPU Notes is free, and it stays free. Ads cover part of the server bill.
The rest comes out of a student's own pocket: the domain, the storage,
and keeping the site up through the weeks everyone needs it at once.
The payment button didn't load. An ad blocker or a filtered network is the usual reason.
to try again.
Nothing here is ever locked, and nothing unlocks. Chip in only if it was worth it.
What it pays for →