Amazon Web ServicesAssociate levelSAA-C03

SAA-C03 exam dumps: 553 free AWS Solutions Architect Associate practice questions

Free SAA-C03 practice questions for the AWS Certified Solutions Architect - Associate exam, with the correct answer and a full explanation for every option. Read the first 10 below, browse all 553 by number, or take a timed practice exam.

Question bank last updated December 2024

Free SAA-C03 practice questions

Questions 1 to 10 of 553

Pick an answer before you open the explanation. Each question also has its own page with a permalink.

SAA-C03 Question 1

Select 3

A company is designing a web application that stores sensitive customer data. The application is hosted on Amazon EC2 instances within a private subnet, and the data is stored in an Amazon RDS database. The company wants to ensure data security by encrypting data both at rest and in transit. Which combination of steps should be implemented to achieve this goal?

  1. A

    Enable encryption for the RDS database at the time of creation.

  2. B

    Use an Application Load Balancer (ALB) with HTTPS listeners to terminate SSL/TLS connections.

  3. C

    Enable server-side encryption (SSE) on the EC2 instance root volume using AWS KMS.

  4. D

    Configure the application to use SSL/TLS to connect to the RDS database.

  5. E

    Use security groups to block all inbound traffic to the EC2 instances.

Show answer and explanation

Correct answers: A, B, D

Explanation

To ensure data security in the given scenario, the company must encrypt data both at rest and in transit. Enabling encryption for the RDS database ensures that data stored in the database is encrypted at rest. Using an Application Load Balancer (ALB) with HTTPS listeners encrypts data in transit between the client and the ALB. Configuring the application to use SSL/TLS for connections to the RDS database secures data in transit between the application and the database. While server-side encryption on EC2 instances and security group rules are important, they do not directly address the encryption requirements for this scenario.

  • A. Correct.

    This is correct. Amazon RDS provides encryption at rest using AWS Key Management Service (KMS). Enabling encryption at the time of database creation ensures that all data stored in the database is encrypted.

  • B. Correct.

    This is correct. Using an Application Load Balancer (ALB) with HTTPS listeners ensures that data in transit between the client and the ALB is encrypted using SSL/TLS.

  • C. Incorrect.

    This is incorrect. While enabling server-side encryption (SSE) on the root volume encrypts data on the EC2 instance, it does not secure data in transit or the RDS database.

  • D. Correct.

    This is correct. Configuring the application to use SSL/TLS when connecting to the RDS database encrypts data in transit between the application and the database.

  • E. Incorrect.

    This is incorrect. Security groups are used to control network access but do not provide encryption capabilities for data at rest or in transit.

SAA-C03 Question 2

Select 3

Your company is building a web application on AWS that stores sensitive customer data in an Amazon S3 bucket. The application is backed by an Amazon RDS database. You are tasked with designing a secure architecture to ensure compliance with security best practices. Which combination of steps should you take to secure the data both in transit and at rest?

  1. A

    Enable server-side encryption (SSE) on the Amazon S3 bucket using AWS Key Management Service (KMS).

  2. B

    Use SSL/TLS to encrypt data in transit between the application and Amazon RDS.

  3. C

    Ensure the Amazon S3 bucket is publicly accessible to simplify application access.

  4. D

    Enable Amazon RDS encryption at rest using AWS-managed keys.

  5. E

    Set up an IAM policy to allow all users full access to the Amazon S3 bucket for testing purposes.

Show answer and explanation

Correct answers: A, B, D

Explanation

To design a secure architecture for storing sensitive customer data on AWS, you must ensure both data at rest and data in transit are properly protected. This includes enabling encryption for S3 and RDS to secure data at rest and using SSL/TLS to secure data in transit. Avoiding risky configurations like public bucket access and overly permissive IAM policies is also critical for maintaining a secure environment.

  • A. Correct.

    Correct: Enabling server-side encryption (SSE) with AWS KMS ensures that data stored in the S3 bucket is encrypted at rest. This is a critical security measure for protecting sensitive data.

  • B. Correct.

    Correct: Using SSL/TLS ensures that data in transit between the application and Amazon RDS is encrypted, preventing interception and unauthorized access during transmission.

  • C. Incorrect.

    Incorrect: Making the S3 bucket publicly accessible is a significant security risk. Sensitive customer data should never be exposed publicly.

  • D. Correct.

    Correct: Enabling RDS encryption at rest with AWS-managed keys ensures that data stored in the database is encrypted, which is crucial for meeting security best practices.

  • E. Incorrect.

    Incorrect: Allowing all users full access to the S3 bucket using an overly permissive IAM policy violates the principle of least privilege and exposes sensitive data to unauthorized access.

SAA-C03 Question 3

Select 3

A company is designing a new web application that will store sensitive customer information in an Amazon RDS database. The company wants to ensure data security by encrypting the data at rest and in transit. Additionally, the company must meet compliance requirements by controlling database access at the network level. Which combination of actions should the Solutions Architect recommend?

  1. A

    Enable encryption at rest for the Amazon RDS instance using AWS KMS.

  2. B

    Use a VPC security group to restrict access to the RDS instance.

  3. C

    Enable AWS Shield to protect the RDS database against DDoS attacks.

  4. D

    Require SSL/TLS for database connections to encrypt data in transit.

  5. E

    Use Amazon RDS Multi-AZ deployment to ensure high availability.

Show answer and explanation

Correct answers: A, B, D

Explanation

To design a secure architecture for the web application, the company must ensure that the data is protected both at rest and in transit. Enabling encryption at rest with AWS KMS and requiring SSL/TLS for database connections satisfy these requirements. Additionally, using a VPC security group ensures that access to the database is controlled at the network level. AWS Shield and Multi-AZ deployment are important for other use cases, such as availability and DDoS protection, but they are not directly relevant to the encryption and network security requirements described in this scenario.

  • A. Correct.

    Enabling encryption at rest using AWS KMS ensures that the data stored in the database is encrypted, which addresses the security and compliance requirement.

  • B. Correct.

    Using a VPC security group allows you to control network-level access to the RDS instance, which is necessary for securing the database and meeting compliance requirements.

  • C. Incorrect.

    AWS Shield is a service designed to protect against DDoS attacks, but it does not provide encryption or network-level access control for the RDS database.

  • D. Correct.

    Enabling SSL/TLS for database connections encrypts data in transit, ensuring sensitive information is securely transmitted to and from the RDS database.

  • E. Incorrect.

    While Amazon RDS Multi-AZ deployment provides high availability and fault tolerance, it does not directly address encryption or network-level access control.

SAA-C03 Question 4

Select 3

A company is designing a web application that processes sensitive customer information. The application will be hosted on Amazon EC2 instances behind an Application Load Balancer (ALB). As part of the security requirements, the application must ensure that sensitive data is encrypted both in transit and at rest. Which of the following steps should the company take to meet these requirements?

  1. A

    Use an SSL/TLS certificate on the Application Load Balancer to enforce HTTPS connections.

  2. B

    Enable server-side encryption for the S3 bucket where sensitive data backups are stored.

  3. C

    Use an IAM role to allow the EC2 instances to access the sensitive data without hardcoding credentials.

  4. D

    Configure the EC2 instances to use an encrypted Amazon Elastic Block Store (Amazon EBS) volume.

  5. E

    Set up VPC Flow Logs to monitor and log all network traffic for the EC2 instances.

Show answer and explanation

Correct answers: A, B, D

Explanation

To meet the requirements of encrypting sensitive data in transit and at rest, the company must enforce HTTPS connections on the ALB with SSL/TLS, enable server-side encryption for S3 buckets, and use encrypted EBS volumes for EC2 instances. While IAM roles and VPC Flow Logs are security best practices, they do not directly address the encryption requirements specified in the scenario.

  • A. Correct.

    Using an SSL/TLS certificate on the Application Load Balancer ensures that all data in transit between clients and the application is encrypted, satisfying the encryption-in-transit requirement.

  • B. Correct.

    Enabling server-side encryption for the S3 bucket ensures that data at rest in the S3 bucket is encrypted, which is part of the requirement for securing sensitive data.

  • C. Incorrect.

    While using an IAM role is good for security and avoiding hardcoding credentials, it does not directly address the encryption of data in transit or at rest.

  • D. Correct.

    Configuring the EC2 instances with encrypted Amazon EBS volumes ensures that sensitive data stored on the instance is encrypted at rest, meeting the data-at-rest encryption requirement.

  • E. Incorrect.

    Setting up VPC Flow Logs is useful for monitoring and troubleshooting, but it does not contribute to meeting the encryption-in-transit or encryption-at-rest requirements.

SAA-C03 Question 5

Select 3

