Question : What is the maximum number of S buckets allowed per AWS account?
1. 50 2. 150 3. 100 4. 1000
Correct Answer : 3
Explanation: AWS accounts are allowed 100 buckets per account (not region).
Question : Company C has recently launched an online commerce site for bicycles on AWS. They have a "Product" DynamoDB table that stores details for each bicycle, such as, manufacturer, color, price, quantity and size to display in the online store. Due to customer demand, they want to include an image for each bicycle along with the existing details. Which approach below provides the least impact to provisioned throughput on the "Product" table?
1. Serialize the image and store it in multiple DynamoDB tables 2. Create an "Images" DynamoDB table to store the Image with a foreign key constraint to the "Product" table 3. Add an image data type to the "Product" table to store the images in binary format 4. Store the images in Amazon S3 and add an S3 URL pointer to the "Product" table item for each image
Correct Answer : 4
Explanation: Use S3.
Long answer: DynamoDB limits individual records to 64 KB, so you probably can't use DynamoDB unless your images are tiny anyway. HTTP compatibility, so you can point other people or applications straight to the bucket Hugely lower storage costs Pay per request, not for provisioned throughput (640 KB/s of write capacity in DynamoDB costs $460/month, versus a flat $0.01 per 1000 uploads in S3)
Question : Your application is trying to upload a GB file to Simple Storage Service and receive a "Your proposed upload exceeds the maximum allowed object size." error message. What is a possible solution for this?
1. Simple Storage Service objects are limited to 5 GB 2. Use the multipart upload API for this object 3. Use the large object upload API for this object 4. Contact support to increase your object size limit
Correct Answer : 2
Explanation: Multipart upload is required for objects of 5GB in size or larger.
1. Each region has multiple, isolated locations known as Availability Zones. 2. Each Availability Zones has multiple, isolated locations known as region . 3. Each Availability Zones is a separate geographic area 4. 1 and 3 5. 2 and 3