20:00

Free Test
/ 10

Quiz

1/10
A company collects temperature, humidity, and atmospheric pressure data in cities across multiple continents. The average volume of data collected per site each day is 500 GB. Each site has a high- speed internet connection. The company's weather forecasting applications are based in a single Region and analyze the data daily. What is the FASTEST way to aggregate data from all of these global sites?
Select the answer
1 correct answer
A.
Enable Amazon S3 Transfer Acceleration on the destination bucket. Use multipart uploads to directly upload site data to the destination bucket.
B.
Upload site data to an Amazon S3 bucket in the closest AWS Region. Use S3 cross-Region replication to copy objects to the destination bucket.
C.
Schedule AWS Snowball jobs daily to transfer data to the closest AWS Region. Use S3 cross-Region replication to copy objects to the destination bucket.
D.
Upload the data to an Amazon EC2 instance in the closest Region. Store the data in an Amazon Elastic Block Store (Amazon EBS) volume. Once a day take an EBS snapshot and copy it to the centralized Region. Restore the EBS volume in the centralized Region and run an analysis on the data daily.

Quiz

2/10
A company needs the ability to analyze the log files of its proprietary application. The logs are stored in JSON format in an Amazon S3 bucket Queries will be simple and will run on-demand A solutions architect needs to perform the analysis with minimal changes to the existing architecture What should the solutions architect do to meet these requirements with the LEAST amount of operational overhead?
Select the answer
1 correct answer
A.
Use Amazon Redshift to load all the content into one place and run the SQL queries as needed
B.
Use Amazon CloudWatch Logs to store the logs Run SQL queries as needed from the Amazon CloudWatch console
C.
Use Amazon Athena directly with Amazon S3 to run the queries as needed
D.
Use AWS Glue to catalog the logs Use a transient Apache Spark cluster on Amazon EMR to run the SQL queries as needed

Quiz

3/10
A company uses AWS Organizations to manage multiple AWS accounts for different departments. The management account has an Amazon S3 bucket that contains project reports. The company wants to limit access to this S3 bucket to only users of accounts within the organization in AWS Organizations. Which solution meets these requirements with the LEAST amount of operational overhead?
Select the answer
1 correct answer
A.
Add the aws:PrincipalOrgID global condition key with a reference to the organization ID to the S3 bucket policy.
B.
Create an organizational unit (OU) for each department. Add the aws:PrincipalOrgPaths global condition key to the S3 bucket policy.
C.
Use AWS CloudTrail to monitor the CreateAccount, InviteAccountToOrganization, LeaveOrganization, and RemoveAccountFromOrganization events. Update the S3 bucket policy accordingly.
D.
Tag each user that needs access to the S3 bucket. Add the aws:PrincipalTag global condition key to the S3 bucket policy.

Quiz

4/10
An application runs on an Amazon EC2 instance in a VPC. The application processes logs that are stored in an Amazon S3 bucket. The EC2 instance needs to access the S3 bucket without connectivity to the internet. Which solution will provide private network connectivity to Amazon S3?
Select the answer
1 correct answer
A.
Create a gateway VPC endpoint to the S3 bucket.
B.
Stream the logs to Amazon CloudWatch Logs. Export the logs to the S3 bucket.
C.
Create an instance profile on Amazon EC2 to allow S3 access.
D.
Create an Amazon API Gateway API with a private link to access the S3 endpoint.

Quiz

5/10
A company is hosting a web application on AWS using a single Amazon EC2 instance that stores user- uploaded documents in an Amazon EBS volume. For better scalability and availability, the company duplicated the architecture and created a second EC2 instance and EBS volume in another Availability Zone placing both behind an Application Load Balancer After completing this change, users reported that, each time they refreshed the website, they could see one subset of their documents or the other, but never all of the documents at the same time. What should a solutions architect propose to ensure users see all of their documents at once?
Select the answer
1 correct answer
A.
Copy the data so both EBS volumes contain all the documents.
B.
Configure the Application Load Balancer to direct a user to the server with the documents
C.
Copy the data from both EBS volumes to Amazon EFS Modify the application to save new documents to Amazon EFS
D.
Configure the Application Load Balancer to send the request to both servers Return each document from the correct server.