A company wants to provide secure access for its developers to manage resources in an AWS account. The developers should only be able to access specific services and actions based on their job roles. Additionally, the company wants to ensure that access keys are not hardcoded into applications or shared manually. Which of the following solutions would meet these requirements?

  1. A

    Create IAM roles with policies that grant the necessary permissions and allow developers to assume these roles.

  2. B

    Create IAM users for each developer, attach policies with required permissions, and share long-term access keys with them.

  3. C

    Use AWS Systems Manager Session Manager to provide secure access to AWS resources without the need for SSH keys or bastion hosts.

  4. D

    Enable Multi-Factor Authentication (MFA) for IAM users and enforce its use for all AWS Management Console logins.

  5. E

    Use Amazon Cognito to manage user identities and their access to AWS resources.

Show answer and explanation

Correct answers: A, C, D

Explanation

To design secure access to AWS resources, you should use IAM roles with policies for granting temporary permissions, enforce MFA to enhance account security, and leverage Systems Manager Session Manager for secure access. Sharing long-term credentials or using inappropriate services like Cognito for this purpose is not recommended.

  • A. Correct.

    Creating IAM roles with policies and allowing developers to assume these roles ensures secure, temporary access to AWS resources without the need to share long-term credentials. This aligns with AWS best practices.

  • B. Incorrect.

    Creating IAM users and sharing long-term access keys is not secure. Hardcoding or sharing access keys increases the risk of security breaches and violates AWS best practices.

  • C. Correct.

    AWS Systems Manager Session Manager provides secure, auditable session access to manage AWS resources, avoiding the need for SSH keys or bastion hosts, which enhances security.

  • D. Correct.

    Enabling MFA for IAM users adds an extra layer of security, ensuring that even if credentials are compromised, unauthorized access is prevented.

  • E. Incorrect.

    Amazon Cognito is designed for managing user identities for web and mobile applications, not for granting secure access to AWS resources for developers.

SAA-C03 Question 6

Select 3

A company has an S3 bucket named 'company-data' that stores sensitive customer information. The bucket should only be accessible to employees within the company network via the corporate VPN. The company also wants to ensure that any access attempts from outside the corporate network are denied. How can you design secure access to the S3 bucket to meet these requirements?

  1. A

    Configure an S3 bucket policy to allow access only from specific IP ranges corresponding to the corporate VPN.

  2. B

    Enable S3 Block Public Access on the bucket to prevent unauthorized public access.

  3. C

    Use an IAM role with permissions to access the bucket and assign it to employees' EC2 instances in the corporate network.

  4. D

    Enable AWS CloudTrail logging for the bucket to monitor access attempts and identify unauthorized access.

  5. E

    Use VPC endpoints for S3 to ensure traffic to the bucket stays within the AWS network.

Show answer and explanation

Correct answers: A, B, E

Explanation

To secure access to the S3 bucket, you should use a combination of an S3 bucket policy to allow access only from the corporate VPN's IP ranges, enable S3 Block Public Access to prevent unauthorized public access, and use VPC endpoints for S3 to keep traffic within the AWS network. These measures collectively ensure that the bucket is only accessible to employees within the corporate network and is protected from unauthorized or public access.

  • A. Correct.

    This is correct. An S3 bucket policy can restrict access to specific IP ranges, such as the IP addresses used by the corporate VPN, ensuring only employees within the network can access the bucket.

  • B. Correct.

    This is correct. Enabling S3 Block Public Access ensures that no public access can be granted to the bucket, reducing the risk of unauthorized access.

  • C. Incorrect.

    This is incorrect. Using an IAM role for EC2 instances can help in granting access to resources, but it does not restrict access based on the corporate VPN or IP range, which is a key requirement in this scenario.

  • D. Incorrect.

    This is incorrect. While enabling AWS CloudTrail logging is a good practice for monitoring access, it does not actively restrict access to the S3 bucket based on the corporate VPN or IP range.

  • E. Correct.

    This is correct. Using VPC endpoints for S3 ensures that all traffic to the bucket remains within the AWS network, providing an additional layer of security by avoiding exposure to the public internet.

SAA-C03 Question 7

Single answer

A company is building a web application hosted on Amazon EC2 instances in a private subnet. The application needs to securely access data stored in an Amazon S3 bucket. The company requires that no S3 bucket credentials are hardcoded in the application, and all communication must remain private. How should the company securely configure access to the S3 bucket?

  1. A

    Assign an IAM role to the EC2 instances and configure a VPC endpoint for S3.

  2. B

    Store the S3 bucket credentials in an encrypted file on the EC2 instances.

  3. C

    Use an IAM user with programmatic access keys and configure the application to use these keys.

  4. D

    Configure a public-facing NAT Gateway in the VPC and use it for accessing the S3 bucket.

Show answer and explanation

Correct answer: A

Explanation

The correct approach to securely access an S3 bucket from EC2 instances in a private subnet is to assign an IAM role to the EC2 instances, which provides temporary credentials without hardcoding them. Configuring a VPC endpoint for S3 ensures that all traffic between the EC2 instances and the S3 bucket remains private within the AWS network, eliminating the need to route traffic through the internet or use a NAT Gateway.

  • A. Correct.

    This is the correct solution. Assigning an IAM role to the EC2 instances allows temporary credentials to be securely managed without hardcoding them. Configuring a VPC endpoint for S3 ensures that all traffic between the EC2 instances and the S3 bucket remains private within the AWS network.

  • B. Incorrect.

    This is not a secure solution because storing credentials in an encrypted file increases the risk of accidental exposure or misuse, and it does not meet the requirement of avoiding hardcoded credentials.

  • C. Incorrect.

    Using an IAM user with programmatic access keys involves hardcoding credentials, which is not secure and violates the requirement to avoid hardcoded S3 bucket credentials.

  • D. Incorrect.

    A NAT Gateway is not required to access an S3 bucket if a VPC endpoint for S3 is configured. Additionally, a public-facing NAT Gateway would route traffic through the internet, which does not meet the requirement to keep communication private.

SAA-C03 Question 8

Select 2

A company wants to grant its development team access to specific Amazon S3 buckets while ensuring that the team cannot access other resources in the AWS account. The team members should authenticate using their corporate Active Directory credentials. Which solution will meet these requirements in the most secure and efficient way?

  1. A

    Use AWS Identity and Access Management (IAM) users with bucket policies attached to each S3 bucket.

  2. B

    Set up AWS Single Sign-On (AWS SSO) integrated with the corporate Active Directory, and assign permissions to access the S3 buckets through IAM roles.

  3. C

    Create an IAM policy allowing access to specific S3 buckets, attach it directly to each developer, and enable multi-factor authentication (MFA).

  4. D

    Use an identity provider (IdP) federation with SAML, create IAM roles granting access to the S3 buckets, and map the roles to permissions based on Active Directory groups.

Show answer and explanation

Correct answers: B, D

Explanation

To design secure access to AWS resources, integrating with the corporate Active Directory ensures that the development team can authenticate using their existing credentials. Using AWS SSO or SAML-based federation with an IdP provides a scalable and secure way to grant access to specific resources, such as Amazon S3 buckets, through IAM roles. Options 2 and 4 meet all requirements while adhering to AWS security best practices.

  • A. Incorrect.

    This option can work, but managing individual IAM users and bucket policies for each team member is not scalable or efficient. It also does not integrate well with corporate Active Directory for authentication.

  • B. Correct.

    This option is correct because AWS SSO allows integration with corporate Active Directory and provides a scalable way to manage access to AWS resources like S3 buckets through IAM roles.

  • C. Incorrect.

    While this approach can restrict access to specific S3 buckets, attaching policies directly to individual users is not a best practice. It is also not efficient for large teams and does not align with the requirement to use corporate Active Directory credentials.

  • D. Correct.

    This option is correct because using SAML-based federation with an IdP allows the company to integrate corporate Active Directory for authentication. IAM roles mapped to Active Directory groups provide secure and scalable access to the required S3 buckets.

SAA-C03 Question 9

Single answer

A company is deploying a new application using Amazon ECS with Fargate. The application requires sensitive database credentials to connect to an Amazon RDS instance. The company wants to securely manage these credentials without hardcoding them into the application code or storing them in the container image. What is the BEST way to achieve this?

  1. A

    Store the credentials in an Amazon S3 bucket and grant the ECS task permissions to access the bucket.

  2. B

    Use AWS Secrets Manager to store the credentials and configure the ECS task definition to retrieve the secrets at runtime.

  3. C

    Embed the credentials directly into the ECS task definition as environment variables.

  4. D

    Encrypt the credentials using AWS KMS and include the encrypted values in the container image.

Show answer and explanation

Correct answer: B

Explanation

AWS Secrets Manager is the best solution for securely managing sensitive information such as database credentials. It integrates with Amazon ECS, allowing applications to retrieve secrets at runtime without exposing them in plain text or hardcoding them. This approach also supports automated secret rotation and provides robust security controls.

  • A. Incorrect.

    Storing sensitive credentials in Amazon S3 is not a secure approach, even if permissions are restricted. This option does not provide the required level of security for sensitive data like database credentials.

  • B. Correct.

    AWS Secrets Manager is the recommended option for securely storing and retrieving sensitive information like database credentials. It integrates seamlessly with ECS task definitions, allowing tasks to retrieve the credentials securely at runtime.

  • C. Incorrect.

    Embedding sensitive credentials directly into the ECS task definition as environment variables is insecure because it exposes the credentials in plain text and increases the risk of unauthorized access.

  • D. Incorrect.

    Including encrypted credentials in the container image is not a secure or scalable solution. It requires additional steps to decrypt the credentials at runtime and risks exposing the decryption keys.

