表示モード
画像位置
文字位置
理解度の自動記録
Q1AWS Certified Solutions Architect Associate
Q1. A financial company is migrating banking applications to AWS accounts that are managed under AWS Organizations.
These applications store highly sensitive customer data on Amazon EBS volumes, and the company regularly takes snapshots as backups.
The company must implement a control across all accounts to prevent EBS snapshots from being shared publicly, with minimal operational overhead.
Which solution meets these requirements?
Show answer
Correct answer: B
The correct answer is B.AWS Organizations supports a Block Public Access feature for EBS snapshots, which, when enabled at the organization level, prevents snapshots in all member accounts from being shared publicly in a single step.
This is a centrally applied, organization-wide control that requires no per-account configuration or monitoring rules, so operational overhead is minimized.
To reliably “prevent” public sharing, you must choose a blocking feature rather than after-the-fact detection.
AWS Config (A) only detects issues after they occur, and an IAM policy (C) is insufficient because there are multiple paths that can bypass it.
CloudTrail (D) only records activity and does not prevent sharing itself.
Block public access for Amazon EBS snapshots – AWS Documentation
Q2AWS Certified Solutions Architect Associate
Q2. A company runs a sensitive application on Amazon EC2 backed by an Amazon RDS database.
Compliance regulations require that all personally identifiable information (PII) be encrypted at rest.
Which solution should a solutions architect recommend to meet this requirement with minimal changes to the infrastructure?
Show answer
Correct answer: A
The correct answer is A.To achieve encryption at rest with minimal changes, the best approach is to enable the native encryption features of Amazon EBS and Amazon RDS combined with an AWS KMS key.
Native EBS and RDS encryption can encrypt data at rest without changing the application code or architecture.
This protects PII on both the instance storage and the database volumes.
CloudHSM (B) requires managing dedicated hardware and increases operational overhead.
SSL (C) is encryption in transit and does not meet the encryption-at-rest requirement.
An ACM certificate (D) is not suitable for volume encryption.
Amazon EBS encryption – AWS Documentation
Q3AWS Certified Solutions Architect Associate
Q3. A solutions architect is designing a multi-Region disaster recovery (DR) strategy for a company.
The company runs its application on Amazon EC2 instances in an Auto Scaling group behind an Application Load Balancer (ALB).
The company hosts this application in a primary and a secondary AWS Region.
If the primary Region fails, the application must respond to DNS queries from the secondary Region.
Only one Region must serve traffic at a time.
Which solution meets these requirements?
Show answer
Correct answer: B
The correct answer is B.For a requirement to fail over to the secondary Region only when the primary Region fails, with exactly one Region serving traffic at all times, the best fit is the combination of an Amazon Route 53 failover routing policy and health checks.
Failover routing responds only from the primary while its health check is healthy, and automatically switches to the secondary when it detects a failure.
This achieves an active-passive configuration.
A Resolver outbound endpoint (A) is used for forwarding DNS to on-premises networks.
Geolocation (C) distributes traffic based on the source region and is not suited for failover during an outage.
A Route 53 profile (D) is a feature for sharing DNS settings across VPCs and serves a different purpose.
Failover routing – Amazon Route 53
Q4AWS Certified Solutions Architect Associate
Q4. A company is deploying a critical application on Amazon RDS for MySQL.
The application must be highly available and able to recover automatically.
The company must support interactive users (transactional queries) and batch reporting (analytical queries) with a latency of no more than 4 hours.
Analytical queries must not affect the performance of transactional queries.
Show answer
Correct answer: D
The correct answer is D.For requirements that combine high availability and automatic recovery with isolating analytical queries from transactional processing while reading with up to 4 hours of latency, a Multi-AZ DB cluster deployment is optimal.
A Multi-AZ DB cluster has two readable standbys and automatically fails over if the primary fails.
Using the reader endpoint, analytical queries can be directed to the readable standbys without affecting the transactional performance of the primary.
The standby in a Multi-AZ DB instance (A) cannot be used for reads, so analytical queries cannot be directed to it.
Read replicas (C) can isolate reads, but because they are asynchronous they cannot on their own guarantee high availability and automatic recovery through automatic failover.
Recreating a database nightly from a snapshot (B) is operationally cumbersome and introduces greater latency.
Using Multi-AZ DB clusters – Amazon RDS
Q5AWS Certified Solutions Architect Associate
Q5. A company must store sensitive medical results in an Amazon S3 bucket.
The repository must allow only a small number of approved users to add new files.
The repository must restrict all other users to read-only access using a Write Once Read Many (WORM) model.
The company must retain all files in the repository for at least 1 year from their creation date.
Which solution meets these requirements with the least implementation effort?
Show answer
Correct answer: B
The correct answer is B.For the requirement of WORM (Write Once Read Many) and a minimum 1-year retention, Amazon S3 Object Lock in compliance mode is the best fit.
In compliance mode, no one—including the root user or administrators—can delete or overwrite an object during the retention period.
This guarantees the immutability required for regulated data such as medical records.
Controlling uploads by approved users can be achieved with an IAM policy.
MFA delete (A) only helps prevent accidental deletion and does not guarantee the overwrite protection of WORM.
IAM or bucket policies (C) can be changed by administrators and cannot ensure immutability.
Hash tracking with Lambda (D) only detects changes after the fact rather than preventing them, and it is complex to implement.
Using S3 Object Lock – Amazon S3
Q6AWS Certified Solutions Architect Associate
Q6. An online gaming company hosts its platform on Amazon EC2 instances behind Network Load Balancers (NLBs) across multiple AWS Regions.
These NLBs can route requests to targets over the internet.
The company wants to improve the player experience for its global customer base by reducing end-to-end load times.
Which solution meets these requirements?
Show answer
Correct answer: D
The correct answer is D.To reduce end-to-end latency for global users, AWS Global Accelerator is the best fit.
Global Accelerator routes traffic from the nearest AWS edge location over the AWS global network, reducing hops and latency compared with the public internet.
You only need to configure the existing NLBs as endpoints, so configuration changes are minimal.
Replacing with ALBs (A) adds Layer 7 features but does not solve the latency problem.
Equal-weighted Route 53 (B) only distributes traffic and does not optimize network performance.
Adding Regions (C) may improve latency but involves significant effort and cost to build out infrastructure.
What is AWS Global Accelerator – AWS Documentation
Q7AWS Certified Solutions Architect Associate
Q7. A company plans to deploy a business-critical application in the AWS Cloud.
The application requires durable storage with consistent, low-latency performance.
Which type of storage should a solutions architect recommend to meet these requirements?
Show answer
Correct answer: C
The correct answer is C.Provisioned IOPS SSD (io1/io2) volumes deliver predictable, consistent, low-latency high performance, making them ideal for I/O-intensive critical workloads such as databases.
EBS volumes are highly durable and retain data even when the instance is stopped, so they are well suited for business-critical uses.
Instance store (A) is temporary storage whose data is lost when the instance stops, so it does not meet the durability requirement.
ElastiCache (B) is for caching and is not persistent storage.
Throughput Optimized HDD (D) is for large sequential workloads and is not suited for low-latency random I/O.
Amazon EBS volume types – AWS Documentation
Q8AWS Certified Solutions Architect Associate
Q8. A company needs a solution to ingest streaming sensor data from 100,000 devices, transform the data in near real time, and load it into Amazon S3 for analysis.
The solution must be fully managed, scalable, and maintain sub-second ingestion latency.
Show answer
Correct answer: A
The correct answer is A.Kinesis Data Streams ingests large streams with sub-second latency, Managed Service for Apache Flink transforms them in near real time, and Data Firehose reliably delivers them to S3.
These are all serverless, fully managed services that scale automatically even at a scale of 100,000 devices.
SQS + Lambda (B) is not optimized for large-scale real-time streaming.
EC2 + Kafka + EMR (C) has high operational overhead and cost.
EventBridge + AWS Batch (D) is geared toward event-driven, batch processing and is not suited for sub-second streaming.
What is Amazon Kinesis Data Streams – AWS Documentation
Q9AWS Certified Solutions Architect Associate
Q9. A media company hosts a web application on AWS for uploading videos.
Only authenticated users must be able to upload within a specified time window after authentication.
Which solution meets these requirements with the least operational overhead?
Show answer
Correct answer: B
The correct answer is B.A pre-signed URL can grant temporary, authenticated upload access to S3 with a specified expiration, directly implementing the post-authentication time-window restriction.
Generating the URL with Lambda is lightweight and easy to implement, so it has the least operational overhead.
Temporary IAM credentials (A) require managing credentials and add complexity.
A custom authentication service integrated with Cognito (C) requires unnecessary development effort.
Assuming a role with STS (D) adds the management of STS and roles compared with a pre-signed URL, making it more complex.
Uploading objects using pre-signed URLs – Amazon S3
Q10AWS Certified Solutions Architect Associate
Q10. A company runs a production application on a fleet of Amazon EC2 instances.
The application reads messages from an Amazon Simple Queue Service (Amazon SQS) queue and processes them in parallel.
The message volume is unpredictable and highly variable.
The company must ensure that the application can process messages continuously without downtime.
Which solution meets these requirements most cost-effectively?
Show answer
Correct answer: C
The correct answer is C.AWS best practice is to cover a stable baseline with Reserved Instances or Savings Plans and to supplement variable bursts with cheaper Spot Instances.
Spot Instances are up to 90% cheaper, and even if they are interrupted, messages remain in SQS and can be reprocessed on another instance, making them suitable for fault-tolerant workloads such as queue processing.
Spot only (A) risks capacity shortages, and Reserved only (B) wastes cost during low load.
D scales based on backlog, but it assumes on-demand for bursts and is more expensive than Spot.
Option C, which continuously processes the baseline with RIs while inexpensively augmenting with Spot, is optimal.
Instance purchasing options – Amazon EC2