Quiz

6/10
A company uses NFS to store large video files in on-premises network attached storage. Each video file ranges in size from 1MB to 500 GB. The total storage is 70 TB and is no longer growing. The company decides to migrate the video files to Amazon S3. The company must migrate the video files as soon as possible while using the least possible network bandwidth. Which solution will meet these requirements?
Select the answer
1 correct answer
A.
Create an S3 bucket Create an 1AM role that has permissions to write to the S3 bucket. Use the AWS CLI to copy all files locally to the S3 bucket.
B.
Create an AWS Snowball Edge job. Receive a Snowball Edge device on premises. Use the Snowball Edge client to transfer data to the device. Return the device so that AWS can import the data into Amazon S3.
C.
Deploy an S3 File Gateway on premises. Create a public service endpoint to connect to the S3 File Gateway Create an S3 bucket Create a new NFS file share on the S3 File Gateway Point the new file share to the S3 bucket. Transfer the data from the existing NFS file share to the S3 File Gateway.
D.
Set up an AWS Direct Connect connection between the on-premises network and AWS. Deploy an S3 File Gateway on premises. Create a public virtual interlace (VIF) to connect to the S3 File Gateway. Create an S3 bucket. Create a new NFS file share on the S3 File Gateway. Point the new file share to the S3 bucket. Transfer the data from the existing NFS file share to the S3 File Gateway.

Quiz

7/10
A company has an application that ingests incoming messages. These messages are then quickly consumed by dozens of other applications and microservices. The number of messages varies drastically and sometimes spikes as high as 100,000 each second. The company wants to decouple the solution and increase scalability. Which solution meets these requirements?
Select the answer
1 correct answer
A.
Persist the messages to Amazon Kinesis Data Analytics. All the applications will read and process the messages.
B.
Deploy the application on Amazon EC2 instances in an Auto Scaling group, which scales the number of EC2 instances based on CPU metrics.
C.
Write the messages to Amazon Kinesis Data Streams with a single shard. All applications will read from the stream and process the messages.
D.
Publish the messages to an Amazon Simple Notification Service (Amazon SNS) topic with one or more Amazon Simple Queue Service (Amazon SQS) subscriptions. All applications then process the messages from the queues.

Quiz

8/10
A company is migrating a distributed application to AWS The application serves variable workloads The legacy platform consists of a primary server trial coordinates jobs across multiple compute nodes The company wants to modernize the application with a solution that maximizes resiliency and scalability How should a solutions architect design the architecture to meet these requirements?
Select the answer
1 correct answer
A.
Configure an Amazon Simple Queue Service (Amazon SQS) queue as a destination for the jobs Implement the compute nodes with Amazon EC2 instances that are managed in an Auto Scaling group. Configure EC2 Auto Scaling to use scheduled scaling
B.
Configure an Amazon Simple Queue Service (Amazon SQS) queue as a destination for the jobs Implement the compute nodes with Amazon EC2 Instances that are managed in an Auto Scaling group Configure EC2 Auto Scaling based on the size of the queue
C.
Implement the primary server and the compute nodes with Amazon EC2 instances that are managed In an Auto Scaling group. Configure AWS CloudTrail as a destination for the fobs Configure EC2 Auto Scaling based on the load on the primary server
D.
implement the primary server and the compute nodes with Amazon EC2 instances that are managed in an Auto Scaling group Configure Amazon EventBridge (Amazon CloudWatch Events) as a destination for the jobs Configure EC2 Auto Scaling based on the load on the compute nodes

Quiz