SAA-C03 Question 10

Select 3

A media company runs a video streaming platform that experiences significant traffic spikes during live events. They want to ensure their application can scale automatically to handle unpredictable traffic patterns while minimizing costs. Which combination of AWS services should the company use to achieve this goal?

  1. A

    Amazon EC2 Auto Scaling with an Application Load Balancer

  2. B

    Amazon RDS with Multi-AZ deployment

  3. C

    Amazon DynamoDB with on-demand capacity mode

  4. D

    AWS Elastic Beanstalk with Auto Scaling enabled

  5. E

    Amazon S3 with Transfer Acceleration

Show answer and explanation

Correct answers: A, C, D

Explanation

To handle unpredictable traffic spikes effectively, the company should use services that provide automatic scaling and cost optimization. Amazon EC2 Auto Scaling with an Application Load Balancer ensures the compute layer scales based on demand. Amazon DynamoDB with on-demand capacity mode automatically handles traffic spikes at the database layer. AWS Elastic Beanstalk simplifies application scaling by providing a managed environment with Auto Scaling enabled. Together, these services provide a comprehensive solution for scaling the application while minimizing costs.

  • A. Correct.

    Amazon EC2 Auto Scaling with an Application Load Balancer allows the application to automatically scale out or in based on traffic patterns, ensuring high availability and cost optimization. This is suitable for handling unpredictable traffic spikes.

  • B. Incorrect.

    Amazon RDS with Multi-AZ deployment is designed for database availability and failover but does not directly address application scaling for unpredictable traffic spikes.

  • C. Correct.

    Amazon DynamoDB with on-demand capacity mode automatically adjusts its capacity to handle traffic spikes, making it a cost-effective solution for unpredictable workloads.

  • D. Correct.

    AWS Elastic Beanstalk with Auto Scaling enabled provides a managed platform that can automatically scale the application layer in response to demand, simplifying the process of handling traffic spikes.

  • E. Incorrect.

    Amazon S3 with Transfer Acceleration is used to speed up data transfers to and from S3 buckets but does not address application or database scaling requirements.

Timed practice exam

Take a SAA-C03 practice test under exam conditions

65 questions in 130 minutes, drawn from this bank, with a score report and a per-question review when you finish.

Start timed exam

What the SAA-C03 exam covers

Official AWS Certified Solutions Architect - Associate exam domains and weightings.

  • Design Secure Architectures

    30% of exam

  • Design Resilient Architectures

    26% of exam

  • Design High-Performing Architectures

    24% of exam

  • Design Cost-Optimized Architectures

    20% of exam

All 553 SAA-C03 practice questions

