Amazon AWS Certified Solutions Architect - Associate (SAA-C03)
Get full access to the updated question bank and pass on your first attempt.
Vendor
Amazon
Certification
Associate Certifications
Content
470 Qs
Status
Verified
Updated
1 hour ago
Test the Practice Engine
Experience our real exam environment with free demo questions
Premium Bundle
Complete Success Suite
Save $44 Instantly
-
โFull PDF + Interactive Engine Everything you need to pass
-
โAll Advanced Question Types Drag & Drop, Hotspots, Case Studies
-
โPriority 24/7 Expert Support Direct line to certification leads
-
โ90 Days Free Priority Updates Stay current as exams change
Success Metric
98.4% Pass Rate
Standard Simulation
Practice Engine
One-Time Payment
-
Web-Based (Zero Install)
-
Real Testing Environment Virtual & Practice Modes
-
Interactive Engine Drag & Drop, Hotspots
-
60 Days Free Updates
Compatible with All Devices
Basic Tier
PDF Study Guide
Digital Access
- โ Exam Questions (PDF)
- โ Mobile Friendly
- โ 60 Days Updates
Verified 94-Question Preview (SAA-C03)
Verified Community
The CertoMetrics Standard.
Recommend the #1 platform for verified Amazon certification resources.
Success Network
Help a Colleague Succeed.
Invite a peer to get their own updated SAA-C03 prep kit.
Exam Overview
The AWS Certified Solutions Architect - Associate (SAA-C03) certification is a highly respected credential that validates an individual's ability to design secure, cost-effective, high-performing, and resilient architectures on the Amazon Web Services platform. Achieving this certification demonstrates a deep understanding of core AWS services, best practices, and the AWS Well-Architected Framework. It signifies proficiency in translating business requirements into technical specifications and implementing scalable cloud solutions. This certification is a critical stepping stone for cloud professionals, enhancing career opportunities, boosting earning potential, and solidifying one's expertise in a rapidly evolving cloud landscape, making you a valuable asset to any organization leveraging AWS.
Questions
65
Passing Score
720/1000
Duration
130 Minutes
Difficulty
Intermediate
Level
Associate
Skills Measured
Career Path
Target Roles
Common Questions
Is the material up to date?
Yes. We update our question bank weekly to match the latest Amazon standards. You get free updates for 90 days.
What format do I get?
You get instant access to both the **PDF** (for reading) and our **Premium Test Engine** (for exam simulation).
Is there a guarantee?
Absolutely. If you fail the SAA-C03 exam using our materials, we offer a full money-back guarantee.
When do I get the download?
Instantly. The download link is available in your dashboard immediately after payment is confirmed.
Free Study Guide Samples
Previewing updated SAA-C03 bank (94 Questions).
A healthcare company is running an Amazon EMR cluster on Amazon EC2 instances to process data that is stored in Amazon S3. The company must ensure that the data processing jobs have access only to the relevant data in Amazon S3. Each job must have specific EMR runtime roles.
Which combination of steps will meet these requirements? (Select THREE.)
Correct Option: A,C,D
To ensure EMR data processing jobs have access only to relevant data in Amazon S3 by using specific EMR runtime roles, three key steps are required:
โ
A: Set up security configurations in Amazon EMR, and set EnableApplicationScopedlAMRole to true. This setting in an EMR security configuration is a prerequisite for enabling and utilizing EMR runtime roles. It allows applications running on the cluster to assume specific IAM roles.
โ
C: Set up an EC2 instance profile for the Amazon EMR cluster to assume the runtime roles. This involves configuring the permissions policy of the EMR EC2 instance profile role (e.g., EMR_EC2_DefaultRole) to grant sts:AssumeRole permissions on the specific EMR runtime roles. This is crucial because the EC2 instances, operating under this instance profile, are the entities that will attempt to assume the runtime roles.
โ
D: For each IAM role that serves as an EMR runtime role, set up a trust policy with the EC2 instance profile role. The trust policy of each EMR runtime role must explicitly permit the EMR EC2 instance profile role (which the cluster instances use) to assume it. This establishes the necessary trust relationship for the assumption to occur successfully.
โ Why the other choices are incorrect:
- B: Set up runtime roles to assume the EC2 instance profile of the Amazon EMR cluster. This is incorrect. The EC2 instance profile role assumes the runtime roles, not the other way around.
- E: Establish a trust policy between the EMR runtime roles and the EMR service role of the cluster. This is incorrect. The trust policy for runtime roles is established with the EMR EC2 instance profile role, not the EMR service role. The EMR service role is used by the EMR service itself for cluster management, not for job-specific data access.
- F: Set up security configurations in Amazon EMR, and set EnablelnTransitEncryption to true. This is incorrect. Enabling in-transit encryption secures data moving within the EMR cluster, but it does not control job-specific access to S3 data through IAM roles.
Reference: https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-runtime-roles.html
A solutions architect is investigating compute options for a critical analytics application. The application uses long-running processes to prepare and aggregate data. The processes cannot be interrupted. The application has a known baseline load. The application needs to handle occasional usage surges.
Which solution will meet these requirements MOST cost-effectively?
Correct Option: A
Why A is the MOST cost-effective and correct:
Long-running, non-interruptible processes โ rules out Spot Instances (so C is out).
Known baseline load โ best covered by Reserved Instances for steady, always-on capacity.
Occasional surges โ Auto Scaling can add On-Demand Instances temporarily above the reserved baseline.
No need to re-architect to Lambda (D) for an analytics app with long-running jobs.
A company is developing a microservices-based application to manage the company's delivery operations, The application consists of microservices that process orders, manage a fleet of delivery vehicles, and optimize delivery routes.
The microservices must be able to scale independently and must be able to handle bursts of traffic without any data loss.
Which solution will meet these requirements with the LEAST operational overhead?
Correct Option: B
Amazon SQS is a fully managed message queuing service that decouples microservices, buffers requests during traffic bursts, and guarantees message delivery, preventing data loss. This directly addresses the need to handle bursts without data loss and allows services to scale independently.
Amazon ECS containers on AWS Fargate provides a serverless compute engine for containers. With Fargate, you don't need to provision, scale, or manage EC2 instances, significantly reducing operational overhead. It allows microservices to scale independently based on demand.
Combining SQS for communication and Fargate for deployment offers the optimal balance of scalability, data integrity, and minimal operational overhead.
Reference: https://aws.amazon.com/sqs/features/ | https://aws.amazon.com/fargate/
A company runs a container application on a Kubernetes cluster in the company's data center. The application uses Advanced Message Queuing Protocol (AMQP) to communicate with a message queue. The data center cannot scale fast enough to meet the company's expanding business needs. The company wants to migrate the workloads to AWS.
Which solution will meet these requirements with the LEAST operational overhead?
Correct Option: B
The company runs a container application on Kubernetes using AMQP. The goal is to migrate to AWS with the LEAST operational overhead.
- Amazon EKS is a fully managed Kubernetes service. Migrating from an on-premises Kubernetes cluster to Amazon EKS allows the company to continue using Kubernetes for container orchestration, minimizing changes to the application's deployment and operational model. EKS handles the Kubernetes control plane, significantly reducing operational overhead compared to self-managing Kubernetes.
- Amazon MQ is a managed message broker service that supports industry-standard APIs and protocols, including AMQP (both 0-9-1 and 1.0). This allows the application to continue using its existing AMQP messaging protocol without requiring code changes or re-architecture for the message queue component.
This combination (EKS for compute, MQ for messaging) offers a direct lift-and-shift approach for both the application and its messaging dependency, resulting in the least operational overhead.
Reference: https://aws.amazon.com/eks/; https://aws.amazon.com/amazon-mq/
A company hosts an application on AWS. The application has generated approximately 2.5 TB of data over the previous 12 years. The company currently stores the data on Amazon EBS volumes.
The company wants a cost-effective backup solution for long-term storage. The company must be able to retrieve the data within minutes when required for audits.
Which solution will meet these requirements?
Correct Option: C
โ
Create an Amazon S3 bucket. Use the S3 Glacier Flexible Retrieval storage class to back up the data.
Description: Amazon S3 Glacier Flexible Retrieval (formerly S3 Glacier) is an Amazon S3 storage class designed for highly secure, durable, and extremely low-cost storage for data archiving. It provides retrieval options ranging from a few minutes (Expedited) to several hours (Standard), making it suitable for data that is infrequently accessed but still requires occasional retrieval.
Why this fits: This option directly addresses the need for backing up large amounts of data with long-term retention requirements at a very low cost. S3 Glacier Flexible Retrieval is purpose-built for archival data, offering significant cost savings compared to other storage classes like Standard or Infrequent Access, while providing more flexible and faster retrieval options than S3 Glacier Deep Archive. It strikes a good balance for typical long-term archival scenarios where data isn't needed immediately but might be requested periodically.
A company wants to deploy its containerized application workloads to a VPC across three Availability Zones. The company needs a solution that is highly available across Availability Zones. The solution must require minimal changes to the application. Which solution will meet these requirements with the LEAST operational overhead?
Correct Option: A
โ
Reasoning: Amazon ECS is a fully managed container orchestration service, inherently providing low operational overhead. Service Auto Scaling ensures high availability and scalability. Setting the minimum capacity to 3 and using a "spread with Availability Zone attribute" placement strategy guarantees tasks are distributed across three AZs for fault tolerance. Minimal application changes are needed as it runs existing containers. โ Why the other choices are incorrect:
- Option B is incorrect: Using Amazon EKS with self-managed nodes introduces significant operational overhead for managing the underlying EC2 instances (patching, scaling) compared to a fully managed service like ECS.
- Option C is incorrect: This option describes deploying directly on EC2 instances without a container orchestration service. This drastically increases the operational overhead for managing container deployment, scaling, and high availability. Reserved Instances are for cost savings, not deployment strategy.
- Option D is incorrect: AWS Lambda is for serverless functions, not general "containerized application workloads" without significant refactoring. This violates the "minimal changes to the application" requirement.
A company operates a data lake in Amazon S3 that stores large datasets in multiple formats. The company has an application that retrieves and processes subsets of data from multiple objects in the data lake based on filtering criteria. For each data query, the application currently downloads the entire S3 object and performs transformations. The current process requires a large amount of transformation time.
The company wants a solution that will give the application the ability to query and filter directly on S3 objects without downloading the objects.
Which solution will meet these requirements?
Correct Option: A
โ
Use Amazon Athena to query and filter the objects in Amazon S3.
Description: Amazon Athena is an interactive query service that makes it easy to analyze data directly in Amazon S3 using standard SQL. It is serverless, so there is no infrastructure to manage, and you pay only for the queries you run. Athena can query a wide variety of data formats, including CSV, JSON, ORC, Parquet, and Avro.
Why this fits: Athena is purpose-built for querying and filtering data residing directly in Amazon S3. It allows users to run ad-hoc SQL queries on petabytes of data without needing to load or transform the data beforehand. This makes it an ideal, cost-effective, and serverless solution for data analysis, log analysis, and reporting on S3 data lakes when the goal is to interactively query and filter objects.
A company is building a critical web application on AWS. The company needs to design architecture components that provide low-latency, global access to static content. The company must also provide highly durable and highly available storage for static content and user uploads.
Which solution will meet these requirements?
Correct Option: A
โ
Reasoning: Amazon CloudFront provides low-latency global access using its edge network. Amazon S3 is highly durable (11 9s) and highly available, making it ideal for both static content origin and user uploads. This combination directly addresses all specified requirements efficiently. โ Why the other choices are incorrect:
- Option B is incorrect: Instance store volumes are ephemeral and not highly durable or available. An ALB/EC2 setup does not provide global low-latency access like CloudFront.
- Option C is incorrect: An Amazon FSx for NetApp ONTAP Single-AZ file system is not highly available as it is confined to a single Availability Zone.
- Option D is incorrect: Instance store volumes are ephemeral and not highly durable or available. An ALB/EC2 setup does not provide global low-latency access like CloudFront.
A company hosts a website on Amazon EC2 instances behind an Application Load Balancer (ALB). The website serves static content. Website traffic is increasing. The company wants to minimize the website hosting costs.
Which solution will meet these requirements?
Correct Option: A
โ
Choice A: Move the website to an Amazon S3 bucket. Configure an Amazon CloudFront distribution for the S3 bucket.
Description: Amazon S3 (Simple Storage Service) is an object storage service offering industry-leading scalability, data availability, security, and performance. It can be used to host static websites directly. Amazon CloudFront is a fast content delivery network (CDN) service that securely delivers data, videos, applications, and APIs to customers globally with low latency, high transfer speeds, all within a developer-friendly environment.
Why this fits: This option represents the most common, cost-effective, highly scalable, and performant architecture for hosting static websites on AWS.
- S3 for Static Hosting: S3 is ideal for static website content (HTML, CSS, JavaScript, images) due to its high durability, availability, and virtually unlimited scalability. It's also very cost-effective.
- CloudFront for Performance and Security: Integrating CloudFront with S3 improves the user experience by caching content at edge locations closer to users, significantly reducing latency. CloudFront also provides benefits like DDoS protection, SSL/TLS termination, and the ability to serve content over HTTPS, enhancing security and reliability. It also offloads requests from the S3 bucket, which can further reduce costs for high-traffic sites.
A company regularly receives route status updates from its delivery trucks as events in Amazon EventBridge. The company is building an API-based application in a VPC that will consume and process the events to create a delivery status dashboard. The API application must not be available by using public IP addresses because of security and compliance requirements.
How should the company send events from EventBridge to the API application?
Correct Option: A
โ
Reasoning: EventBridge can directly target a Lambda function. By configuring the Lambda function to run within the same VPC as the API application, it gains private network access to the API, thus satisfying the requirement for no public IP addresses. โ Why the other choices are incorrect:
- Option B is incorrect: An internet-facing Application Load Balancer (ALB) uses public IP addresses, directly violating the requirement that the API application must not be available via public IPs.
- Option C is incorrect: An internet-facing Network Load Balancer (NLB) uses public IP addresses, directly violating the requirement that the API application must not be available via public IPs.
- Option D is incorrect: EventBridge cannot directly send events to a private API endpoint within a VPC. It requires an intermediary service (like Lambda or an API Gateway with VPC Link) that has network access to the private endpoint.
A company manages millions of documents in hundreds of Amazon S3 buckets in multiple AWS Regions. The company must determine whether any of the S3 buckets contain personally identifiable
information (PII).
Which solution will meet this requirement with the LEAST operational overhead?
Premium Solution Locked
Unlock all 470 answers & explanations
A company has a batch processing application that runs every day. The process typically takes an average 3 hours to complete. The application can handle interruptions and can resume the process after a restart. Currently, the company runs the application on Amazon EC2 On-Demand Instances.
The company wants to optimize costs while maintaining the same performance level.
Which solution will meet these requirements MOST cost-effectively?
Premium Solution Locked
Unlock all 470 answers & explanations
A company wants to use AWS Direct Connect to connect the company's on-premises networks to the AWS Cloud. The company runs several VPCs in a single AWS Region. The company plans to expand its VPC fleet to include hundreds of VPCs.
A solutions architect needs to simplify and scale the company's network infrastructure to accommodate future VPCs.
Which service or resource will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company has a development account that contains Amazon EC2 instances. The company uses the EC2 instances for testing. A recent audit of the development account showed that some developers occasionally forget to stop instances after the tests are finished, which incurs extra costs.
The company wants to optimize costs for the development account. The company wants to use AWS Budgets to implement a budget for the account.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is deploying a critical application by using Amazon RDS for MySQL. The application must be highly available and must recover The company needs to support interactive users
(transactional queries) and batch reporting (analytical queries) with no more than a 4-hour lag. The analytical queries must not affect the performance of the transactional queries.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The application experiences periodic spikes in malicious traffic attempts from attackers. The application receives mostly SQL injection and cross-site scripting (XSS) attacks from external sources.
The company requires a solution to protect the application from the attacks. The solution must have minimal effect on application performance.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
An insurance company wants to migrate an application that calculates insurance premiums to AWS. The company needs to run calculations immediately when a customer submits information through the application. The application usually takes 10 seconds to process a calculation.
A solutions architect needs to develop an architecture on AWS to handle the application.
Which solution will meet this requirement?
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs a three-tier web application in a VPC on AWS. The company deployed an application load balancer (ALB) in a public subnet. The web tier and application tier Amazon EC2 instances are deployed in a private subnet. The company uses a self-managed MySQL database that runs on EC2 instances in an isolated private subnet for the database tier.
The company wants a mechanism that will give a DevOps team the ability to use SSH to access all the servers. The company also wants to have a centrally managed log of all connections made to the servers.
Which combination of solutions will meet these requirements with the MOST operational efficiency? (Select TWO.)
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs a container application by using Amazon Elastic Kubernetes Service (Amazon EKS). The application includes microservices that manage customers and place orders, The company needs to route incoming requests to the appropriate microservices.
Which solution will meet this requirement MOST cost-effectively?
Premium Solution Locked
Unlock all 470 answers & explanations
A company wants to deploy a new public web application on AWS. The application includes a web server tier that uses Amazon EC2 instances. The application also includes a database tier that uses an Amazon RDS for MySQL DB instance.
The application must be secure and accessible for global customers that have dynamic IP addresses.
How should a solutions architect configure the security groups to meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company has an application that processes information from documents that users upload. When a user uploads a new document to an Amazon S3 bucket, an AWS Lambda function is invoked and processes the document.
The company discovers that the application did not process some of the uploaded documents because of document formatting errors. The company wants to ensure that the application finalizes processing all
documents as soon as possible, even if errors are encountered during document processing. Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A healthcare company needs a storage solution for electronic health records (EHRs). The company must store the EHRs for at least 10 years to comply with regulations. The company rarely accesses the records. The records must be secure, immutable, and retrievable within a few hours when needed.
Which solution will meet these requirements in the MOST cost-effective way?
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs an application that stores and shares photos. Users upload the photos to an Amazon S3 bucket Every day, users upload approximately 150 photos. The company wants to design a solution that creates a thumbnail of each new photo and stores the thumbnail in a second S3 bucket.
Which solution will meet these requirements MOST cost-effectively?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is designing a new ecommerce application for a high-traffic retail website. The application needs to process a large volume of customer orders. The application must scale to handle spikes in order volume during peak shopping events. Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company uses AWS to run its ecommerce platform. The platform is critical to the company's operations and has a high volume of traffic and transactions. The company configures a murti-factor authentication (MFA) device to secure its AWS account root user credentials. The company wants to ensure that it will not lose access to the root user account if the MFA device is lost.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company needs to archive an on-premises relational database. The company wants to retain the data. The company needs to be able to run SQL queries on the archived data to create annual reports. Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is planning to deploy a business-critical application in the AWS Cloud. The application requires durable storage with consistent, low-latency performance.
Premium Solution Locked
Unlock all 470 answers & explanations
An ecommerce company hosts an application on AWS across multiple Availability Zones- The application experiences uniform load throughout most days.
The company hosts some components of the application in private subnets, The components need to access the internet to install and update patches A solutions architect needs to design a cost effective solution that provides secure outbound Internet connectivity for private subnets across multiple Availability Zones. The solution must maintain high availability
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
An ecommerce company is redesigning a web application to run on the AWS Cloud. The application needs to store static website content and must use a Microsoft SQL Server database to store customer data. The company needs to deploy the application in a resilient way across multiple Availability Zones.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A solutions architect needs to build a log storage solution for a client. The client has an application that produces user activity logs that track user API calls to the application. The application typically produces 50 GB of logs each day. The client needs a storage solution that makes the logs available for occasional querying and analytics. Which solution will meet these requirements in the MOST cost-effective way?
Premium Solution Locked
Unlock all 470 answers & explanations
A company creates a VPC that has one public subnet and one private subnet. The company attaches an internet gateway to the VPC. An Application Load Balancer (ALB) in the public subnet communicates with Amazon EC2 instances in the private subnet.
The EC2 instances in the private subnet must be able to download operating system (OS) and application updates from the internet. The instances must not be accessible from the internet.
Which combination of steps will meet these requirements? (Select THREE.)
Premium Solution Locked
Unlock all 470 answers & explanations
A company is building a suite of RESTful microservices that will be exposed through public endpoints. The company requires a scalable solution to ensure that the microservices handle sudden traffic spikes from global users, minimize latency, and offload requests from the backend microservices.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company has an application that runs on Amazon EC2 instances in an Auto Scaling group. The application uses hardcoded credentials to access an Amazon RDS database. To comply with new regulations, the company needs to automatically rotate the database password for the application service account every 90 days.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is building an ecommerce platform that will allow customers to place orders online. Customer traffic varies significantly. An order-processing microservice is running on a group of Amazon EC2 instances. A solutions architect must ensure that the application remains responsive and decoupled from the frontend. The application must also be able to reprocess orders that the application fails to process on the first attempt. Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company uses AWS to run its workloads. The company uses AWS Organizations to manage its accounts. The company needs to identify which departments are responsible for specific costs.
New accounts are constantly created in the Organizations account structure. The Organizations continuous integration and continuous delivery (CIICD) framework already adds the populated department tag to
the AWS resources. The company wants to use an AWS Cost Explorer report to identify the service costs by department from all AWS accounts.
Which combination of steps will moot these requirements with the MOST operational efficiency? (Select TWO.)
Premium Solution Locked
Unlock all 470 answers & explanations
A company provides an API interface to customers so the customers can retrieve their financial information. The company expects a larger number of requests during peak usage times of the year.
The company requires the API to respond consistently with low latency to ensure customer satisfaction. The company needs to provide a compute host for the API.
Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is deploying an application that processes streaming data in near-real time. The company plans to use Amazon EC2 instances for the workload. The network architecture must be configurable to provide the lowest possible latency between nodose
Which networking solution meets these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is developing a highly available natural language processing (NLP) application. The application handles large volumes of concurrent requests. The application performs NLP tasks such as entity recognition, sentiment analysis, and key phrase extraction on text data. The company needs to store data that the application processes in a highly available and scalable database. Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company has an application that runs on Amazon EC2 instances and uses an Amazon Aurora database. The EC2 instances connect to the Aurora database by using user names and passwords that the company stores locally in a file.
The company the user names and passwords every month. The company wants to minimize the operational overhead of credential management
Which solution will meet these requirements.
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs a fleet of Amazon EC2 On-Demand Instances to support a document processing application that has variable usage patterns. The company wants to optimize compute costs for the application. The company needs a solution that can tolerate occasional disruptions to document processing jobs.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company has hired an external vendor to work in the company's AWS account. The vendor uses an automated tool that the vendor hosts in its own AWS account. The vendor does not have IAM access to the company's AWS account.
A solutions needs to grant access to the vendor
Which solution will meet these requirements MOST securely?
Premium Solution Locked
Unlock all 470 answers & explanations
A company's web application currently uses large sets of relational data that have table relationships in a MySQL database that runs on an Amazon EC2 instance. The web application has unpredictable and highly variable workloads. Outside of business hours, there are long periods of no database activity. The company has a backup of the existing database. The company needs a solution to optimize operational costs while allowing the database to automatically scale to meet demand. What solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs an enterprise resource planning (ERP) system on Amazon EC2 instances in a single AWS Region. Users connect to the ERP system by using a public API that is hosted on the EC2 instances.
International users report slow API response time from their data counters .
A solutions architect needs to improve API response times for the international users.
Which solution will meet these requirements MOST cost-effectively?
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs a high-traffic web application that has a three-tier architecture that consists of a web layer, an application layer, and a database layer. The web layer and application layer run on Amazon EC2 instances behind an Application Load Balancer (ALB). The application layer is stateless and supports automatic scaling. The database layer uses Amazon RDS for MySQL in a Multi-AZ configuration and relies on a relational architecture.
The company is preparing for a large marketing event that is expected to drive a sharp increase in read traffic. The company must ensure that the application remains highly available and responsive under load. The company wants to scale the application's architecture components but does not want to modify the application.
Which combination of solutions will meet these requirements? (Select THREE.)
Premium Solution Locked
Unlock all 470 answers & explanations
A solutions architect has AWS Lambda functions that need to access a company's intern al data science libraries and reference data. Separate teams manage the libraries and the data. The teams must be able to update and upload new data independently The Lambda functions are connected to the company's central VPC.
Which solution will provide the Lambda functions with access to the libraries and data?
Premium Solution Locked
Unlock all 470 answers & explanations
A retail company runs multiple containerized applications on Amazon ECS. The company's inventory system includes a primary task that processes orders continuously and a sidecar task that performs batch reconciliation. The reconciliation task runs a few times each week when it is invoked by specific events.
The company wants to optimize costs by refactoring the current architecture while maintaining all current functionality.
Which solution will meet these requirements in the MOST cost-effective way?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is running a two-tier web-based application an on-premises data center The application layer consists of a single server running a stateful application. The application connects to a PostgreSQL
database running on a separate server. The application's user base is expected to grow significantly, so the company is migrating the application and database to AWS. Tho solution will use Amazon Aurora PostgreSQL, Amazon EC2 Auto Scaling, and Elastic Load Balancing.
Which solution will provide a consistent user experience that will allow the application and database tiers to scale?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is building a containerized application on AWS. The application uses the Linux operating system. The company needs to provide a persistent storage solution for
the application.
The company expects the storage solution to have varying data access patterns. The solution must have native storage tiering capabilities and must be scalable. The
solution must not require the company to provision storage upfront.
Which solution will meet these requirements in the MOST cost-effective way?
Premium Solution Locked
Unlock all 470 answers & explanations
An ecommerce company is migrating its on-premises workload to the AWS Cloud. The workload currently consists of a web application and a backend Microsoft SQL database for storage.
The company expects a high volume of customers during a promotional event. The new infrastructure in the AWS Cloud must be highly available and scalable.
Which solution will meet these requirements with the LEAST administrative overhead?
Premium Solution Locked
Unlock all 470 answers & explanations
A company needs to design a resilient web application to process customer orders. The web application must automatically handle increases in web traffic and application usage without affecting the customer
experience or losing customer orders.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company uses an Amazon CloudFront distribution to serve content pages for its website. The company needs to ensure that clients use a TLS certificate when accessing the company's website. The company wants to automate the creation and renewal of the TLS certificates.
Which solution will meet these requirements with the MOST operational efficiency?
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs a web application on Amazon EC2 instances. The application also uses an Amazon DynamoDB table. The application generates sporadic HTTP 500 errors. The DynamoDB table is operating in on-demand mode, and other applications use the table without any issues.
A solutions architect wants to resolve the HTTP 500 errors without disrupting in the web application.
Which solution will meet these requirements.
Premium Solution Locked
Unlock all 470 answers & explanations
A global company operates in multiple AWS Regions to meet data residency requirements. The company uses AWS Organizations to manage its accounts.
The company wants to restrict IAM roles and access to specific Regions to prevent accidental data operations across geographic boundaries.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company operates a food delivery service- Because of recent growth, the company's order processing system is experiencing scaling problems during peak traffic hours. The current architecture includes Amazon EC2 instances in an Auto Scaling group that collect orders from an application. A second group of EC2 instances in an Auto Scaling group fulfills the orders.
The order collection process occurs quickly, but the order fulfillment process can take longer Data must not be lost because of a scaling event. A solutions architect must ensure that the order collection process and the order fulfillment process can both scale adequately during peak traffic hours.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company wants to develop a database tool that is compatible with PostgreSQL- The company will run the tool only during business hours- The company wants to deploy the tool to AWS- The company needs to set up a development environment to support development efforts.
The development environment must optimize database compute costs during the frequent and prolonged periods of inactivity
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is building a compute-intensive application that will run on a fleet of Amazon EC2 instances- The application uses attached Amazon EBS volumes for storing data. The EBS volumes will be created at time of initial deployment The application will process sensitive information. All of the data must be encrypted- The solution should not impact the application's performance.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is building an application on an Amazon ECS cluster that uses the AWS Fargate launch type. The application must read files from a private Amazon S3 bucket. The company needs to design a security solution to allow ECS tasks to retrieve data from the S3 bucket.
Which solution will meet these requirements with the LEAST administrative effort?
Premium Solution Locked
Unlock all 470 answers & explanations
A company needs to optimize costs for a properity, non-production x86-based application- The application runs on a general purpose Amazon EC2 instance and is over provisioned- The application is CPU intensive- The company does not want to re-architect or recompile the application
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is developing an automated reporting application. The application accesses raw data in an Amazon S3 bucket, performs lightweight data processing, and creates and sends a report each night.
The total processing time usually takes a few minutes. However, the amount of raw data that the application must process varies. Unusually large amounts of data can increase the total processing time by up to 20 minutes.
The company needs a solution to handle various amounts of data.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs an application on a Kubernetes cluster on premises- The company wants to deploy the application and its components to AWS as a secondary site- The company does not want to make any major changes to the application's architecture.
Which solution will meet these requirements with the LEAST operational effort?
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs Amazon EC2 Linux instances that do not have public IP addresses- The company hosts the instances in private subnets in a VPC- The company needs to use SSH to access the EC2 instances. The company does not want to maintain long-lived SSH keys or to install additional software on the EC2 instances. The company wants to use IAM for authentication.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is migrating a microservices-based application to AWS- The application requires a container orchestration solution that provides high availability and automatic scaling- The company wants to reduce the operational overhead of managing the container infrastructure.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company performs a security review of its AWS workloads and finds that all the company's IAM users have the Administrator Access IAM managed policy directly attached- The company's IAM users belong to either an engineering department or an operations department. Engineering users require full read and write access to all resources- Operations users require only read access to all resources.
The company must apply the principle of least privilege to user access.
Which solution will meet this requirement in the MOST operationally efficient way?
Premium Solution Locked
Unlock all 470 answers & explanations
An ecommerce company runs a transaction processing system within a large application on a set of Amazon EC2 instances behind an Application Load Balancer (ALB). The transaction process handles order creation, payment initiation, and inventory updates.
The company has observed pefformance issues in the transaction workflow as the volume of transactions has increased. The company wants to re-architect the transaction process to introduce horizontal scalability and to improve cost efficiency.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is designing a critical three-tier web application- The application must be highly available and fault tolerant. The company will deploy the application in the eu-west-l Region. The application must continue to function if the application encounters a fault in one Availability Zone.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company deploys a stateful application on Amazon EC2 On-Demand Instances in multiple Availability Zones behind an Application Load Balancer (ALB). The application workload is predictable, and the company has not received any CPU usage alerts. The company expects to run the application for at least 1 year. The company expects CPU usage to increase by 50% during an upcoming 2-week holiday period. The company wants to optimize costs for the application for both the holiday period and normal operations. Which solution will meet these requirements in the MOST cost-effective way?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is building a cloud-based application on AWS that will handle sensitive customer data- The application uses Amazon RDS for the database, Amazon S3 for object storage, and S3 Event Notifications that invoke AWS Lambda for serverless processing.
The company uses AWS IAM Identity Center to manage user credentials. The development, testing, and operations teams need secure access to Amazon RDS and Amazon S3 while ensuring the confidentiality of sensitive customer data. The solution must comply with the principle of least privilege.
Which solution meets these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 470 answers & explanations
A company wants to re-architect an application to use Amazon SQS queues. The company must ensure that the application can handle sudden increases in traffic. Which Amazon SQS feature will help meet this requirement?
Premium Solution Locked
Unlock all 470 answers & explanations
A solutions architect manages a containerized application that is deployed on Amazon ECS- The application stores data in an Amazon DynamoDB database- The solutions architect must implement a solution to rotate the database credentials every 30 days.
Which solution will meet these requirements with the LEAST development effort?
Premium Solution Locked
Unlock all 470 answers & explanations
A company wants to migrate an on-premises video processing application to AWS. Processing times range from 5-30 minutes. The application must run multiple jobs in parallel. The application processes videos that users upload to an Amazon S3 bucket.
Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 470 answers & explanations
A solutions architect needs to copy files from an Amazon S3 bucket to an Amazon EFS file system and another S3 bucket. The files must be copied continuously- New files are added to the original S3 bucket consistently- The copied files should be overwritten only if the source file changes
Which solution will meet these requirements with the LEAST operational overhead?
Premium Solution Locked
Unlock all 470 answers & explanations
An analytics company wants to deploy a custom extract, transform, and load (ETL) solution as a containerized application on AWS. The application requires high-performance access to files that are in a centralized repository. File processing can take up to 1 hour to finish.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs an application on Amazon EC2 instances. EC2 instance usage is higher during daytime hours than nighttime hours. A solutions architect wants to automatically optimize Amazon EC2 costs based on this usage pattern.
Which AWS service or purchasing option will meet this requirement?
Premium Solution Locked
Unlock all 470 answers & explanations
A company uses an organization in AWS Organizations to manage five AWS accounts. The company requires a centralized solution to prevent anyone from creating IAM users or access keys in any account.
Which solution will meet this requirement with the LEAST administrative overhead?
Premium Solution Locked
Unlock all 470 answers & explanations
A company stores a large number of image files in an Amazon S3 bucket The images need to be readily available for 180 days. The company rarely accesses images that are older than 180 days- However, the company must be able to access images immediately when necessary-
The company wants to archive images that are older than 360 days, but the company must be able to access the images instantly when required. The images cannot be deleted. The company requires high availability and redundancy throughout the entire lifecycle of the files.
The company will use S3 Standard storage for the first 180 days. The company needs to configure S3 Lifecycle rules to handle the remaining lifecycle stages of the files.
Which solution will meet these requirements MOST cost-effectively?
Premium Solution Locked
Unlock all 470 answers & explanations
An application collects data and generates logs for all operational activities in a company's AWS Cloud infrastructure. The company wants a solution to store and retain the application logs. The logs must be immutable for 7 years. The company can delete the logs after 7 years.
Which solution will meet these requirements in the MOST cost-effective way?
Premium Solution Locked
Unlock all 470 answers & explanations
A company hosts an application on Amazon EC2 instances behind an Application Load Balancer (ALB)- The company wants the application be accessible only from inside the VPC that hosts the ALB-
The company creates an alias record of examplecom in Amazon Route 53. The DNS record for the application must be resolvable only in the VPC where the application runs.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is creating a new web application- The application includes a single static webpage and a persistent database layer- The company expects millions of users to use the application during the same 4 hours every moming- The company expects that the application will have only a few thousand users during the rest of each day.
The company must be able to rapidly evolve the database schema when needed.
Which combination of solutions will meet these requirements and provide the MOST scalability? (Select TWO.)
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs an application on Amazon EC2 instances- The instances need to access an Amazon RDS database by using specific credentials- The company uses AWS Secrets Manager to contain the credentials the EC2 instances must use-
Which solution will meet this requirement?
Premium Solution Locked
Unlock all 470 answers & explanations
A company hosts its order processing system on AWS. The architecture consists of a frontend and a backend. The frontend includes an Application Load Balancer (ALB) and Amazon EC2 instances in an Auto-Scaling group. The backend includes an EC2 instance and an Amazon RDS MySQL database.
To prevent incomplete or lost orders, the company wants to ensure that order states are always preserved. The company wants to ensure that every order will eventually be processed, even after an outage or pause. Every order must be processed exactly once.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs a web application that stores user-generated images. The application currently stores 500 GB of images. The average file size of the images is 2 MB. The company expects the total amount of images grow to 2 TB within 6 months. The application needs to serve all stored images with low latency to users from around the world.
Which storage solution will meet these requirements MOST cost-effectively?
Premium Solution Locked
Unlock all 470 answers & explanations
An ecommerce company has an application that uses Amazon DynamoDB tables that are configured with provisioned capacity. Order data is stored in a table named Orders. The Orders table has a primary key of order-ID and a sort key of product-ID. The company configured an AWS Lambda function to receive DynamoDB streams from the Orders table and to update a table named Inventory.
The company has noticed that during peak sales periods, updates to the Inventory table take longer than the company can tolerate.
Which solutions will resolve the slow table updates? (Select TWO.)
Premium Solution Locked
Unlock all 470 answers & explanations
A company wants to use an API to translate text from one language to another. The API must receive an HTTP header value and pass the value to an embedded library. The solution must be able to translate documents within 6 minutes. The API must run custom authorization logic.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs multiple workloads in separate AWS environments. The company wants to optimize its AWS costs but must maintain the same level of performance for the environments.
The company's production environment requires resources to be highly available. The other environments do not require highly available resources.
Each environment has the same set of networking components, including the following:
- 1 VPC
- 1 Application Load Balancer
- 4 subnets distributed across 2 Availability Zones (2 public subnets and 2 private subnets)
- 2 NAT gateways (1 in each public subnet)
- 1 internet gateway
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs a web application that uses an Amazon RDS for MySQL database. A company employee caused data loss by accidentally editing information in a database table.
The company must be able to recover from similar incidents in the future. The company must be able to restore the database to a specific point in time within the previous 30 days. The solution must restore the database with a maximum of 5 minutes of data loss.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company currently runs a Linux-based application in a self-managed Docker container that runs on Amazon EC2 instances. The application runs a lightweight data processing tool that always completes its job within 3 minutes. The company wants an alternative deployment solution for the application to reduce infrastructure management overhead. The company is willing to make any required changes to the container image.
Which solution will meet this requirement with the LEAST operational overhead?
Premium Solution Locked
Unlock all 470 answers & explanations
A company uses an organization in AWS Organizations to manage multiple AWS accounts. The company is migrating users from IAM to AWS IAM Identity Center.
The company wants to ensure that no new IAM users can be created in any of the member accounts. The company wants to allow only existing IAM users to have access to the accounts.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company needs a solution to process customer orders from a global ecommerce platform. The solution must automatically start processing new orders immediately and must maintain a history of all order processing attempts.
Which solution will meet these requirements in the MOST cost-effective way?
Premium Solution Locked
Unlock all 470 answers & explanations
A company is developing an automated reporting application. The application accesses raw data in an Amazon S3 bucket, performs lightweight data processing, and creates and sends a report each night.
The total processing time usually takes a few minutes. However, the amount of raw data that the application must process varies. Unusually large amounts of data can increase the total processing time by up to 20 minutes.
The company needs a solution to handle various amounts of data.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A solutions architect manages an analytics application. The application stores large amounts of semistructured data in an Amazon S3 bucket. The solutions architect wants to use parallel data processing to process the data more quickly. The solutions architect also wants to use information that is stored in an Amazon Redshift database to enrich the data.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
A company runs a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The application uses Amazon DynamoDB as its database. The company wants to ensure high performance for reads and writes.
Which solution will meet this requirement MOST cost-effectively?
Premium Solution Locked
Unlock all 470 answers & explanations
A global company hosts its web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The web application has static data and dynamic data. The company stores its static data in an Amazon S3 bucket. The company wants to improve performance and reduce latency for the static data and dynamic data. The company is using its own domain name registered with Amazon Route 53.
What should a solutions architect do to meet these requirements?
A company hosts a training website on a fleet of Amazon EC2 instances that run web server software. The company anticipates that a new training product will be extremely popular and will receive high user traffic. The training product consists of dozens of training videos that are hosted on the website.
A solutions architect must minimize the load on the company's web servers.
Which solution will meet this requirement?
Premium Solution Locked
Unlock all 470 answers & explanations
A company plans to deploy containerized microservices in the AWS Cloud. The containers must mount a persistent file store that the company can manage by using OS-level permissions. The company requires fully managed services to host the containers and file store.
Which solution will meet these requirements?
Premium Solution Locked
Unlock all 470 answers & explanations
An image-processing company has a web application that users use to upload images. The application uploads the images into an Amazon S3 bucket. The company has set up S3 event notifications to publish the object creation events to an Amazon SQS standard queue. The SQS queue serves as the event source for an AWS Lambda function that processes the images and sends the results to users through email. Users report that they are receiving multiple email messages for every uploaded image. A solutions architect determines that SQS messages are invoking the Lambda function more than once, resulting in multiple email messages.
What should the solutions architect do to resolve this issue with the LEAST operational overhead?
Premium Solution Locked
Unlock all 470 answers & explanations
Full Question Bank Locked
You have reached the end of the free study guide preview. Upgrade now to unlock all 470 questions and the full simulation engine.
Certification Path
Related Certifications
Customer Reviews
Global Community Feedback
David M.
"The practice engine is incredible. It feels exactly like the real testing environment and helped me build so much confidence."
Sarah J.
"The PDF is very well organized and the explanations for the answers are actually helpful, not just random text."
Michael C.
"I was skeptical, but the content is high quality and definitely worth the price. I passed on my first try!"