9/10
A company is running an SMB file server in its data center. The file server stores large files that are accessed frequently for the first few days after the files are created. After 7 days the files are rarely accessed. The total data size is increasing and is close to the company's total storage capacity. A solutions architect must increase the company's available storage space without losing low-latency access to the most recently accessed files. The solutions architect must also provide file lifecycle management to avoid future storage issues. Which solution will meet these requirements?
Select the answer
1 correct answer
A.
Use AWS DataSync to copy data that is older than 7 days from the SMB file server to AWS.
B.
Create an Amazon S3 File Gateway to extend the company's storage space. Create an S3 Lifecycle policy to transition the data to S3 Glacier Deep Archive after 7 days.
C.
Create an Amazon FSx for Windows File Server file system to extend the company's storage space.
D.
Install a utility on each user's computer to access Amazon S3. Create an S3 Lifecycle policy to transition the data to S3 Glacier Flexible Retrieval after 7 days.

Quiz

10/10
A company is building an ecommerce web application on AWS. The application sends information about new orders to an Amazon API Gateway REST API to process. The company wants to ensure that orders are processed in the order that they are received. Which solution will meet these requirements?
Select the answer
1 correct answer
A.
Use an API Gateway integration to publish a message to an Amazon Simple Notification Service (Amazon SNS) topic when the application receives an order. Subscribe an AWS Lambda function to the topic to perform processing.
B.
Use an API Gateway integration to send a message to an Amazon Simple Queue Service (Amazon SQS) FIFO queue when the application receives an order. Configure the SQS FIFO queue to invoke an AWS Lambda function for processing.
C.
Use an API Gateway authorizer to block any requests while the application processes an order.
D.
Use an API Gateway integration to send a message to an Amazon Simple Queue Service (Amazon SQS) standard queue when the application receives an order. Configure the SQS standard queue to invoke an AWS Lambda function for processing.
Looking for more questions?Buy now

Amazon-SAA-C03 Practice test unlocks all online simulator questions

Thank you for choosing the free version of the Amazon-SAA-C03 practice test! Further deepen your knowledge on Amazon Simulator; by unlocking the full version of our Amazon-SAA-C03 Simulator you will be able to take tests with over 219 constantly updated questions and easily pass your exam. 98% of people pass the exam in the first attempt after preparing with our 219 questions.

BUY NOW

What to expect from our Amazon-SAA-C03 practice tests and how to prepare for any exam?

The Amazon-SAA-C03 Simulator Practice Tests are part of the Amazon Database and are the best way to prepare for any Amazon-SAA-C03 exam. The Amazon-SAA-C03 practice tests consist of 219 questions and are written by experts to help you and prepare you to pass the exam on the first attempt. The Amazon-SAA-C03 database includes questions from previous and other exams, which means you will be able to practice simulating past and future questions. Preparation with Amazon-SAA-C03 Simulator will also give you an idea of the time it will take to complete each section of the Amazon-SAA-C03 practice test . It is important to note that the Amazon-SAA-C03 Simulator does not replace the classic Amazon-SAA-C03 study guides; however, the Simulator provides valuable insights into what to expect and how much work needs to be done to prepare for the Amazon-SAA-C03 exam.

BUY NOW

Amazon-SAA-C03 Practice test therefore represents an excellent tool to prepare for the actual exam together with our Amazon practice test . Our Amazon-SAA-C03 Simulator will help you assess your level of preparation and understand your strengths and weaknesses. Below you can read all the quizzes you will find in our Amazon-SAA-C03 Simulator and how our unique Amazon-SAA-C03 Database made up of real questions:

Info quiz:

  • Quiz name:Amazon-SAA-C03
  • Total number of questions:219
  • Number of questions for the test:50
  • Pass score:80%

You can prepare for the Amazon-SAA-C03 exams with our mobile app. It is very easy to use and even works offline in case of network failure, with all the functions you need to study and practice with our Amazon-SAA-C03 Simulator.

Use our Mobile App, available for both Android and iOS devices, with our Amazon-SAA-C03 Simulator . You can use it anywhere and always remember that our mobile app is free and available on all stores.

Our Mobile App contains all Amazon-SAA-C03 practice tests which consist of 219 questions and also provide study material to pass the final Amazon-SAA-C03 exam with guaranteed success. Our Amazon-SAA-C03 database contain hundreds of questions and Amazon Tests related to Amazon-SAA-C03 Exam. This way you can practice anywhere you want, even offline without the internet.

BUY NOW