Every question has a page with the answer and explanation. Numbers are stable, so you can bookmark or share them.

  1. 1.A company is designing a web application that stores sensitive customer data. The application is hosted on...
  2. 2.Your company is building a web application on AWS that stores sensitive customer data in an Amazon S3 bucket....
  3. 3.A company is designing a new web application that will store sensitive customer information in an Amazon RDS...
  4. 4.A company is designing a web application that processes sensitive customer information. The application will...
  5. 5.A company wants to provide secure access for its developers to manage resources in an AWS account. The...
  6. 6.A company has an S3 bucket named 'company-data' that stores sensitive customer information. The bucket should...
  7. 7.A company is building a web application hosted on Amazon EC2 instances in a private subnet. The application...
  8. 8.A company wants to grant its development team access to specific Amazon S3 buckets while ensuring that the...
  9. 9.A company is deploying a new application using Amazon ECS with Fargate. The application requires sensitive...
  10. 10.A media company runs a video streaming platform that experiences significant traffic spikes during live...
  11. 11.A company is migrating its on-premises data to AWS and wants to ensure that its applications remain highly...
  12. 12.A company is designing a new web application that will be hosted on Amazon EC2 instances behind an...
  13. 13.A company has multiple AWS accounts that are used for different departments such as Finance, Development, and...
  14. 14.Your organization uses AWS Organizations to manage multiple AWS accounts. You need to ensure that IAM users...
  15. 15.A company has multiple AWS accounts that are part of an AWS Organizations setup. The company wants to...
  16. 16.A company has multiple AWS accounts managed under a single AWS Organization. They want to implement...
  17. 17.A company wants to provide its employees federated access to AWS resources using their existing corporate...
  18. 18.A company wants to grant its employees access to multiple AWS accounts using their corporate credentials...
  19. 19.A company wants to provide its employees with secure, seamless access to the AWS Management Console and...
  20. 20.Your company uses an on-premises Active Directory (AD) for user authentication and is migrating workloads to...
  21. 21.A company is designing a highly available application that must run in multiple locations to ensure fault...
  22. 22.Your company is planning to deploy a high-availability web application on AWS. The application must be...
  23. 23.A company is designing a multi-region disaster recovery solution for its web application. The application is...
  24. 24.Your company is migrating a global application to AWS. The application requires low-latency access for users...
  25. 25.A company is setting up an AWS environment for their new application and is focused on implementing security...
  26. 26.Your company recently hired a new team of developers who need access to an Amazon S3 bucket to store...
  27. 27.You are designing a secure architecture for an application on AWS. The application requires access to an...
  28. 28.A company is building a multi-tier application on AWS. The application uses an Amazon RDS database in the...
  29. 29.A company is planning to host a web application using Amazon EC2 instances and Amazon RDS for its database....
  30. 30.A company is using Amazon S3 to store sensitive data that is subject to compliance requirements. They also...
  31. 31.A company is hosting a web application on Amazon EC2 instances behind an Application Load Balancer. The...
  32. 32.A company is planning to migrate its on-premises web application to AWS. The application will run on Amazon...
  33. 33.A company is building a web application that stores sensitive customer data in an Amazon RDS database. The...
  34. 34.Your company is deploying a web application on AWS that handles sensitive customer data. To meet security...
  35. 35.A company is designing a new web application that stores sensitive customer data. The application will be...
  36. 36.A company is migrating its on-premises application to AWS. The application processes sensitive customer data...
  37. 37.A company runs a web application that stores critical business data in an Amazon RDS MySQL instance. The...
  38. 38.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  39. 39.A company is designing a web application that will be hosted on Amazon EC2 instances behind an Application...
  40. 40.A company is designing a serverless application using AWS Lambda and Amazon S3. The application needs to...
  41. 41.Your company is developing a serverless application using AWS Lambda. The application needs to securely...
  42. 42.A development team is building a serverless application using AWS Lambda functions. The application requires...
  43. 43.An application running on Amazon EC2 instances needs to access an Amazon S3 bucket to store logs. The...
  44. 44.You are developing an application that will run on Amazon EC2 instances. The application requires access to...
  45. 45.A company is configuring an application that will run in a private subnet of their VPC in AWS. The...
  46. 46.A company is running a workload in a VPC and requires private connectivity to AWS services such as Amazon S3...
  47. 47.A company has deployed an application in a private subnet within a VPC. The application needs to securely...
  48. 48.A company is deploying an application in a VPC that needs to securely communicate with an Amazon S3 bucket in...
  49. 49.Your company is hosting a web application on an Amazon EC2 instance in a public subnet. Users report they...
  50. 50.Your company runs a web application hosted on an EC2 instance in a public subnet of a VPC. To improve...
  51. 51.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  52. 52.Your company has deployed an application on an Amazon EC2 instance within a VPC. The application receives...
  53. 53.You are designing a solution to provide secure access for an application hosted on Amazon EC2 instances...
  54. 54.An organization wants to securely provide access to its web application hosted on Amazon EC2 instances behind...
  55. 55.A company is deploying an internal web application on Amazon EC2 instances behind an Application Load...
  56. 56.A company is developing a serverless web application that needs to securely access an Amazon DynamoDB table....
  57. 57.A financial services company is building a new web application that requires user authentication and...
  58. 58.Your company processes sensitive customer data, including personally identifiable information (PII), and...
  59. 59.A retail company wants to enhance the security of its AWS environment. They need to: 1) Detect unusual...
  60. 60.A company hosts a web application on Amazon EC2 behind an Application Load Balancer (ALB). The application...
  61. 61.A company hosts a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  62. 62.A gaming company is hosting its multiplayer game servers on Amazon EC2 instances behind an Application Load...
  63. 63.A company hosts a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The web...
  64. 64.A company stores sensitive customer data in an Amazon S3 bucket. Due to regulatory requirements, they must...
  65. 65.A company is migrating its on-premises data to Amazon S3. The company requires that the data be encrypted at...
  66. 66.A company stores sensitive customer data in an Amazon S3 bucket. The company must ensure the data is...
  67. 67.A company is hosting sensitive financial data in an Amazon S3 bucket. The company requires that this data...
  68. 68.A company wants to migrate their on-premises web application to AWS. The application consists of a stateless...
  69. 69.A company is running a high-traffic e-commerce website hosted on Amazon EC2 instances behind an Application...
  70. 70.A company is hosting a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  71. 71.A company is hosting a web application on an Auto Scaling group of Amazon EC2 instances behind an Application...
  72. 72.A company stores sensitive financial data in an Amazon S3 bucket. The data must only be accessed by specific...
  73. 73.A company stores sensitive financial data in Amazon S3 and needs to ensure that access to this data is...
  74. 74.A company wants to ensure that sensitive data stored in an Amazon S3 bucket is only accessible by specific...
  75. 75.Your organization recently adopted an AWS environment where sensitive business data is stored in Amazon S3....
  76. 76.A company runs a critical application on Amazon RDS for MySQL and needs to ensure that they can quickly...
  77. 77.Your company runs a critical web application on Amazon EC2 instances with an Amazon RDS MySQL database in the...
  78. 78.A company hosts a critical application on Amazon EC2 instances in a single Availability Zone. The application...
  79. 79.A company runs a critical web application on Amazon EC2 instances in an Auto Scaling group spanning multiple...
  80. 80.A company must retain sensitive customer data for 7 years to comply with regulatory requirements. The data...
  81. 81.A company is required to retain its customer transaction data for 7 years due to compliance regulations. The...
  82. 82.A company needs to enforce a data retention policy for its critical business data stored in Amazon S3. The...
  83. 83.A financial services company needs to store sensitive customer transaction data in AWS for compliance...
  84. 84.A financial services company uses Amazon S3 to store sensitive customer data. They want to ensure that all...
  85. 85.A company is storing sensitive customer data in an Amazon S3 bucket. Compliance requirements mandate that the...
  86. 86.A company stores sensitive customer data in an Amazon S3 bucket. The company requires that all data be...
  87. 87.A company is building a new application that stores sensitive customer data in Amazon S3. The company...
  88. 88.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  89. 89.An e-commerce company is running a web application on Amazon EC2 instances behind an Application Load...
  90. 90.A company hosts a web application on Amazon EC2 instances behind an Application Load Balancer (ALB) across...
  91. 91.A company is migrating its web application to AWS and wants to ensure high availability and fault tolerance...
  92. 92.A company is building a web application that experiences unpredictable spikes in traffic. The application...
  93. 93.A company is building a web application that requires high availability and scalability. The application is...
  94. 94.A company is building a web application that serves users across multiple geographic regions. The application...
  95. 95.A media company is migrating its video streaming application to AWS. The application requires high...
  96. 96.A company is running a web application with a MySQL database hosted on an Amazon RDS instance. The...
  97. 97.A company is running a high-traffic web application on Amazon EC2 instances behind an Application Load...
  98. 98.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  99. 99.You are building a serverless application that requires a REST API to interact with a DynamoDB table. The API...
  100. 100.A company wants to expose a RESTful API to its customers for accessing real-time inventory data. The API...
  101. 101.Your company is building a serverless application for processing and exposing data via APIs. The application...
  102. 102.You are designing an application that allows users to upload images and retrieve them using a REST API. You...
  103. 103.A company wants to securely transfer files from their on-premises systems to Amazon S3 for processing. They...
  104. 104.A company needs to set up a secure and automated solution to transfer large files from external partners into...
  105. 105.A company needs to transfer large amounts of data from their on-premises systems to Amazon S3 daily. The data...
  106. 106.A company needs to securely transfer large files from its on-premises environment to an Amazon S3 bucket. The...
  107. 107.A company is running a high-traffic e-commerce website and notices that their application is experiencing...
  108. 108.An e-commerce application serves a high volume of product catalog read requests and occasionally receives...
  109. 109.A company is running a high-traffic e-commerce website that experiences unpredictable spikes in user activity...
  110. 110.A company operates a high-traffic e-commerce website where product details and customer reviews are accessed...
  111. 111.You are designing a microservices-based application on AWS. One of the services processes user requests and...
  112. 112.You are designing a microservices-based application on AWS. One of the services processes thousands of...
  113. 113.A company is designing a microservices-based application on AWS. One of the microservices processes requests...
  114. 114.You are designing a microservices-based architecture for a new e-commerce application that handles frequent...
  115. 115.A company is building a serverless application that processes orders. When a customer places an order, the...
  116. 116.A company is designing an event-driven architecture to process customer orders. When an order is placed, the...
  117. 117.A company is designing an event-driven architecture for processing orders placed on their e-commerce...
  118. 118.A retail company wants to build an event-driven architecture to process customer orders. When a customer...
  119. 119.A company runs a web application on a single Amazon EC2 instance with an attached Amazon RDS database. The...
  120. 120.A media streaming company uses an Amazon EC2 instance to host a web application that is experiencing...
  121. 121.Your company runs a web application on an Amazon EC2 instance backed by a single Amazon RDS database. During...
  122. 122.A company is running an e-commerce website on an Amazon EC2 instance with increasing traffic during holiday...
  123. 123.A global e-commerce company is experiencing high latencies for customers accessing its website from different...
  124. 124.Your company operates a global e-commerce platform hosted in an AWS Region. Customers across the globe report...
  125. 125.A company is deploying a global e-commerce platform and wants to ensure low latency for customers accessing...
  126. 126.A global e-commerce company is experiencing high latency for users accessing their website from different...
  127. 127.Your company wants to migrate a monolithic application to containers to improve scalability and portability....
  128. 128.A company wants to migrate its monolithic application to containers on AWS. The application currently runs on...
  129. 129.A company wants to migrate their existing monolithic application into containers to improve scalability and...
  130. 130.A company wants to migrate their monolithic application to a containerized architecture using AWS. The...
  131. 131.A company hosts a web application that serves dynamic content to its users. The application is deployed...
  132. 132.Your company is hosting a web application on Amazon EC2 instances behind an Application Load Balancer (ALB)....
  133. 133.A company hosts a web application with dynamic and static content. They want to distribute incoming traffic...
  134. 134.You are designing a web application that needs to support millions of users and requires seamless scaling...
  135. 135.You are designing a multi-tier web application on AWS consisting of a front-end tier, an application tier,...
  136. 136.A company is designing a web application using a multi-tier architecture on AWS. The architecture consists of...
  137. 137.An e-commerce company is designing a multi-tier application on AWS. The application requires a web tier, an...
  138. 138.A company is designing a multi-tier web application on AWS. The application has a web tier, an application...
  139. 139.A company is building a distributed application that processes a large number of user-generated events in...
  140. 140.A company is building a distributed application where multiple microservices need to communicate...
  141. 141.A company is implementing a distributed order processing system that requires decoupling between the order...
  142. 142.A company is building a distributed application that requires real-time notifications to multiple subscribers...
  143. 143.A company is building a serverless application using AWS Lambda and Amazon API Gateway. The application...
  144. 144.A developer is designing a serverless application where an image uploaded to an S3 bucket needs to be...
  145. 145.A company wants to process files uploaded to an Amazon S3 bucket. The files must be processed automatically,...
  146. 146.A company is running a web application with unpredictable traffic patterns and wants to minimize operational...
  147. 147.A company is building a data analytics application that processes large volumes of unstructured data, such as...
  148. 148.A company is building an application that requires low-latency access to data for a database. The storage...
  149. 149.A company is building a data analytics platform that processes and stores terabytes of data daily. The...
  150. 150.A company is designing a data storage solution for their application. They need to store large amounts of...
  151. 151.A company is running a containerized application using Amazon Elastic Container Service (Amazon ECS) with the...
  152. 152.Your company is deploying a new microservices-based application, and you are tasked with choosing a container...
  153. 153.A company is running a microservices application using containers. The application currently uses Amazon ECS...
  154. 154.A company is running containerized applications using Amazon Elastic Container Service (Amazon ECS) with the...
  155. 155.Your company runs a high-traffic e-commerce website using an Amazon RDS instance for its MySQL database....
  156. 156.You are designing a database architecture for an e-commerce application that experiences high read traffic...
  157. 157.A company is running an e-commerce application backed by an Amazon RDS database. The application is...
  158. 158.A company is running a MySQL database on Amazon RDS to support a high-traffic e-commerce website. They notice...
  159. 159.A company is building a serverless application to process customer orders. The workflow involves multiple...
  160. 160.A company has an e-commerce platform where customers place orders. Once an order is placed, the system needs...
  161. 161.A company is developing a serverless application that processes user-submitted images. The workflow involves...
  162. 162.A company is building a serverless application that processes incoming customer orders. The application uses...
  163. 163.A company is building a web application that must be highly available and fault-tolerant. The application is...
  164. 164.A startup is hosting a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  165. 165.A company runs a web application on a fleet of Amazon EC2 instances behind an Application Load Balancer (ALB)...
  166. 166.A company is designing a highly available architecture for their e-commerce application running on AWS. The...
  167. 167.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  168. 168.A company is hosting a multi-tier web application on AWS. The application runs on Amazon EC2 instances behind...
  169. 169.A company is migrating its on-premises application to AWS. The application stores large amounts of...
  170. 170.A company is running an e-commerce application on Amazon EC2 instances behind an Application Load Balancer...
  171. 171.Your company has deployed a multi-tier web application currently hosted in the us-east-1 AWS Region. For...
  172. 172.A company is designing a highly available web application hosted on AWS. The application needs to serve users...
  173. 173.A company has deployed a web application across multiple AWS Regions to serve users with low latency. They...
  174. 174.A company is deploying a new web application that must serve global users with low latency. The application...
  175. 175.A company wants to implement a solution that can extract meaningful insights such as sentiment analysis, key...
  176. 176.A company wants to automatically analyze customer feedback from support emails to determine if the sentiment...
  177. 177.A company wants to analyze customer support emails to identify the primary topics of conversations and gain...
  178. 178.A media company wants to convert written news articles into engaging audio content to reach a broader...
  179. 179.A company has set up a VPC with two subnets: a public subnet and a private subnet. The public subnet contains...
  180. 180.You are designing a VPC with two public subnets and two private subnets for a web application. The web...
  181. 181.You have created a VPC with a public and a private subnet. An EC2 instance in the private subnet needs to...
  182. 182.Your company has an application running in a custom VPC on AWS. The application is hosted in a private subnet...
  183. 183.A company operates a mission-critical web application hosted on AWS. They need a disaster recovery strategy...
  184. 184.A gaming company needs to implement a disaster recovery strategy for their multiplayer game platform hosted...
  185. 185.A company operates a critical application on AWS. They require a disaster recovery (DR) solution that ensures...
  186. 186.An e-commerce company runs a payment processing system in a single AWS Region. To ensure business continuity,...
  187. 187.A company is designing a cloud-based e-commerce application that must handle high traffic during holiday...
  188. 188.Your company is designing a distributed e-commerce application that must handle spikes in traffic during...
  189. 189.A company is designing a highly available and scalable e-commerce application on AWS. The application needs...
  190. 190.A media company is designing a distributed system to process video uploads from users around the globe. The...
  191. 191.Your company runs an e-commerce application deployed in two AWS Regions: us-east-1 and us-west-2. The...
  192. 192.A company runs a web application with a primary Amazon RDS database instance in a single Availability Zone....
  193. 193.A company runs a mission-critical web application on Amazon EC2 instances behind an Application Load Balancer...
  194. 194.An e-commerce company is hosting its web application on Amazon EC2 instances behind an Application Load...
  195. 195.Your company is using an immutable infrastructure approach to manage its web application environments. The...
  196. 196.Your company operates a web application hosted on Amazon EC2 instances behind an Application Load Balancer....
  197. 197.A company is adopting an immutable infrastructure approach for its application deployments. The company uses...
  198. 198.A company is deploying a new web application using an immutable infrastructure approach. They want to ensure...
  199. 199.Your company is hosting a web application on Amazon EC2 instances behind an Application Load Balancer (ALB)....
  200. 200.A company is hosting a web application in a VPC. The application consists of multiple EC2 instances running...
  201. 201.A company is hosting a web application on an Amazon EC2 instance behind an Application Load Balancer (ALB)....
  202. 202.A company is hosting a web application that serves dynamic content to users. The application is deployed...
  203. 203.Your company runs a high-traffic e-commerce platform using Amazon RDS for MySQL. You have noticed a...
  204. 204.A company is running a multi-tenant application using Amazon RDS for its database. The application...
  205. 205.Your company is running an application that connects to an Amazon RDS database. Recently, the application has...
  206. 206.You are designing a high-traffic application that connects to an Amazon RDS database. You have noticed an...
  207. 207.A company is designing a disaster recovery (DR) strategy for its primary workload running on Amazon EC2. The...
  208. 208.You are designing a disaster recovery (DR) solution for a critical application deployed in AWS. The primary...
  209. 209.Your company is designing a disaster recovery solution for a web application hosted in AWS. The primary...
  210. 210.You are designing a disaster recovery (DR) architecture for a business-critical application. The application...
  211. 211.A company is designing a solution to store critical financial data that must be highly durable, replicated...
  212. 212.A company is designing a new web application that will allow users to upload and manage photos. The...
  213. 213.A company needs to store critical financial data and requires a storage solution that provides high...
  214. 214.A company needs a durable storage solution to store critical business data. The data must be replicated...
  215. 215.A company is running a microservices-based application on Amazon ECS using AWS Fargate. The application has...
  216. 216.A company has a microservices-based application running on Amazon ECS with multiple services communicating...
  217. 217.You are designing a microservices-based application running on Amazon ECS. The application is experiencing...
  218. 218.A company has a microservices-based application running on Amazon ECS, with multiple services communicating...
  219. 219.A company runs a video streaming platform and is experiencing performance issues during peak traffic hours....
  220. 220.A gaming company has deployed a multiplayer online game. The game servers are hosted on Amazon EC2 instances...
  221. 221.A company is designing a high-performing architecture for a real-time analytics application that ingests and...
  222. 222.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  223. 223.A data analytics company processes petabytes of log data daily and requires a scalable storage solution for...
  224. 224.A company is building a data analytics platform to process and store large volumes of time-series data from...
  225. 225.A media streaming company is building a video-on-demand platform that requires high throughput and low...
  226. 226.A media streaming company needs to store large volumes of video files that are accessed frequently by global...
  227. 227.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  228. 228.A company is running an e-commerce platform on AWS. The application is hosted in an Auto Scaling group of...
  229. 229.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  230. 230.A company is designing a web application that will be deployed on Amazon EC2 instances behind an Application...
  231. 231.A company operates a hybrid cloud environment and wants to ensure low-latency access to frequently accessed...
  232. 232.A company operates a highly regulated on-premises data center but wants to leverage AWS for long-term data...
  233. 233.A company operates a hybrid environment with on-premises infrastructure and AWS Cloud services. They need a...
  234. 234.A company operates a video production business and stores large media files on-premises due to high data...
  235. 235.A company is building a highly available web application that allows users to upload and retrieve large media...
  236. 236.A company is building a web application that allows users to upload and share high-resolution images. The...
  237. 237.A company is hosting a web application that serves static content, processes user-generated media files, and...
  238. 238.A company is running a web application that serves media files to users. The media files need to be stored...
  239. 239.A company is running a cloud-based application that requires storage for the following use cases: storing...
  240. 240.A company is designing a cloud-native application that requires scalable storage for unstructured data such...
  241. 241.A company is building a data analytics platform and requires a storage solution for large-scale, unstructured...
  242. 242.A media company is building a cloud-based video streaming platform. They need a scalable storage solution for...
  243. 243.A company runs a high-traffic web application that experiences unpredictable spikes in demand. They want to...
  244. 244.A company is running a web application on a fleet of Amazon EC2 instances behind an Application Load...
  245. 245.A company runs a web application that experiences unpredictable traffic spikes throughout the day. The...
  246. 246.A company runs a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). Traffic...
  247. 247.A company is hosting a web application that uses an Amazon RDS database instance for data storage. The...
  248. 248.A company is running a web application on an Amazon EC2 instance that connects to an Amazon RDS database. The...
  249. 249.A company is migrating an on-premises application to AWS. The application needs to store large amounts of...
  250. 250.You are designing an application that will run on Amazon EC2 instances within an Auto Scaling group. The...
  251. 251.A company processes large volumes of data to generate analytics reports. The data is stored in Amazon S3, and...
  252. 252.A data analytics company processes large-scale log data daily to generate reports for its clients. The...
  253. 253.A company needs to process a large number of data files for a machine learning training pipeline. The...
  254. 254.A company processes large datasets on a recurring basis to generate analytics reports. The processing...
  255. 255.A financial services company wants to deploy a latency-sensitive application for users in multiple regions...
  256. 256.An organization operates a global e-commerce platform and wants to deliver low-latency content to its users...
  257. 257.Your company is building a global e-commerce application that requires low-latency access for users across...
  258. 258.A global e-commerce company wants to serve its customers with low-latency access to their application...
  259. 259.A company is building an e-commerce platform that processes user orders. The platform needs to ensure that...
  260. 260.A company is building a distributed application that requires decoupling of components to ensure scalability...
  261. 261.A company is building a distributed application where multiple components need to communicate with each...
  262. 262.A company is building a new event-driven application where multiple microservices need to process and respond...
  263. 263.A company runs a web application that experiences unpredictable traffic patterns. During peak traffic, the...
  264. 264.A company hosts a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). Traffic...
  265. 265.A company hosts a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  266. 266.A company runs a web application that experiences variable traffic patterns throughout the day. During peak...
  267. 267.A company is developing a serverless application to process images uploaded to an Amazon S3 bucket. The...
  268. 268.An e-commerce company wants to process user-uploaded product images. The company needs a highly scalable and...
  269. 269.A company is building a serverless application to process user-uploaded images. The application needs to...
  270. 270.A company is building a serverless web application that processes images uploaded by its users. The...
  271. 271.A company is deploying a containerized application in AWS and needs to ensure high availability and...
  272. 272.A company is running a containerized web application on Amazon ECS using a Fargate launch type. The...
  273. 273.A company is running containerized applications across a fleet of Amazon ECS tasks. They want to ensure that...
  274. 274.A company runs a microservices application using containers and wants to improve scalability and high...
  275. 275.A company is running an e-commerce platform that experiences unpredictable traffic spikes during flash sales....
  276. 276.A company is building a high-traffic e-commerce platform and needs to choose a high-performing database...
  277. 277.A gaming company is building a leaderboard system for their multiplayer game with millions of active users....
  278. 278.A company is running a high-traffic e-commerce application that requires low-latency database responses and...
  279. 279.A company is running a web application that allows users to upload and retrieve images. They use Amazon S3 to...
  280. 280.A company is running a web application that stores user-uploaded images in an Amazon S3 bucket. The company...
  281. 281.A company is hosting a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  282. 282.Your company runs an e-commerce application on AWS, using an Auto Scaling group of Amazon EC2 instances...
  283. 283.A company is building a highly available web application on AWS. The application must be resilient to...
  284. 284.A company is deploying a new application and requires high availability and fault tolerance. They want to...
  285. 285.A company is designing a high-availability architecture for its application that must serve users across...
  286. 286.A company is designing a highly available web application hosted on Amazon EC2 instances in the us-east-1...
  287. 287.A company is running a high-traffic e-commerce application that uses an Amazon RDS database for its backend....
  288. 288.A company runs a high-traffic e-commerce application that frequently queries product details from an Amazon...
  289. 289.A social media platform is experiencing performance issues due to high database read volumes for frequently...
  290. 290.An e-commerce company hosts its web application on Amazon EC2 instances behind an Application Load Balancer....
  291. 291.A company is designing a new application that requires high performance and scalability. The application will...
  292. 292.A company is designing a new application that needs to store large volumes of data. The application has a...
  293. 293.A company is building a new application that requires a database to store and retrieve data. The access...
  294. 294.A company is designing a system to store and process customer data. The system has two distinct access...
  295. 295.A company is planning to migrate its on-premises relational database to Amazon RDS for PostgreSQL. The...
  296. 296.Your company is migrating a high-traffic e-commerce website to AWS. The website's backend uses a relational...
  297. 297.A company runs a highly transactional e-commerce application and uses Amazon RDS for its database backend....
  298. 298.A company is designing a high-performance application that processes large volumes of financial transactions....
  299. 299.An e-commerce company is using an Amazon RDS MySQL database to handle customer transactions. During peak...
  300. 300.A company is running a highly available application on Amazon RDS for PostgreSQL. The application has...
  301. 301.Your company has a web application hosted on Amazon ECS that connects to an Amazon RDS MySQL database. The...
  302. 302.Your company is planning to migrate its on-premises database infrastructure to AWS. Currently, the database...
  303. 303.A company wants to migrate its on-premises Oracle database to AWS with minimal downtime. The company also...
  304. 304.A company is planning to migrate its on-premises Oracle database to AWS. The database needs to be migrated...
  305. 305.A company is planning to migrate its on-premises Oracle database to AWS. The team wants to minimize the...
  306. 306.A company has a mission-critical web application running on Amazon RDS MySQL. As part of their disaster...
  307. 307.A company runs a MySQL database on Amazon RDS to support their e-commerce platform. They experience high read...
  308. 308.Your company runs a global e-commerce platform that uses an Amazon RDS MySQL database to store customer and...
  309. 309.An e-commerce company needs a database solution to handle product catalog data that includes hierarchical...
  310. 310.A company is building a real-time analytics platform that processes high-velocity data streams. They need a...
  311. 311.A company is developing a high-performance web application that requires low-latency data retrieval. The...
  312. 312.A company is developing a new e-commerce application that requires high scalability, low-latency access to...
  313. 313.An e-commerce company experiences intermittent latency issues with its application hosted on AWS. The...
  314. 314.A company hosts a web application on multiple Amazon EC2 instances behind an Application Load Balancer (ALB)...
  315. 315.A company is building a globally distributed application that requires low-latency access for users across...
  316. 316.A company is deploying a multi-tier web application on AWS. They want the application to handle a variable...
  317. 317.A company is migrating its on-premises application to AWS and needs to ensure high availability for its...
  318. 318.A company is migrating its on-premises application to AWS. The application requires high availability and...
  319. 319.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  320. 320.A company is running a web application on an Auto Scaling group of Amazon EC2 instances behind an Application...
  321. 321.A company has a global user base and runs a web application hosted in a single AWS Region. The application...
  322. 322.A global e-commerce company serves users across multiple continents. They require low-latency access to their...
  323. 323.A global e-commerce company needs to improve the performance and availability of its website for users...
  324. 324.Your company operates a global e-commerce platform with users accessing it from multiple regions worldwide....
  325. 325.You are designing the network architecture for a highly available e-commerce application hosted on AWS. The...
  326. 326.You are designing a multi-tier application hosted in AWS. The application has a front-end web tier, an...
  327. 327.An organization is deploying a web application in a VPC with the following requirements: 1. The application...
  328. 328.A company is designing a new VPC network architecture in AWS to host a multi-tier web application. The...
  329. 329.A company is hosting a web application that serves both static and dynamic content to its users. The...
  330. 330.A company is building a web application that handles both HTTP and HTTPS traffic for its users. They want to...
  331. 331.You are tasked with designing a highly available web application on AWS. The application requires routing...
  332. 332.A company is hosting a web application that serves different types of content to users. They want to use an...
  333. 333.A company wants to securely connect its on-premises data center to its AWS VPC for hybrid cloud workloads....
  334. 334.A company is running a hybrid cloud environment and needs to establish a secure and low-latency connection...
  335. 335.Your company is planning to deploy a hybrid architecture where workloads hosted on-premises need to securely...
  336. 336.A company needs to establish a secure and low-latency connection between their on-premises data center and...
  337. 337.A retail company wants to perform real-time data ingestion and transformation for clickstream data generated...
  338. 338.A company needs to ingest and transform massive amounts of real-time streaming data from IoT sensors deployed...
  339. 339.A retail company needs to ingest and transform real-time streaming data from multiple sources, such as...
  340. 340.A company needs to ingest and process streaming data from IoT devices in real-time. The data must be...
  341. 341.A company is migrating its on-premises web application to AWS and wants to ensure high availability and fault...
  342. 342.A company is running an e-commerce application on Amazon EC2 instances behind an Application Load Balancer...
  343. 343.A company is hosting a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  344. 344.A company is hosting a multi-tier web application on AWS. The application uses an Application Load Balancer...
  345. 345.A retail company collects and stores transactional data from its point-of-sale (POS) systems in an Amazon S3...
  346. 346.A retail company has a large dataset of sales transactions stored in Amazon S3. They want to perform ad hoc...
  347. 347.A retail company wants to analyze transactional data stored in Amazon S3 for insights. The company needs a...
  348. 348.A company has a large dataset stored in Amazon S3. They want to perform ad-hoc SQL queries on this data...
  349. 349.A company needs to ingest data from IoT devices deployed across multiple regions. The data is generated...
  350. 350.A company needs to ingest large volumes of log data from thousands of IoT devices deployed across multiple...
  351. 351.A company needs to ingest data from IoT sensors deployed across multiple locations. The data must be ingested...
  352. 352.A company needs to ingest real-time data from IoT sensors deployed across multiple locations. The data must...
  353. 353.A company needs to migrate 80 TB of on-premises data to Amazon S3. The data transfer must minimize downtime...
  354. 354.A company has an on-premises file storage system and wants to migrate a large amount of data to Amazon S3...
  355. 355.A company is migrating an on-premises file storage system to AWS. They need to transfer petabytes of data...
  356. 356.A company is migrating its on-premises file storage solution to AWS. They need to transfer several terabytes...
  357. 357.A retail company collects customer purchase data from multiple sources, including on-premises databases and...
  358. 358.A retail company collects transactional data from its point-of-sale systems and stores it in Amazon S3 in...
  359. 359.A company has large volumes of semi-structured data stored in Amazon S3, such as JSON and CSV files. They...
  360. 360.Your company is building a data lake on AWS to analyze customer transaction data. The data arrives daily in...
  361. 361.A company is using Amazon Kinesis Data Streams to process real-time data from IoT devices. To ensure secure...
  362. 362.A company uses Amazon Kinesis Data Streams to ingest real-time data from IoT devices. The data ingestion...
  363. 363.A company is using Amazon Kinesis Data Streams to ingest real-time streaming data from IoT devices deployed...
  364. 364.A company is ingesting large volumes of data into an Amazon S3 bucket through an application running on...
  365. 365.A company is running a high-traffic e-commerce website and has noticed that the current Amazon RDS database...
  366. 366.A company is planning to deploy a high-performance database application on AWS. The database requires...
  367. 367.A company is hosting a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  368. 368.A company is planning to deploy a new analytics application on AWS. The application requires low-latency...
  369. 369.A company needs to process a continuous stream of data in real-time from IoT sensors installed in their...
  370. 370.A company is building a real-time analytics dashboard that processes high-velocity streaming data from IoT...
  371. 371.A company wants to process and analyze real-time streaming data generated from IoT sensors deployed in a...
  372. 372.A financial services company wants to collect, process, and analyze real-time stock price data from multiple...
  373. 373.A startup is hosting a serverless web application on AWS and wants to optimize costs while maintaining...
  374. 374.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  375. 375.A startup is running a web application on Amazon EC2 instances in a single Availability Zone. They store...
  376. 376.A company is running a fleet of Amazon EC2 instances in an Auto Scaling group to handle its e-commerce...
  377. 377.A company needs to store a large volume of infrequently accessed log data for regulatory compliance purposes....
  378. 378.A company is running a web application that stores user-uploaded images in Amazon S3. The application...
  379. 379.A company needs to store large volumes of log data generated by its application. The data will be accessed...
  380. 380.A company is looking to optimize its storage costs for a new data analytics solution. The solution requires...
  381. 381.A company is running a two-tier application on AWS. The application consists of a web tier hosted on Amazon...
  382. 382.A company is running a web application that serves dynamic content to users. The application is hosted on...
  383. 383.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  384. 384.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer. The...
  385. 385.A company is storing large datasets in an Amazon S3 bucket configured with the 'Requester Pays' option. They...
  386. 386.You have been tasked with setting up an S3 bucket for a public dataset that requires the requester to pay for...
  387. 387.A company wants to share a large dataset stored in an Amazon S3 bucket with external researchers. To manage...
  388. 388.A company has a large dataset stored in an S3 bucket configured with the 'Requester Pays' feature. They want...
  389. 389.Your company has a multi-account AWS environment managed through AWS Organizations. As a Solutions Architect,...
  390. 390.Your organization has multiple AWS accounts and you want to track costs for different projects across these...
  391. 391.A company uses AWS Organizations with multiple accounts for different departments. The finance team wants to...
  392. 392.A company has multiple AWS accounts under an AWS Organizations structure and wants to manage its cloud costs...
  393. 393.An e-commerce company uses various AWS services and has noticed a sudden spike in their monthly AWS bill....
  394. 394.A startup company has recently migrated its applications to AWS and wants to maintain control over its cloud...
  395. 395.A company has recently migrated its workloads to AWS and wants to monitor and manage its monthly cloud costs...
  396. 396.A company wants to monitor its monthly AWS spending and ensure it does not exceed a defined budget. The team...
  397. 397.A company is designing a new application that requires low-latency shared file storage for multiple Amazon...
  398. 398.A company is running a web application that allows users to upload and share high-resolution images. The...
  399. 399.A company needs to set up a shared file system for its application servers to store and access configuration...
  400. 400.A company needs to store large volumes of unstructured data such as images and videos for its content...
  401. 401.A company processes large amounts of critical data daily and stores it in an Amazon S3 bucket. The company...
  402. 402.A company runs a critical e-commerce application on Amazon RDS for PostgreSQL. To ensure the application's...
  403. 403.A company needs to back up its Amazon RDS database to ensure minimal data loss in the event of a failure....
  404. 404.A company is running a critical application on Amazon EC2 instances in a single Availability Zone. They want...
  405. 405.An e-commerce company is running a high-transactional web application on Amazon EC2 instances. The...
  406. 406.A company is running a batch processing workload that requires high throughput for large, sequential data...
  407. 407.A company is running a high-performance database workload on Amazon EC2 instances and requires consistent...
  408. 408.A company is running a database workload on an Amazon EC2 instance and requires a storage solution that...
  409. 409.A company is using Amazon S3 to store large volumes of data. Some of the data needs to be retained for...
  410. 410.Your company is using Amazon S3 to store vast amounts of data, including logs that are no longer actively...
  411. 411.A company stores large volumes of log data in an Amazon S3 bucket. The data is frequently accessed for the...
  412. 412.Your company stores critical data in an Amazon S3 bucket for analytics. Compliance requirements mandate that...
  413. 413.A company has an on-premises file storage system used for application data and wants to migrate to AWS while...
  414. 414.A company has an on-premises file storage system that needs to be integrated with AWS to provide low-latency...
  415. 415.A company runs a hybrid cloud architecture where a critical on-premises application requires low-latency...
  416. 416.A large enterprise wants to migrate its on-premises file storage to AWS while maintaining low-latency access...
  417. 417.A company is building a data lake on AWS to store large amounts of structured and unstructured data. The data...
  418. 418.A company is building a data analytics application that ingests large volumes of data and processes it to...
  419. 419.A company runs a web application that stores user-uploaded images in an Amazon S3 bucket. The application has...
  420. 420.A company is designing a photo-sharing application where users can upload images. The application stores...
  421. 421.A company is migrating its on-premises data to Amazon S3 and wants to minimize costs for storing infrequently...
  422. 422.A media company stores large volumes of video files in Amazon S3. These files are infrequently accessed after...
  423. 423.A company uses Amazon S3 to store large volumes of log files that are rarely accessed but must be retained...
  424. 424.An e-commerce company needs to store large amounts of customer transaction logs for compliance purposes....
  425. 425.A company is building a new application that requires a scalable, durable, and cost-effective storage...
  426. 426.A company is designing a new application that requires high-performance storage for a database, shared access...
  427. 427.A company is building a data lake to store large volumes of unstructured data, such as images and videos. The...
  428. 428.A company is designing a new cloud-based application that requires high-speed, low-latency access to data for...
  429. 429.A company runs a web application that experiences unpredictable spikes in traffic. The application is...
  430. 430.A startup is building a web application that experiences variable traffic patterns. During peak hours, the...
  431. 431.A company runs a web application that experiences unpredictable traffic patterns. During peak times, the...
  432. 432.A startup is running a web application on Amazon EC2 instances. The application has variable traffic...
  433. 433.A company is running a critical web application on Amazon EC2 instances behind an Elastic Load Balancer...
  434. 434.A company is running a highly available web application in a VPC. The application is hosted on Amazon EC2...
  435. 435.An e-commerce company is hosting its web application on Amazon EC2 instances and stores product images in an...
  436. 436.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  437. 437.A company uses AWS Organizations to manage multiple AWS accounts. They want to allocate costs for specific...
  438. 438.A company uses AWS Organizations to manage multiple AWS accounts. They want to allocate costs to different...
  439. 439.A company has a multi-account setup in AWS Organizations and wants to track the costs incurred by each...
  440. 440.A company uses multiple AWS accounts for different departments and wants to accurately assign costs to each...
  441. 441.A company wants to monitor and manage its AWS costs effectively. They need a solution to forecast future...
  442. 442.A company wants to manage its AWS costs effectively. They need a tool to analyze historical spend patterns,...
  443. 443.A company wants to monitor and control its AWS costs proactively. The finance team needs to set up alerts...
  444. 444.A company wants to monitor and control its AWS cloud spending. The finance team needs a tool to set up...
  445. 445.Your company is planning to deploy a highly available web application on AWS. The application must run in...
  446. 446.You are designing a highly available web application hosted on AWS. The application must handle unpredictable...
  447. 447.A company is deploying a global application with users in North America, Europe, and Asia. The application...
  448. 448.A company is designing a highly available application that will be deployed in AWS. The application must...
  449. 449.A financial services company is running a batch processing workload that is extremely cost-sensitive and can...
  450. 450.A company runs a web application on a fleet of Amazon EC2 instances. The application experiences predictable...
  451. 451.A company needs to run a batch processing job on a fleet of EC2 instances for several hours. The job is not...
  452. 452.A company runs a set of batch processing workloads on Amazon EC2 instances. These workloads are non-critical...
  453. 453.A company is designing a distributed video streaming application for its global audience. The application...
  454. 454.A company processes large volumes of real-time sensor data from IoT devices deployed globally. The company...
  455. 455.A company is building an IoT application that collects sensor data from devices located in remote areas with...
  456. 456.A company is designing an IoT solution to process video data from thousands of surveillance cameras deployed...
  457. 457.A company operates a manufacturing facility in a remote location with limited internet connectivity. They...
  458. 458.A manufacturing company operates in a remote location with limited internet connectivity. They want to run...
  459. 459.A company operates a high-latency, low-bandwidth facility in a remote location where cloud connectivity is...
  460. 460.A company needs to run a low-latency application that processes sensitive customer data in a location with...
  461. 461.A company is running a high-performance computing (HPC) workload that requires low latency and high network...
  462. 462.A company is running a data processing application that requires high computational power and low latency for...
  463. 463.A gaming company runs a multiplayer online game that requires high-performance compute resources for...
  464. 464.A company is running a batch processing application that handles large datasets and requires high memory...
  465. 465.A company is running a monolithic application on a single Amazon EC2 instance that experiences unpredictable...
  466. 466.A company is running a monolithic application on a fleet of EC2 instances, but they are experiencing high...
  467. 467.A company is designing a new web application that experiences unpredictable traffic spikes. They want to...
  468. 468.A startup is running a web application that experiences unpredictable traffic spikes. The application...
  469. 469.Your company runs a web application on Amazon EC2 instances behind an Application Load Balancer. Traffic to...
  470. 470.A company runs an e-commerce application on Amazon EC2 instances behind an Application Load Balancer (ALB)....
  471. 471.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer. The...
  472. 472.An e-commerce company is using an Amazon EC2 instance to host their application. During peak holiday seasons,...
  473. 473.A startup is developing a new analytics platform for processing user behavior data. They expect high read and...
  474. 474.A company needs to design a cost-optimized database solution for their e-commerce application. The workload...
  475. 475.A company runs a high-traffic e-commerce platform that uses a relational database for its transactional data....
  476. 476.A small e-commerce company is experiencing rapid growth and wants to optimize the cost of their database...
  477. 477.A company is running a web application on a fleet of Amazon EC2 instances behind an Application Load Balancer...
  478. 478.You are designing a highly available web application for your organization using AWS. The application...
  479. 479.A company is hosting a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  480. 480.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  481. 481.A company is using AWS Organizations to manage multiple AWS accounts. They want to allocate costs to...
  482. 482.Your organization uses AWS Organizations with multiple accounts and wants to implement better cost tracking...
  483. 483.Your company uses AWS Organizations to manage multiple accounts. As the Solutions Architect, you need to...
  484. 484.A company is using AWS Organizations to manage multiple AWS accounts. The finance team wants to track the...
  485. 485.A company wants to monitor and control its AWS spending. They require a tool to set a specific dollar limit...
  486. 486.A company wants to monitor and control its AWS costs effectively. They need the ability to: 1) forecast...
  487. 487.A company wants to monitor its AWS spending and set alerts when costs exceed their allocated monthly budget...
  488. 488.A company has recently migrated its workloads to AWS and wants to monitor and manage its cloud spending...
  489. 489.An e-commerce company is experiencing increased latency on their product catalog API due to high traffic. The...
  490. 490.A company is running an e-commerce application on AWS. The application experiences high read traffic for...
  491. 491.A company runs a web application that frequently queries a database for product details. The application is...
  492. 492.An e-commerce company is experiencing high latency when retrieving frequently accessed product data from its...
  493. 493.A company needs to store sensitive financial data in Amazon S3 for compliance purposes. Their data retention...
  494. 494.A financial services company is required by regulatory compliance to retain transaction logs for 7 years but...
  495. 495.A financial services company needs to retain transaction logs for a period of 7 years to comply with...
  496. 496.A company is required to retain application logs for 5 years to meet compliance requirements. The logs are...
  497. 497.A company is planning to migrate its application to AWS, and the application requires a database with...
  498. 498.A company is using Amazon DynamoDB to store product catalog data. The workload involves frequent read and...
  499. 499.Your company is deploying a new e-commerce platform, and the team has decided to use Amazon DynamoDB to store...
  500. 500.An e-commerce company is planning to migrate its on-premises relational database to Amazon Aurora. The...
  501. 501.A company is using an Amazon RDS PostgreSQL database for its production workload. They are experiencing high...
  502. 502.A company is running a multi-tier application on AWS. The application uses an Amazon RDS PostgreSQL database...
  503. 503.An e-commerce company is running an application using an Amazon RDS MySQL database. During peak traffic...
  504. 504.A company has a web application hosted on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  505. 505.A company is planning to migrate its on-premises Oracle database to AWS. The database contains critical...
  506. 506.A company is planning to migrate its on-premises databases to AWS. They have a MySQL database and want to...
  507. 507.A company is planning to migrate its on-premises database to AWS. The source database is PostgreSQL, and the...
  508. 508.A company is running a MySQL database on Amazon RDS in their production environment. They want to migrate...
  509. 509.Your company has a production workload running on an Amazon RDS MySQL database. The application experiences...
  510. 510.An e-commerce company is using Amazon RDS for MySQL to manage its transactional database. The application...
  511. 511.Your company runs a web application backed by an Amazon RDS MySQL database in a single Availability Zone. The...
  512. 512.A company uses an Amazon RDS MySQL database for their online transaction processing (OLTP) application. They...
  513. 513.A retail company needs to implement a database solution to handle their online store's transactional data....
  514. 514.A company is designing a new application that requires a database to store user session data. The data is...
  515. 515.A startup is building a ride-sharing application that requires low-latency access to real-time ride data,...
  516. 516.A company is building an e-commerce application that requires high availability, low-latency reads and...
  517. 517.An e-commerce company is designing a network architecture for its multi-region application. The company wants...
  518. 518.A company is designing a network architecture for a new web application hosted in AWS. The application will...
  519. 519.A company is running a web application in a VPC that needs to communicate with an S3 bucket in the same...
  520. 520.A company is running a multi-tier application in AWS. The front-end web servers are hosted in an Auto Scaling...
  521. 521.A company is migrating its on-premises application to AWS. The application consists of a web tier, an...
  522. 522.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  523. 523.A company needs to host a static website on AWS and ensure it is both highly available and cost-efficient....
  524. 524.A company is running a critical web application that relies on an Amazon RDS database in a single...
  525. 525.Your organization has multiple AWS accounts set up under a consolidated billing structure using AWS...
  526. 526.A company uses AWS Organizations and has consolidated billing enabled for multiple AWS accounts. The finance...
  527. 527.Your company uses AWS Organizations to manage multiple AWS accounts. The finance team has requested a...
  528. 528.Your company has recently adopted AWS Organizations to manage a multi-account setup. As a Solutions...
  529. 529.A company wants to optimize its cloud spending and monitor its costs proactively. They need a solution to set...
  530. 530.A company wants to monitor their AWS spending proactively and ensure they do not exceed their monthly budget....
  531. 531.A company wants to track its AWS spending trends over time, identify usage patterns, and forecast future...
  532. 532.A company has noticed an unexpected increase in its monthly AWS costs and wants to identify the services...
  533. 533.A company has deployed a web application that serves content to users globally. The application is hosted on...
  534. 534.A company is hosting a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  535. 535.A company is running a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The...
  536. 536.An e-commerce company is hosting its web application on a fleet of Amazon EC2 instances behind an Application...
  537. 537.A company is running its workloads in a public VPC with private subnets to host application servers. These...
  538. 538.A company has an application running in a private subnet within a VPC. The application needs to download...
  539. 539.A company is running a web application in a public subnet of a VPC, and the application needs to fetch data...
  540. 540.A company is running its workloads in a private subnet within a VPC and needs to allow instances in the...
  541. 541.A company wants to establish a secure network connection between their on-premises data center and their AWS...
  542. 542.Your company has a hybrid cloud architecture. The on-premises data center needs to communicate securely with...
  543. 543.A company wants to securely connect its on-premises data center to its resources in AWS. The solution must...
  544. 544.A company has deployed its applications in a VPC within AWS and wants to establish secure, low-latency...
  545. 545.A company is running multi-tier applications across multiple VPCs in different AWS Regions. They want to...
  546. 546.A company has multiple VPCs in the same AWS Region. The VPCs are used by different departments, and they need...
  547. 547.A company has multiple Amazon VPCs in the same AWS Region that need to communicate with each other. These...
  548. 548.A company has two VPCs in the same AWS Region: VPC-A and VPC-B. VPC-A hosts a private application, while...
  549. 549.A company is hosting a multi-region web application on AWS and needs to ensure that users are routed to the...
  550. 550.A company is launching a web application that will be hosted on Amazon EC2 instances and must be accessible...
  551. 551.A company hosts a highly trafficked e-commerce website that needs to resolve domain names quickly and improve...
  552. 552.A company is hosting a web application on Amazon EC2 instances behind an Application Load Balancer (ALB)....
  553. 553.

SAA-C03 exam dumps FAQ

Are these SAA-C03 dumps real exam questions?

No. These are original practice questions written to the AWS Certified Solutions Architect - Associate exam objectives, not questions copied from a live exam. Memorising leaked questions violates Amazon Web Services's candidate agreement and stops working the moment the question pool rotates. Use this bank to check your understanding of each domain and to find the topics you still need to study.

How many SAA-C03 practice questions are there?

553 questions, each with the correct answer, an explanation of the answer, and a note on why every other option is wrong. The first 10 are on this page and every question has its own page linked below.

Are the SAA-C03 exam dumps free?

Yes. Every question, answer and explanation on this page and the linked question pages is free to read without an account. A free HydraNode account adds timed practice exams, scoring and progress tracking across attempts.

How do I take a timed SAA-C03 practice test?

Sign in and start the AWS Certified Solutions Architect - Associate exam on HydraNode. A session gives you 65 questions drawn from this bank in 130 minutes, then a score report with a per-question review.

What topics does the SAA-C03 exam cover?

The official exam domains are: Design Secure Architectures; Design Resilient Architectures; Design High-Performing Architectures; Design Cost-Optimized Architectures.