MCQs > IT & Programming > Amazon Web Services (AWS) MCQs > Basic Amazon Web Services (AWS) MCQs

Basic Amazon Web Services (AWS) MCQ

1. Benefit of using S3 Glacier?

Answer

Correct Answer: Cost

Note: This Question is unanswered, help us to find answer for this one

2. Ou created a VPC that has a public subnet and a private subnet. A web server was placed in the public subnet and a database server was placed in the private subnet. The web server is able to connect to the database server; however, the database server at 10.0.1.2 is unable to get software updates. What is the cause of this issue?

Answer

Correct Answer: There is no NAT gateway for the private subnet, so the database server has no routes that give it public internet access to download software updates.

Note: This Question is unanswered, help us to find answer for this one

3. How do you assign an Elastic IP to several EC2 instances?

Answer

Correct Answer: An elastic IP cannot be assigned to multiple EC2 instances. It can only be assosiated to a single EC2 instance.

Note: This Question is unanswered, help us to find answer for this one

4. You have enabled Multi-Factor Authentication (MFA) for your AWS root account and you lost your MFA device. What do you need to do to recover access to your account?

Answer

Correct Answer: An email will be sent to the email address on file to verify ownership of the account. You will then need to provide the phone number on the account.

Note: This Question is unanswered, help us to find answer for this one

5. You are migrating a 200 GB database from an on-premise SQL Server to RDS for SQL Server. The database needs to have minimal downtime during the migration. What is the best practice for migrating this database?

Answer

Correct Answer: Use Database Migration Service to replicate the database to RDS and keep it in sync during the migration. Repoint your applications to use the new RDS endpoint.

Note: This Question is unanswered, help us to find answer for this one

6. How do you connect via SSH to a Linux EC2 instance with an EBS volume if you lost your key pair?

Answer

Correct Answer: Attach the EBS volume to a temporary instance launched with a new key pair, and overwrite ~/.ssh.authorized_keys using the same file from the new instance.

Note: This Question is unanswered, help us to find answer for this one

7. You have replicated the infrastructure that serves the backend API for your web application across regions to better serve your customers in the US and the EU. What is the best way to direct your web application at the nearest data center?

Answer

Correct Answer: Use Route 53 with geolocation lookups to direct traffic between the two regions.

Note: This Question is unanswered, help us to find answer for this one

8. What is not a default user of a common Linux instance launched from an AMI?

Answer

Correct Answer: System-user

Note: This Question is unanswered, help us to find answer for this one

9. What type of data solution should you use for data coming from nonrelational and relational data from IoT devices, websites, mobile apps, etc.?

Answer

Correct Answer: AWS Lake Formation

Note: This Question is unanswered, help us to find answer for this one

10. You want to make your public API quickly accessible from all regions. What is the best way to do this?

Answer

Correct Answer: Create edge-optimized API gateway endpoints and deploy them to a CloudFront network.

Note: This Question is unanswered, help us to find answer for this one

11. Which AWS service can host the web application server for a WordPress site?

Answer

Correct Answer: Elastic BeanStalk

Note: This Question is unanswered, help us to find answer for this one

12. You are going to host an application that uses a MySQL database. Which database should you select if you don't want to manage scaling or database administration tasks?

Answer

Correct Answer: Aurora

Note: This Question is unanswered, help us to find answer for this one

13. When sending a large volume of email through SES, what is the most important set of metrics to monitor?

Answer

Correct Answer: Your complaint and bounce rates

Note: This Question is unanswered, help us to find answer for this one

14. You have an application that generates long-running reports, stores them in an S3 bucket, and then emails the user who requested the report with a link to download it. What is the best practice for storing the report data in S3?

Answer

Correct Answer: Create a private S3 bucket. The link in the email should take the user to your application, where you can verify the active user session or force the user to log in. After verifying the user has rights to access this file, have the application retrieve the object from S3 and return it in the HTTP response. Delete the file from the S3 bucket after the request is completed.

Note: This Question is unanswered, help us to find answer for this one

15. To comply with auditing requirements of some compliance standards, which AWS tool can be enabled to maintain an audit log of access and changes to your AWS infrastructure?

Answer

Correct Answer: CloudTrail

Note: This Question is unanswered, help us to find answer for this one

16. What is wrong with the third incoming security group rule, which allows all traffic from sg-269afc5e to go to an Ubuntu EC2 instance configured as a web server?

Answer

Correct Answer: The instance was launched with the default security group, but there is no way for an administrator to SSH into the instance. Add another rule that allows for SSH access from a secured source, such as a single IP or a range of managed IP addresses.

Note: This Question is unanswered, help us to find answer for this one

17. What is the best EC2 instance class for a server that continuously has a heavy CPU load?

Answer

Correct Answer: C5

Note: This Question is unanswered, help us to find answer for this one

18. When creating a new RDS instance, what does the Multi-AZ option do?

Answer

Correct Answer: Creates a second passive database instance within the same region that will become the primary database during a failover

Note: This Question is unanswered, help us to find answer for this one

19. You are migrating an on-premise RabbitMQ cluster into AWS. Which migration path should you choose for ease of both maintenance and deployment?

Answer

Correct Answer: Rewrite the parts of your application that use RabbitMQ to use Amazon MQ.

Note: This Question is unanswered, help us to find answer for this one

20. What option is best for Auto Scaling your EC2 instances for predictable traffic patterns?

Answer

Correct Answer: Scale based on a schedule

Note: This Question is unanswered, help us to find answer for this one

21. Which big data store will let you store large streams of user activity data coming from both web and mobile applications?

Answer

Correct Answer: Redshift

Note: This Question is unanswered, help us to find answer for this one

22. Your company has on-premise servers with an existing onsite backup solution that also replicates backups to another campus on the other side of the country with its own on-site backup solution. You have been asked to create a third level of redundancy by also storing these backups in the cloud. In the event of a primary and secondary backup failure, your boss wants to know that the cloud backups can be accessible as fast as possible to reduce downtime during the recovery. What S3 storage class do you recommend for cost and performance?

Answer

Correct Answer: S3 One Zone-Infrequent Access

Note: This Question is unanswered, help us to find answer for this one

23. A nontechnical client wants to migrate a WordPress site to AWS from a private server managed by a third-party hosting company. Which AWS service should you recommend to migrate the site to?

Answer

Correct Answer: Lightsail

Note: This Question is unanswered, help us to find answer for this one

24. An EC2 instance running a WordPress site keeps getting hacked, even though you have restored the server several times and have patched WordPress. What AWS service can help you detect and prevent further attacks?

Answer

Correct Answer: GuardDuty

Note: This Question is unanswered, help us to find answer for this one

25. The outbound rules of a security group only allow traffic going to 0.0.0.0/0 on TCP Port 22 (SSH) and TCP port 3306 (MySQL). Review the inbound rules listed in the image below. What is the most important issue to fix with this security group configuration, for an Ubuntu EC2 instance acting as a web server?

Answer

Correct Answer: The outbound rules do not allow for HTTP traffic to leave the instance, so inbound HTTP requests will fail because the clients will never get HTTP responses.

Note: This Question is unanswered, help us to find answer for this one

26. What happens to a SQL Server RDS instance if the databases increase in size and go over the allocated space?

Answer

Correct Answer: The database instance will report a STORAGE_FULL status and become inaccessible if the instance does not have enough remaining storage to operate. Allocate more space to the instance.

Note: This Question is unanswered, help us to find answer for this one

27. In addition to CloudFormation, you can use other orchestration tools to automate server formation and maintenance. Which tool is not an efficient choice for the orchestration of a large infrastructure?

Answer

Correct Answer: Vagrant

Note: This Question is unanswered, help us to find answer for this one

28. What is the best practice for maintaining Windows EC2 instances and applying updates?

Answer

Correct Answer: Use AWS Systems Manager Patch Manager to find an patch instances that require updates during a set maintenance window.

Note: This Question is unanswered, help us to find answer for this one

29. Your web application is getting a suspicious amount of bad requests from foreign IP addresses. Your business is operating in only a few countries and you would like to block any other traffic. What is the best practice for limiting access to your web application by country?

Answer

Correct Answer: Use Web Application Firewall and create a geo match condition to drop all requests from countries that aren't on your allow list.

Note: This Question is unanswered, help us to find answer for this one

30. Your application is sending 50,000 emails through SES each day. Since you must maintain a low bounce rate to avoid being put on probation, what simple system do you architect to automatically process hard bounces?

Answer

Correct Answer: Configure SES to send all bounce events to an SNS topic. Create a Lambda function that processes each hard bounce event and automatically flags that account as a bounce in your application to prevent further sending attempts.

Note: This Question is unanswered, help us to find answer for this one

31. What privilege is specific to the AWS root account, and cannot be granted to another IAM user on the account?

Answer

Correct Answer: Delete the AWS account.

Note: This Question is unanswered, help us to find answer for this one

32. N the S3 console, underneath the Access column, what does the public badge next to the bucket name indicate?

Answer

Correct Answer: All objects within this bucket are assigned public access and could be readable or writable by anyone on the internet. Ensure no sensitive data is being publicly shared within this bucket.

Note: This Question is unanswered, help us to find answer for this one

33. What service can host your Docker containers?

Answer

Correct Answer: All of these services can host a Docker container.

Note: This Question is unanswered, help us to find answer for this one

34. If a set of servers are located within a private subnet of your VPC, how can you connect those servers to on-premise servers?

Answer

Correct Answer: All of these options can establish a connection to a private subnet.

Note: This Question is unanswered, help us to find answer for this one

35. Which feature can be used to respond to a sudden increase in web traffic?

Answer

Correct Answer: All of these answers

Note: This Question is unanswered, help us to find answer for this one

36. You have a T2 EC2 instance that is critical to your infrastructure. How would you monitor the most important metric for this instance?

Answer

Correct Answer: Turn on CloudWatch Auto Recovery and put monitors on the System Status and Instance Status checks for the instance to notify you when either is in alarm.

Note: This Question is unanswered, help us to find answer for this one

37. As your web application grows and your application monitoring needs become more complex, which additional log monitoring service should you NOT consider?

Answer

Correct Answer: PRTG

Note: This Question is unanswered, help us to find answer for this one

38. You have 14 on-premise web servers, 4 database servers, 6 servers using GIS software, 3 file servers, and 4 development servers. What considerations should you take into account when migrating these servers into AWS?

Answer

Correct Answer: New AWS accounts are limited to 20 on-demand EC2 instances. Submit a request to increase your rate limits before starting a migration.

Note: This Question is unanswered, help us to find answer for this one

39. You have a Linux EC2 instance that is not responding to requests and you can not connect to it via SSH. Using the EC2 console, you issued a command to stop the instance, but for the past 10 minutes the instance has been in the "stopping" state. What is the next step you should take?

Answer

Correct Answer: Issue another stop action via the EC2 console, and choose the option to forcefully stop the instance.

Note: This Question is unanswered, help us to find answer for this one

40. Which of these is a valid restriction on the properties of a VPC?

Answer

Correct Answer: You cannot create a CIDR block with a netmask larger than /16

Note: This Question is unanswered, help us to find answer for this one

41. Where is the best place to store database backups on an EC2 instance that is configured as a database server?

Answer

Correct Answer: An S3 bucket, synced with the database backups via a script that calls the AWS CLI

Note: This Question is unanswered, help us to find answer for this one

42. Can you lose the public IP address associated with your EC2 instance?

Answer

Correct Answer: Yes, you can lose it if you stop and start the instance.

Note: This Question is unanswered, help us to find answer for this one

43. Application Load Balancer can route traffic to several different target groups based upon several conditions. Which of these use cases is not supported by Application Load Balancer?

Answer

Correct Answer: An Http POST query string of ? action=createuser can be routed to a target group for an ECS service.

Note: This Question is unanswered, help us to find answer for this one

44. You are running Docker containers on ECS. What is the most important metric to monitor?

Answer

Correct Answer: The memory consumption of each EC2 instance in your cluster from within CloudWatch.

Note: This Question is unanswered, help us to find answer for this one

45. What's the best practice for horizontally scaling a legacy ASP.NET web application that relies on Active Directory and is currently deployed to a single Windows EC2 instance?

Answer

Correct Answer: Use Sysprep to shut down the instance during a maintenance window. Create an AMI image and place both servers behind Application Load Balancer with sticky sessions.

Note: This Question is unanswered, help us to find answer for this one

46. When launching an EC2 instance with an instance type that supports instance storage, what use case is best for instance storage?

Answer

Correct Answer: Use the instance storage to serve temporary files that require low I/O latency.

Note: This Question is unanswered, help us to find answer for this one

47. A new developer has been added to the team and you have been asked to provide access to the organization's AWS account. What is the best practice for granting access?

Answer

Correct Answer: Create a IAM user for the new developer. Assign the new developer the a developer group you already created for the other developers.

Note: This Question is unanswered, help us to find answer for this one

48. You created a new Linux EC2 instance and installed PostgreSQL but you are not able to establish a connection to the server from your local computer. What steps do you take to resolve this issue?

Answer

Correct Answer: Verify that the assigned security groups allow traffic from your IP address to port 5432. Verify that PostgreSQL is configured to listen to external traffic and is bound to the public interface.

Note: This Question is unanswered, help us to find answer for this one

49. What is the best practice for creating a highly available PostgreSQL database in RDS that can sustain the loss of a single AWS region?

Answer

Correct Answer: Create Read Replicas in other AWS regions. Ensure read operations against the database occur on an available Read Replica, and send write operations to another region if you need to promote a Read Replica to a standalone database if the master is down.

Note: This Question is unanswered, help us to find answer for this one

50. You have several on-premise servers and would like to store your offsite backups on AWS. What fully managed backup service can you use to ship your backups to AWS?

Answer

Correct Answer: Use Storage Gateway.

Note: This Question is unanswered, help us to find answer for this one

51. You have a Linux EC2 web server that suddenly is timing out on all HTTP requests and your SSH connection attempts are timing out. You notice that it is failing the system status check in the EC2 console. What action should you take?

Answer

Correct Answer: Restore the instance from the last AMI image. System status checks indicate that the filesystem on the instance is corrupted.

Note: This Question is unanswered, help us to find answer for this one

52. You have four front-end web servers behind a load balancer, which use NFS to access another EC2 instance that resizes and stores images for the front-end application. What security group policies should be assigned to these servers?

Answer

Correct Answer: Front-end web servers should allow HTTPS. Assign another group to all of the instances that allows all traffic to pass between instances using that group.

Note: This Question is unanswered, help us to find answer for this one

53. You created a Windows EC2 instance with a public IP address and installed SQL Server. When attempting to connect to SQL Server from SQL Server Enterprise Manager on your local computer, the Windows EC2 instance is unable to establish a connection to the server. What is the first thing you should check?

Answer

Correct Answer: Verify that the assigned security groups allow TCP port 1433 traffic from your current IP address.

Note: This Question is unanswered, help us to find answer for this one

54. A principle of DevOps is to view infrastructure as code. Which AWS service allows you to script your AWS infrastructure?

Answer

Correct Answer: CloudFormation

Note: This Question is unanswered, help us to find answer for this one

55. Which communication channel does SNS not support natively?

Answer

Correct Answer: Automated phone call

Note: This Question is unanswered, help us to find answer for this one

56. You need a schemaless database. Which Amazon database service provides that solution?

Answer

Correct Answer: DynamoDB

Note: This Question is unanswered, help us to find answer for this one

57. What data store provides a simple and quick way of storing basic user attributes in an object-based format?

Answer

Correct Answer: DynamoDB

Note: This Question is unanswered, help us to find answer for this one

58. You are creating a DynamoDB table to store all movies that have been released since 1938. Your application will allow users to search by movie title and see the details of that film. Given the sample below showing the movie data that you will be importing, what is the best set of keys to apply to this table? { "title": "The Avengers", "year": 2012, "cast": ["Mark Ruffalo", "Robert Downey, Jr."], "genres": ["Action"]}

Answer

Correct Answer: The primary key should be created as a completely unique value, such a sequential numerical list of movie IDs. The partition key should be title field for fast lookup.

Note: This Question is unanswered, help us to find answer for this one

59. When using AWS for research and development ahead of a planned migration, how do you prevent unexpected increases or spikes in the billing?

Answer

Correct Answer: Using the root AWS account enable Billing Alerts in the user preferences. Then use CloudWatch to create a billing alarm and set a threshold to a specific dollar amount for your estimated monthly charges.

Note: This Question is unanswered, help us to find answer for this one

60. Which AWS service can be used to help generate the documentation required by various compliance standards, such as Payment Card Industry Data Security Standard (PCI DSS) Level 1 for the handling of credit card data?

Answer

Correct Answer: Artifact

Note: This Question is unanswered, help us to find answer for this one

61. What in-memory caching server is not supported by ElastiCache?

Answer

Correct Answer: Elasticsearch

Note: This Question is unanswered, help us to find answer for this one

62. When using an ECS cluster with EC2 instances, what maintenance tasks should you perform on the EC2s?

Answer

Correct Answer: Refresh the cluster with instances built from the latest ECS AMI.

Note: This Question is unanswered, help us to find answer for this one

63. What does it cost to launch an EC2 instance from the AWS Marketplace?

Answer

Correct Answer: Each image has its own pricing that could either be free, or include charges for software licensing costs. You will also pay for the instance the image runs on

Note: This Question is unanswered, help us to find answer for this one

64. How do you architect a solution for an SQL Server database to be replicated across AWS regions in an active-active architecture?

Answer

Correct Answer: Use RDS for SQL Server 2016 or 2017 Enterprise Edition. Enable Multi-AZ support and select the Mirroring/Always On option. Select another region for the mirroring option.

Note: This Question is unanswered, help us to find answer for this one

65. Which Elastic Load Balancing option supports Lambda as a target?

Answer

Correct Answer: Application Load Balancer

Note: This Question is unanswered, help us to find answer for this one

66. For your AWS root account, you have generated a random password of the maximum allowed length and included special characters. Which additional steps should you take to secure your AWS root account?

Answer

Correct Answer: Create an IAM role for the account administrator with the highest privileges and do not use the root account in day-today operations. Enable two-factor authentication on the root account

Note: This Question is unanswered, help us to find answer for this one

67. You have a large amount of files on your network-attached storage array that must be archived and maintained for a period of 10 years due to industry regulations. This data will be infrequently accessed but must be kept What is the best AWS service for storing this data?

Answer

Correct Answer: S3 Glacier

Note: This Question is unanswered, help us to find answer for this one

68. Which AWS service complies with the standards outlined in Payment Card Industry Data Security Standard (PCI DSS) Level 1 for the handling and transmission of credit card data?

Answer

Correct Answer: All of these answers

Note: This Question is unanswered, help us to find answer for this one

69. What AWS services can help you automate your development pipeline for continuous integration and continuous deployment?

Answer

Correct Answer: All of these answers

Note: This Question is unanswered, help us to find answer for this one

70. Your database is an RDS instance running SQL Server with Multi-AZ replication and you have several older .NET console utilities that perform database operations every 15 seconds. When the cluster has to switch the primary database server to the secondary AZ, the .NET utilities start to report connection failures to the database although other applications are able to access the database. How do you correct this problem?

Answer

Correct Answer: The NET utilities need to change the SQL Server endpoint in the connection strings to read from the secondary database server using a try/catch.

Note: This Question is unanswered, help us to find answer for this one

71. Which database is a NoSQL database type that can quickly store and retrieve key-value pairs?

Answer

Correct Answer: DynamoDB

Note: This Question is unanswered, help us to find answer for this one

72. You have an application using a 100 GB MySQL database that you are migrating into AWS. What should you consider when deciding between whether to host the database on RDS for MySQL or Aurora?

Answer

Correct Answer: All of these answers

Note: This Question is unanswered, help us to find answer for this one

73.

Which option refers to this statement: Edits an existing item's attributes, or adds a new item to the table if it does not already exist. You can put, delete, or add attribute values.

Answer

Correct Answer: UpdateItem

Note: This Question is unanswered, help us to find answer for this one

74.

Which of the following is the correct way to create an SQS endpoint?

Answer

Correct Answer: var sqs = new AWS.SQS({ "region": "us-east-1" });

Note: This Question is unanswered, help us to find answer for this one

75.

What are the available regional endpoints for Amazon payments?

Answer

Correct Answer: UK, US and EU

Note: This Question is unanswered, help us to find answer for this one

76.

Which of the following functions is correct to map DynamoDB results to a JavaSscript object?

Answer

Correct Answer: function mapImage(item) { return { "id": item.id.S, "version": parseInt(item.version.N, 10), "state": item.state.S, "rawS3Key": [...] "processedS3Key": [...] "processedImage": [...] }; };

Note: This Question is unanswered, help us to find answer for this one

77.

Which of the following storage options are available for managed storage? Check all that apply.

Answer

Correct Answer: replicating data
partitioning

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

78.

Which option below describes the scenario of "If the buyer does not have access to payment instructions"?

Answer

Correct Answer: Manually redirect the customer to amazon payments

Note: This Question is unanswered, help us to find answer for this one

79.

CloudWatch alarm is based on the system-status metric published by?

Answer

Correct Answer: EC2 service

Note: This Question is unanswered, help us to find answer for this one

80.

Which of the following is the default value for session timeout for an ELB?

Answer

Correct Answer: 60 seconds

Note: This Question is unanswered, help us to find answer for this one

81.

Which of the following states are available for an alarm?

Answer

Correct Answer: INSUFFICIENT_DATA
OK

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

82.

Which of the following would be the solution to the following problem? (choose all that apply) If your virtual server is started in another availability zone because of an outage, the data stored on the EBS volume is no longer available?

Answer

Correct Answer: Use a distributed third-party storage solution to store your data in multiple availability zones
Outsource the state of your virtual server to a managed service that uses multi- ple availability zones

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

83.

AWS RDS Supports ............... server backup and the restore option?

Answer

Correct Answer: native SQL

Note: This Question is unanswered, help us to find answer for this one

84.

With Amazon API Gateway, you can quickly and easily create a custom API to your code except for:

Answer

Correct Answer: AWS CodeDeploy

Note: This Question is unanswered, help us to find answer for this one

85.

What should be done for a NAT instance to allow your EC2 instance on private subnet to connect to the internet?

Answer

Correct Answer: Source/Destination check should be disabled

Note: This Question is unanswered, help us to find answer for this one

86.

Which of the following is NOT a database management system supported by Amazon RDS ?

Answer

Correct Answer: Microsoft SQL

Note: This Question is unanswered, help us to find answer for this one

87.

Which expression correctly describes the use of the API call ‘GetAssignment’?

Answer

Correct Answer: Can be used for retrieving the workers Assignment data structure once worker has submitted assignment

Note: This Question is unanswered, help us to find answer for this one

88.

AWS MWS stands for?

Answer

Correct Answer: Amazon Web Service Marketplace Web Service

Note: This Question is unanswered, help us to find answer for this one

89.

Which of the following things can Auto scaling NOT do?

Answer

Correct Answer: Increase the instance size when utilization is above threshold

Note: This Question is unanswered, help us to find answer for this one

90.

What would be the advantage of using AWS SimpleDB for an eCommerce website?

Answer

Correct Answer: Flexible NoSql scalable datastore

Note: This Question is unanswered, help us to find answer for this one

91.

How many SSL Certificates can you associate with an ELB Instance?

Answer

Correct Answer: One Certificate

Note: This Question is unanswered, help us to find answer for this one

92.

Which command installs the AWS command line interface?

Answer

Correct Answer: $ sudo pip install awscli

Note: This Question is unanswered, help us to find answer for this one

93.

Your users complain of a slow service. You are using AWS Elastic Load Balancer (ELB) and your systems admin assures you auto scaling group is configured correctly. What is a possible reason this may be occurring?

Answer

Correct Answer: A disproportionate amount of traffic is coming from a single network or IP address.

Note: This Question is unanswered, help us to find answer for this one

94.

Which of the following registers the route with Express and Responds with the image process?

Answer

Correct Answer: app.get('/image/:id', function(request, response) { getImage(request.params.id, function(err, image) { if (err) { throw err; } else { response.json(image); } }); });

Note: This Question is unanswered, help us to find answer for this one

95.

AWS offers tools for building highly available systems based on EC2 instances including the following:

Answer

Correct Answer: Using auto-scaling to have a guaranteed number of virtual servers running
Deploy a NAT instance into the public subnet

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

96.

In Amazon S3, Amazon Glacier is designed for:

Answer

Correct Answer: infrequently accessed data.

Note: This Question is unanswered, help us to find answer for this one

97.

What component(s) of your eCommerce application would the term “replication" apply to?

Answer

Correct Answer: A distributed database running on a cluster of AWS ec2 instances

Note: This Question is unanswered, help us to find answer for this one

98.

For the following EC2 instance identity JSON fragment { "region" : "us-east-1", "availabilityZone" : "us-east-1a", "version" : "2010-08-31", "instanceId" : "i-12345678", "billingProducts" : null, "architecture" : "x86_64", "imageId" : "ami-12345678", "instanceType" : "m1.small" } Which value would be required for the following termination url? https://ec2.amazonaws.com/?Action=TerminateInstances..

Answer

Correct Answer: &InstanceId.1=i-12345678&AUTHPARAMS

Note: This Question is unanswered, help us to find answer for this one

99.

Choose the statement that best describes an Ec2 instance identity document .

Answer

Correct Answer: An instance identity document is a JSON file that describes an instance

Note: This Question is unanswered, help us to find answer for this one

100.

What is the key difference between Elastic File System and EBS?

Answer

Correct Answer: EBS provides a "block storage" whereas EFS is a virtual file system

Note: This Question is unanswered, help us to find answer for this one

101.

Which of the following is NOT an Amazon S3 storage class ?

Answer

Correct Answer: S3 Accelarator

Note: This Question is unanswered, help us to find answer for this one

102.

AWS CodeDeploy provides automated code deployment to _____ instances?

Answer

Correct Answer: EC2

Note: This Question is unanswered, help us to find answer for this one

103.

For the following fragment of an S3 IAM policy "Statement": [{ "Sid": "AllowPublicRead", "Effect": "Allow", "Principal": { "AWS": "*" }, "Action": ["s3:GetObject"], "Resource": ["arn:s3:::bucket/*" ] }] Why will this policy fail to set new permissions for the S3 bucket?

Answer

Correct Answer: S3 ARN value is incorrect

Note: This Question is unanswered, help us to find answer for this one

104.

Amazon Elastic Transcoder (ETS) provides __ transcoding of __ hosted videos, marketed primarily as a way to convert __ files into mobile-ready versions?

Answer

Correct Answer: Video, S3, Source

Note: This Question is unanswered, help us to find answer for this one

105.

Your eCommerce strategy is based on digital downloads, what AWS service will allow your users a better download experience?

Answer

Correct Answer: AWS Cloudfront

Note: This Question is unanswered, help us to find answer for this one

106.

In DynamoDB, which of the following describes the goal of ProjectionExpression in the scan Action ?

Answer

Correct Answer: A string that identifies one or more attributes to retrieve from the specified table or index.

Note: This Question is unanswered, help us to find answer for this one

107.

The following error is returned from the Fulfillment API “Seller is not registered for Basic fulfillment.” Choose the most probable reason for this error.

Answer

Correct Answer: Seller does not have a fully compliant MWS Pro account

Note: This Question is unanswered, help us to find answer for this one

108.

A (...) operation uses the primary key of a table or a secondary index to directly access items from a table or index.

Answer

Correct Answer: Query

Note: This Question is unanswered, help us to find answer for this one

109.

You need a database for an eCommerce website, what would be the advantage of using Amazon Relational Database Service (Amazon RDS)?

Answer

Correct Answer: Provides transactional consistency in your data

Note: This Question is unanswered, help us to find answer for this one

110.

Which of the following is correct regarding AWS S3 ?

Answer

Correct Answer: A new S3 bucket can be configured to listen for PUT events and trigger SNS topic

Note: This Question is unanswered, help us to find answer for this one

111.

Which of the following is NOT a feature available in Amazon RDS ?

Answer

Correct Answer: Multi-Region Deployment

Note: This Question is unanswered, help us to find answer for this one

112.

Which of the following allows you to create instances of the MySQL database to support your Web sites ?

Answer

Correct Answer: Amazon Relational Database Service

Note: This Question is unanswered, help us to find answer for this one

113.

Choose the statement that best describes setting up a s3 bucket to serve static content for a website

Answer

Correct Answer: You must set bucket names, enable website hosting and configure Amazon Route 53 and use a correct IAM policy for permissions

Note: This Question is unanswered, help us to find answer for this one

114.

Which of the following is NOT a supported data type in DynamoDB ?

Answer

Correct Answer: Dict

Note: This Question is unanswered, help us to find answer for this one

115.

Amazon (...) offers persistent storage for Amazon EC2 instances. Amazon (...) volumes are network-attached, and persist independently from the life of an instance. The volumes are highly available, highly reliable volumes that can be leveraged as an Amazon EC2 instance’s boot partition or attached to a running Amazon EC2 instance as a standard block device.

Answer

Correct Answer: Elastic Block Store

Note: This Question is unanswered, help us to find answer for this one

116.

Why would you set up an IAM policy for your S3 users?

Answer

Correct Answer: To control who can access your data stored in S3

Note: This Question is unanswered, help us to find answer for this one

117.

Considering AWS machines types, which of the following is NOT a supported instance type ?

Answer

Correct Answer: Input Optimized (e.g. O2)

Note: This Question is unanswered, help us to find answer for this one

118.

When launching a new EC2 instance in AWS, which of the following is NOT an option for AMIs ?

Answer

Correct Answer: Test AMIs

Note: This Question is unanswered, help us to find answer for this one

119.

Which of the following is NOT a feature available in API Gateway ?

Answer

Correct Answer: Deployment inside VPC

Note: This Question is unanswered, help us to find answer for this one

120.

Regarding enhanced networking in EC2 instances, which of the following is NOT correct ?

Answer

Correct Answer: Enhanced networking can be enabled on any AMIs, and no additional drivers are needed 

Note: This Question is unanswered, help us to find answer for this one

121.

Which HTTP verb is NOT supported in API Gateway ?

Answer

Correct Answer: None of the above

Note: This Question is unanswered, help us to find answer for this one

122.

Which of the following is NOT a supported Action in DynamoDB API ?

Answer

Correct Answer: ListItem

Note: This Question is unanswered, help us to find answer for this one

123.

Which is the most probable solution for the following error from a ssh terminal access request? Permissions 0644 for 'amazonec2.pem'

Answer

Correct Answer: Your key has public access

Note: This Question is unanswered, help us to find answer for this one

124.

Which of the following is an edge-storage or content-delivery system that caches data in different physical locations ?

Answer

Correct Answer: Amazon Cloudfront

Note: This Question is unanswered, help us to find answer for this one

125.

When using AWS Lambda, you are responsible only for your code. AWS Lambda manages the compute fleet that offers a balance of memory, CPU, network, and other resources. This is in exchange for flexibility, which means you cannot perform the tasks below, EXCEPT for:

Answer

Correct Answer: customize the amount of memory available

Note: This Question is unanswered, help us to find answer for this one

126.

For the following fragment of an S3 IAM policy "Statement": [ { "Effect": "Allow", "Action": [ "s3:GetBucketLocation", "s3:ListAllMyBuckets" ], "Resource": "arn:aws:s3:::*" }, What is the purpose of this policy statement block

Answer

Correct Answer: Locks down console access so users can see buckets but not view the bucket(s) content

Note: This Question is unanswered, help us to find answer for this one

127.

IBM Tivoli Service Automation Manager is a _____ tool for managing cloud infrastructure?

Answer

Correct Answer: framework

Note: This Question is unanswered, help us to find answer for this one

128.

Which expression correctly describes the Assignment data structure for a HIT with an External Question?

Answer

Correct Answer: Is the datastructure for an External Question

Note: This Question is unanswered, help us to find answer for this one

129.

In the __ Management Interface the storage space is partitioned into units called containers?

Answer

Correct Answer: Cloud Data

Note: This Question is unanswered, help us to find answer for this one

130.

Choose the statement that best describes the difference between s3 and Cloudfront.

Answer

Correct Answer: CloudFront serves from any region while s3 requires specific replication to do the same

Note: This Question is unanswered, help us to find answer for this one

131.

When would you use the Reports API?

Answer

Correct Answer: For orders that you store at Amazon, sell on Amazon

Note: This Question is unanswered, help us to find answer for this one

132.

How can you attach a single file system to more than one EC2 instance?

Answer

Correct Answer: You need to use the Amazon Elastic File System (EFS), which is designed to be multiply attached

Note: This Question is unanswered, help us to find answer for this one

133.

What needs to be provided between multi availability zones to support Define EC2 on AWS?

Answer

Correct Answer: Amazon Elastic Compute Cloud

Note: This Question is unanswered, help us to find answer for this one

134.

Which is the best description of Xform's ?

Answer

Correct Answer: Xforms are reusable Reusable components for electronic forms and are used to extend the functionality of html forms

Note: This Question is unanswered, help us to find answer for this one

135.

When creating a new Lambda function through the AWS Console, which of the following is correct ?

Answer

Correct Answer: You are allowed to set the max. amount of memory your service can use.

Note: This Question is unanswered, help us to find answer for this one

136.

Choose the correct description of AWS FBA.

Answer

Correct Answer: Used by amazon sellers to manage inventories

Note: This Question is unanswered, help us to find answer for this one

137.

DynamoDB is charged for per gigabyte of storage and per provisioned or capacity?

Answer

Correct Answer: read, write

Note: This Question is unanswered, help us to find answer for this one

138.

AWS Virtual Private Cloud (VPC) lets you provision a logically isolated section AWS-cloud where you can launch AWS resources in a virtual network that you define. Which of the following is correct about VPCs ?

Answer

Correct Answer: You can create subnets across multiple availability zones, which will enable launching instances across multiple availability zones to ensure a high-availability environment.

Note: This Question is unanswered, help us to find answer for this one

139.

Regarding AWS CloudFront, which is the correct statement ?

Answer

Correct Answer: CloudFront is a content delivery network (CDN) which helps accelerating content distribution globally.

Note: This Question is unanswered, help us to find answer for this one

140.

____ are operating systems running on the Xen virtualization hypervisor?

Answer

Correct Answer: AMIs

Note: This Question is unanswered, help us to find answer for this one

141.

Amazon RDS for ........... Server now supports .................  Authentication.

Answer

Correct Answer: SQL,Windows

Note: This Question is unanswered, help us to find answer for this one

142.

You have developed a REST API using AWS API Gateway and configured all resources/methods to call a previously created Lambda function. The API has been already deployed once to a Stage and it's working properly. Which is NOT correct to say about that scenario ?

Answer

Correct Answer: Any changes made to the Lambda function's code must be first Deployed before it can be tested.

Note: This Question is unanswered, help us to find answer for this one

143.

AWS RDS makes it easy to set up, operate, and scale a relational database in the cloud. Which of the following will NOT be managed by AWS:

Answer

Correct Answer: Query Optimization

Note: This Question is unanswered, help us to find answer for this one

144.

Amazon CloudFront supports .............. and ............... content.


Answer

Correct Answer: static, dynamic

Note: This Question is unanswered, help us to find answer for this one

145.

What is PCI compliance in relation to AWS Payment Services?

Answer

Correct Answer: A set of security standards designed to ensure that ALL companies that accept, process, store or transmit credit card information maintain a secure environment.

Note: This Question is unanswered, help us to find answer for this one

146.

What is a Payment Gateway?

Answer

Correct Answer: Outsourcing payment processing to a third party service such as Amazons Log in and Pay

Note: This Question is unanswered, help us to find answer for this one

147.

Your eCommerce application Amazon Payments is failing with "there is a problem with the handling of the order". Choose the most probable cause of the error.

Answer

Correct Answer: You need to enable "Allowed JavaScript Origins" and enable SSL for your domain in the application console

Note: This Question is unanswered, help us to find answer for this one

148.

What is the name of the new service that replaced the depreciated Flexible Payment Service?

Answer

Correct Answer: Login and Pay with Amazon

Note: This Question is unanswered, help us to find answer for this one

149. On Amazon RDS, which of the following features are NOT supported for Oracle 12c?

Answer

Correct Answer: Database Vault
Java Support

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

150. For tagging Amazon Glacier resources, which of the following are incorrect tag restrictions?

Answer

Correct Answer: Tag values cannot be blank.
Tag keys must be from 1 to 25Unicode characters in length.

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

151. With respect to Elastic Load Balancing. which of the following protocols are supported by Application Load Balancers?

Answer

Correct Answer: HTTP
HTTPS

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

152. Under which of the following circumstances, data in the Amazon EC2 Instance Store is lost?

Answer

Correct Answer: When an instance reboots.
When an underlying disk drive fails.

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

153. Which of the following features of Elastic load balancing are NOT supported by Classic load balancers?

Answer

Correct Answer: Path-based routing
HTTP/2 support

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

154. Which Of the following Amazon EBS volume types ranges from 50GiB-16 TiB?

Answer

Correct Answer: Cold HDD (sc1)
Throughput Optimized HDD (st1)

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

155. Which of the following databases are supported by Amazon Relational Database Service (Amazon RDS)?

Answer

Correct Answer: Microsoft SQL Server
Oracle

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

156. With respect to Amazon S3 buckets, which of the following are correct conditions for naming buckets?

Answer

Correct Answer: A bucket name can start with a letter or number.
A bucket name must not end with a hyphen ( - ).

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

157. Which of the following parameters are mandatory for the lnstallPaymentlnstruction operation of the Amazon Flexible Payment Service?

Answer

Correct Answer: CallerReference
TokenType
PaymentReason

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

158. What is the maximum size of an object in an Amazon S3 bucket?

Answer

Correct Answer: 5 TB

Note: This Question is unanswered, help us to find answer for this one

159. While installing a LAMP web server on Amazon Linux, it is mandatory to conf‌igure a security group to allow an SSH connection. Which of the following ports is used by SSH connections?

Answer

Correct Answer: 443

Note: This Question is unanswered, help us to find answer for this one

160.

How do you access Amazon S3 buckets and objects that were created using?

<CreateBucketConfiguration>

Answer

Correct Answer:

http://yourbucket.s3.amazonaws.com/yourobject 


Note: This Question is unanswered, help us to find answer for this one

161. While using SSL with a PostgreSQL DB instance. If you have 1connections to your PostgreSQL DB instance. then how many connections can use an SSL encryption?

Answer

Correct Answer: All the 1connections can use an SSL encryption.

Note: This Question is unanswered, help us to find answer for this one

162. Which of the following is the default Amazon EBS volume type?

Answer

Correct Answer: General Purpose SSD (gp2)

Note: This Question is unanswered, help us to find answer for this one

163. With regard to Amazon EC2, the amount of CPU that is allocated to a particular instance is expressed in terms of:

Answer

Correct Answer: EC2 compute units

Note: This Question is unanswered, help us to find answer for this one

164. Which of the following statements is not correct with regard to Elastic Block Store?

Answer

Correct Answer: Amazon EBS are composed of Regions and Availability Zones.

Note: This Question is unanswered, help us to find answer for this one

165. Which of the following databases can support thread pooling to enable the DB instance, which helps handling more connections without degrading the performance?

Answer

Correct Answer: MariaDB

Note: This Question is unanswered, help us to find answer for this one

166. What is the default number of Amazon RDS Security groups (VPc) that can be created per region for an AWS account?

Answer

Correct Answer: 5

Note: This Question is unanswered, help us to find answer for this one

167. All AWS accounts, by default, are limited to how many Elastic IP addresses per region?

Answer

Correct Answer: 5

Note: This Question is unanswered, help us to find answer for this one

168. In the AWS Cloud, Amazon Aurora is compatible with which of the following relational database engines?

Answer

Correct Answer: MySQL

Note: This Question is unanswered, help us to find answer for this one

169.

The following request is submitted to the Amazon E-Commerce Service. What will be the outcome?

http://webservices.amazon.com/onca/xml?Service=AWSECommerceService

&SearchIndex=Books

&Sort=salesrank

&Keywords=DVD

&ResponseGroup=Medium,Offers

&Count=20

&Operation=ItemSearch

&AssociateTag=[Your Tag Name]

&SubscriptionId=[Your subscription id]


Answer

Correct Answer:

It will return the top 2DVDs on the subject of books in the order of sales rank. 


Note: This Question is unanswered, help us to find answer for this one

170. Which of the following commands can create an IPv4 VPC with a 10.0.0.0/16 CIDR block by using the AWS command line interface?

Answer

Correct Answer: aws ec2 create-vpc --cidr-block 10.0.0.0/16

Note: This Question is unanswered, help us to find answer for this one

171. With regard to Amazon EC2, do volumes need to be un-mounted in order to take a snapshot?

Answer

Correct Answer: Yes

Note: This Question is unanswered, help us to find answer for this one

172. While working with vaults in Amazon Glacier, what is the maximum number of vaults that can be created per region by an AWS account?

Answer

Correct Answer: 1,00

Note: This Question is unanswered, help us to find answer for this one

173. With respect to Amazon VPC, what is the default limit for route tables per VPC?

Answer

Correct Answer: 20

Note: This Question is unanswered, help us to find answer for this one

174. For an AWS account, what is the default limit for the number of Amazon RDS clusters that can be created per region?

Answer

Correct Answer: 4clusters

Note: This Question is unanswered, help us to find answer for this one

175. What is the maximum number of lifecycle rules that can be configured per bucket?

Answer

Correct Answer: 100

Note: This Question is unanswered, help us to find answer for this one

176. If you want to transfer a large amount of data. say 2terabytes. between your on-premises data centres and Amazon SB at a high speed. bypassing the Internet, which of the following options will you choose?

Answer

Correct Answer: AWS Snowball

Note: This Question is unanswered, help us to find answer for this one

177. While installing and starting a LAMP web server on Amazon Linux, which of the following commands is used to start an Apache web server?

Answer

Correct Answer: [ec2-user ~]$ sudo service httpd start

Note: This Question is unanswered, help us to find answer for this one

178. Which of the following Amazon EC2 Operations doesn

Answer

Correct Answer: Allocate Address

Note: This Question is unanswered, help us to find answer for this one

179.

Which of the following is/are the correct limitation(s) for PostgreSOL on Amazon RDS?

1. One can have a maximum of 3PostgreSOL DB instances.

2. The minimum storage size limit for a PostgreSQL DB instance is 5GB.

3. The maximum storage size limit for a PostgreSOL DB instance is 6TB for every instance.


Answer

Correct Answer:

Only 2 and 3 are correct. 


Note: This Question is unanswered, help us to find answer for this one

180. What is the maximum number of objects that one can have in an Amazon S3 bucket?

Answer

Correct Answer: Any number of objects

Note: This Question is unanswered, help us to find answer for this one

181. What is the maximum number of Amazon Route 53 domains that can be created per AWS account?

Answer

Correct Answer: 5

Note: This Question is unanswered, help us to find answer for this one

182. With respect to Amazon RDS implementation of Microsoft SQL Server on a DB instance, what is the maximum number of databases that can be created on each of the DB instances running Microsoft SQL Server?

Answer

Correct Answer: 3

Note: This Question is unanswered, help us to find answer for this one

183.

Which of the following load balancers support(s) websockets?

1. Classic Load Balancer.

2. Application Load Balancer.


Answer

Correct Answer:

Only 2 


Note: This Question is unanswered, help us to find answer for this one

184. What is the maximum number of On-Demand instances that can be run in Amazon EC2?

Answer

Correct Answer: 2

Note: This Question is unanswered, help us to find answer for this one

185. Which of the following databases support(s) only the InnoDB storage engine?

Answer

Correct Answer: Amazon Aurora

Note: This Question is unanswered, help us to find answer for this one

186. If an object of Reduced Redundancy Storage (RRS) class is lost, then an event notification message can be sent to which of the following destinations by Amazon S3?

Answer

Correct Answer: To all a. b and c.

Note: This Question is unanswered, help us to find answer for this one

187. With reference to the Amazon Fulfillment Web Service, what are inbound APIs used for?

Answer

Correct Answer: You send your new or used products to Amazon's fulf‌illment centers.

Note: This Question is unanswered, help us to find answer for this one

188. In case of Amazon E—Commerce Service, what will happen if you pass the AssociateTag parameter but omit the Subscriptionld and AWSAccessKeyld parameters?

Answer

Correct Answer: If Subscriptionld is not provided. an error will be returned.

Note: This Question is unanswered, help us to find answer for this one

189. What will the Amazon S3 PutObjectnline operation do if an object already exists in a bucket?

Answer

Correct Answer: It will overwrite the existing object in the bucket

Note: This Question is unanswered, help us to find answer for this one

190. You have placed an order by Amazon Fulfillment Web Service and want to cancel the order. The order can't be canceled if the Fulf‌illmentOrderStatus is:

Answer

Correct Answer: All of above

Note: This Question is unanswered, help us to find answer for this one

191.

Choose True or False.

We can change the name of a bucket after its creation.


Answer

Correct Answer:

False 


Note: This Question is unanswered, help us to find answer for this one

192.

The following request is submitted to the Amazon E-Commerce Service. What will be the outcome?

http://webservices.amazon.com/onca/xml?Service=AWSECommerceService

&SearcHIndex=All

&Sort=salesrank

&Keywords=Books

&ResponseGroup=Medium,Offers

&Count=50

&Operation=ItemSearch

&AssociateTag=[Your Tag Name]

&SubscriptionId=[Your subscription id]


Answer

Correct Answer:

The salesrank value of the sort parameter is not allowed if the value of the searchindex

parameter is set to All. 



Note: This Question is unanswered, help us to find answer for this one

193. How can you find user selectable kernels in Amazon EC2?

Answer

Correct Answer: Describelnstances

Note: This Question is unanswered, help us to find answer for this one

194. One EC2 Compute Unit (ECU) provides the CPU capacity equivalent to:

Answer

Correct Answer: 1.0-1.2 GHz 2007 Opteron

Note: This Question is unanswered, help us to find answer for this one

195.

While copying an Amazon Machine Image (AMI) snapshot, which of the following scenarios are supported?

1. Unencrypted-to-unencrypted.

2. Unencrypted-to-encrypted.

3. Encrypted-to-unencrypted.

4. Encrypted-to-encrypted.


Answer

Correct Answer:

Only 1, 2 and 4 are supported. 


Note: This Question is unanswered, help us to find answer for this one

196.

What will be the value of the Action attribute of the form where the bucket name is johnsmith?


Example:


<form action=“???????" method="post" enctype="muItipart/form-data">..</form>

Answer

Correct Answer:

http://johnsmith.s3.amazonaws.com/


Note: This Question is unanswered, help us to find answer for this one

197. With reference to the Amazon Flexible Payment Service, for how many days is a Reserve authorization valid?

Answer

Correct Answer: 7 days

Note: This Question is unanswered, help us to find answer for this one

198. With respect to PostgreSQL on Amazon RDS, what is the maximum number of connections reserved by Amazon RDS for system maintenance?

Answer

Correct Answer: Three

Note: This Question is unanswered, help us to find answer for this one

199.

Which of the following is correct if CNAME is empty in Amazon CloudFront service?

1.<?xml version="1.0" encoding="UTF-8"?>

<DistributionConfig xmlns="http://cloudfront.amazonaws.com/doc/2008-06-30/">

<Origin>mybucket.s3.amazonaws.com</Origin>

<CallerReference>20080930090000</CallerReference>

<Comment>My comments</Comment>

<Enabled>true</Enabled>

</DistributionConfig><


2.<?xml version="1.0" encoding="UTF-8"?>

<DistributionConfig xmlns="http://cloudfront.amazonaws.com/doc/2008-06-30/">

<Origin>mybucket.s3.amazonaws.com</Origin>

<CallerReference>20080930090000</CallerReference>

<CNAME/>

<Comment>My comments</Comment>

<Enabled>true</Enabled>

</DistributionConfig>


Answer

Correct Answer:

1


Note: This Question is unanswered, help us to find answer for this one

200. With respect to Amazon CloudFront entities, what is the maximum file size for HTTP GET, POST and PUT requests?

Answer

Correct Answer: 20GB

Note: This Question is unanswered, help us to find answer for this one

201. While creating VPCs and subnets for IPv4, which of the following IP addresses is reserved by AWS for the VPC router in a subnet with CIDR block 10.0.0.0/24?

Answer

Correct Answer: 10.0.0.1

Note: This Question is unanswered, help us to find answer for this one

202. Which of the following is the types of Grantee, that can access a bucket or an object of Amazon S3?

Answer

Correct Answer: Both a and b

Note: This Question is unanswered, help us to find answer for this one

203. While creating VPCs and subnets for IPv4 in a subnet with CIDR block 10.0.0.0/24, which of the following IP addresses is reserved by AWS for future use?

Answer

Correct Answer: 10.0.0.3

Note: This Question is unanswered, help us to find answer for this one

204. Which of the following statements is/are correct about IP addresses for EC2-VPC?

Answer

Correct Answer: Instances support multiple IPv4 addresses.

Note: This Question is unanswered, help us to find answer for this one

205. With respect to Amazon EBS Volume Types, what is the maximum throughput per volume in case of the Provisioned lOPS SSD (io1) volume type?

Answer

Correct Answer: 32MiB/s

Note: This Question is unanswered, help us to find answer for this one

206. With respect to VPC security, which of the following statements is/are correct about security groups and network ACLs?

Answer

Correct Answer: Only b and c are correct.

Note: This Question is unanswered, help us to find answer for this one

207.

With respect to Amazon EC2 Systems Manager, the Run command can be run from:

1. an EC2 console.

2. Windows PowerShell.

3. an AWS command line interface.

4. AWS SDKs.


Answer

Correct Answer:

All 1, 2, 3 and 4.


Note: This Question is unanswered, help us to find answer for this one

208. Which of the following is not related to the Rebootlnstances Operation of EC2?

Answer

Correct Answer: This is a synchronous operation.

Note: This Question is unanswered, help us to find answer for this one

209. Suppose you are making a request to the Amazon Flexible Payment Service and you get an error called InternalError. What is the cause of the error?

Answer

Correct Answer: A retriable error has occurred due to some transient problem in the system.

Note: This Question is unanswered, help us to find answer for this one

210. Which of the following databases support(s) plugins?

Answer

Correct Answer: Both a and b

Note: This Question is unanswered, help us to find answer for this one

211. Which of the following Use Cases belong to Inbound FWS APls?

Answer

Correct Answer: Marking a Shipment as Shipped

Note: This Question is unanswered, help us to find answer for this one

212. Which of the following types of metadata is never processed by Amazon S3?

Answer

Correct Answer: User metadata.

Note: This Question is unanswered, help us to find answer for this one

213.

Which of the following statements is/are incorrect about Amazon EC2 reserved instances?

Statement 1: Reserved instances can be applied to Spot instances.

Statement 2: Reserved instances cannot be applied to instances that run on dedicated hosts.


Answer

Correct Answer:

Only statement 1 is incorrect.


Note: This Question is unanswered, help us to find answer for this one

214.

Which of the following databases do not support virtual columns?

1. MariaDB

2. MySQL

3. Amazon Aurora


Answer

Correct Answer:

Only 2 and 3. 


Note: This Question is unanswered, help us to find answer for this one

215. Which of the following features of MariaDB version 10.1 is supported by Amazon RDS?

Answer

Correct Answer: Page Compression

Note: This Question is unanswered, help us to find answer for this one

216. With respect to Amazon EC2 Systems Manager, which of the following statements is/are correct about State Manager?

Answer

Correct Answer: Both a and c are correct.

Note: This Question is unanswered, help us to find answer for this one

217. What is the function of the RetryTransaction Operation of the Amazon Flexible Payment Service?

Answer

Correct Answer: If a transaction was temporarily declined, the transaction can be processed again using the original transaction ID.

Note: This Question is unanswered, help us to find answer for this one

218. Which of the following is an AMI launch permission, in which, the launch permission to a specific AWS account is granted by an owner?

Answer

Correct Answer: Explicit

Note: This Question is unanswered, help us to find answer for this one

219. mazon Glacier is designed for:

Answer

Correct Answer: infrequently accessed data

Note: This Question is unanswered, help us to find answer for this one

220. It is possible to set up replication between standalone RDS instances via the console interface?

Answer

Correct Answer: False

Note: This Question is unanswered, help us to find answer for this one

221. To protect S3 data from both accidental deletion and accidental overwriting, you should:

Answer

Correct Answer: disable S3 delete using an IAM bucket policy

Note: This Question is unanswered, help us to find answer for this one

222. How can you increase EBS capacity with no data loss?

Answer

Correct Answer: ELB could not be scaled up or down

Note: This Question is unanswered, help us to find answer for this one

223. Which of the following statements are true with regard to the Amazon Mechanical Turk Notifications?

Answer

Correct Answer: A notification can be sent through email

Note: This Question is unanswered, help us to find answer for this one

224. Which of the following parameters are mandatory for the InstallPaymentInstruction operation of the Amazon Flexible Payment Service?

Answer

Correct Answer: TokenType

Note: This Question is unanswered, help us to find answer for this one

225. Once you create an Amazon Mechanical Turk HIT, you can't change its HITType.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

226. Is the following statement true or false? With reference to the Amazon Flexible Payment Service, once you subscribe to the caller notification using the SubscribeForCallerNotification operation, you cannot unsubscribe the notification service.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

227. It is possible to set up replication between RDS instances.

Answer

Correct Answer: False

Note: This Question is unanswered, help us to find answer for this one

228. Which of the following database options are available with OpsWorks?

Answer

Correct Answer: Only MySQL

Note: This Question is unanswered, help us to find answer for this one

229. What command is used to implement CloudWatch custom metrics?

Answer

Correct Answer: put-metric-data

Note: This Question is unanswered, help us to find answer for this one

230. What is the default email limit for SES for a new account?

Answer

Correct Answer: 10,000 per day and 5 per second

Note: This Question is unanswered, help us to find answer for this one

231. Which of these sections is always required in CloudFormation templates when launching stacks?

Answer

Correct Answer: Resources

Note: This Question is unanswered, help us to find answer for this one

232. Is Cooldown in AWS Auto-scaling a mandatory parameter?

Answer

Correct Answer: No

Note: This Question is unanswered, help us to find answer for this one

233. Amazon guarantees maximum availability across:

Answer

Correct Answer: Each service Region, as a whole

Note: This Question is unanswered, help us to find answer for this one

234. What ports to proxy are available with ELB?

Answer

Correct Answer: 25, 80, 443 and 1024 to 65535 inclusive

Note: This Question is unanswered, help us to find answer for this one

235. How can you decrease network latency for cluster type instances?

Answer

Correct Answer: By using placement groups

Note: This Question is unanswered, help us to find answer for this one

236. Is it possible to have stored procedures in RDS MySQL?

Answer

Correct Answer: Yes, they could be turned on via API

Note: This Question is unanswered, help us to find answer for this one

237. This service provides a solution for connecting local storage volumes with secure, off-site incremental backups in Amazon S3:

Answer

Correct Answer: Storage Gateway

Note: This Question is unanswered, help us to find answer for this one

238. What could be set up as an origin of CloudFront distribution?

Answer

Correct Answer: S3 bucket or external web service

Note: This Question is unanswered, help us to find answer for this one

239. Autoscaling group supports:

Answer

Correct Answer: Horizontal scaling

Note: This Question is unanswered, help us to find answer for this one

240. This high level application management service allows layered "stacks" of AWS services to be provisioned, managed, and configured automatically, using the Chef framework's "recipe" system for custom configuration:

Answer

Correct Answer: OpsWorks

Note: This Question is unanswered, help us to find answer for this one

241. AWS includes an extremely low-cost storage service, ideal for backups and other rarely retrieved, high-latency applications, called:

Answer

Correct Answer: Amazon Glacier

Note: This Question is unanswered, help us to find answer for this one

242. The AWS petabyte-scale data warehouse service is called:

Answer

Correct Answer: Redshift

Note: This Question is unanswered, help us to find answer for this one

243. What is the default queue limit for SQS for a new account?

Answer

Correct Answer: No limits are set

Note: This Question is unanswered, help us to find answer for this one

244. From where does CloudFront deliver your content?

Answer

Correct Answer: Origin servers.

Note: This Question is unanswered, help us to find answer for this one

245. How can you rewrite URLs with ELB?

Answer

Correct Answer: None of these

Note: This Question is unanswered, help us to find answer for this one

246. What should be set up to move files from S3 to Glacier automatically?

Answer

Correct Answer: Lifecycle rules

Note: This Question is unanswered, help us to find answer for this one

247. Would an AWS user be billed for their primary Elastic IP attached to an EC2 instance?

Answer

Correct Answer: No

Note: This Question is unanswered, help us to find answer for this one

248. An EBS volume can be attached to more than one instance at a time.

Answer

Correct Answer: False

Note: This Question is unanswered, help us to find answer for this one

249. Which of these entities could be transferred between AWS regions?

Answer

Correct Answer: AMI and EBS snapshot

Note: This Question is unanswered, help us to find answer for this one

250. Which of the following tool is used to create CloudFormation templates based on existing AWS deployments?

Answer

Correct Answer: CloudFormer

Note: This Question is unanswered, help us to find answer for this one

251. Spot instance is terminated when:

Answer

Correct Answer: Spot price is higher than bid

Note: This Question is unanswered, help us to find answer for this one

252. Is it possible to change EC2 instance type?

Answer

Correct Answer: Yes, while it's in stop state

Note: This Question is unanswered, help us to find answer for this one

253. AWS provides storage for secure cryptographic keys via specialized security hardware through this service:

Answer

Correct Answer: CloudHSM

Note: This Question is unanswered, help us to find answer for this one

254. VPC has a monthly cost to use.

Answer

Correct Answer: False

Note: This Question is unanswered, help us to find answer for this one

255. Which region does not support read after write for objects on S3?

Answer

Correct Answer: US Standard

Note: This Question is unanswered, help us to find answer for this one

256. What is the name of the Amazon Web Service that provides scalable storage in the cloud?

Answer

Correct Answer: Simple Storage Service

Note: This Question is unanswered, help us to find answer for this one

257. How do you get access to a Windows instance in EC2?

Answer

Correct Answer: Use Web console ‘Connect’

Note: This Question is unanswered, help us to find answer for this one

258. What is the proper way to denote the syntax for a customer gateway?

Answer

Correct Answer: ec2-create-customer-gateway -t type -i ip_address -b bgp_asn

Note: This Question is unanswered, help us to find answer for this one

259. How can you scale ELB to process requests faster?

Answer

Correct Answer: You can't do it. AWS scales ELB automatically depending on requests rate.

Note: This Question is unanswered, help us to find answer for this one

260. This service helps to create and provision deployments quickly and easily, by using template files to describe a "stack" of AWS resources:

Answer

Correct Answer: CloudFormation

Note: This Question is unanswered, help us to find answer for this one

261. AWS reserved instances is a:

Answer

Correct Answer: Upfront fee and lowered hourly rate for 1 or 3 years

Note: This Question is unanswered, help us to find answer for this one

262. When an EC2 instance is in a stopped state, the user pays:

Answer

Correct Answer: Only for EBS storage instance uses

Note: This Question is unanswered, help us to find answer for this one

263. AWS provides a facility for data-driven workflows, allowing application data to be transferred automatically between services as work is completed:

Answer

Correct Answer: Data Pipeline

Note: This Question is unanswered, help us to find answer for this one

264. What alarm states are available in CloudWatch?

Answer

Correct Answer: OK, ALARM and INSUFFICIENT DATA

Note: This Question is unanswered, help us to find answer for this one

265. Which of these can you use to deploy and manage your applications?

Answer

Correct Answer: AWS Elastic Beanstalk

Note: This Question is unanswered, help us to find answer for this one

266. What are pipelines under Amazon Elastic Transcoder?

Answer

Correct Answer: Queues that manage your transcoding jobs.

Note: This Question is unanswered, help us to find answer for this one

267. Which of the following is an AWS Elastic Beanstalk component?

Answer

Correct Answer: Environment.

Note: This Question is unanswered, help us to find answer for this one

268. The capacity management, load balancing, scaling, and health monitoring of an AWS application can all be handled automatically by:

Answer

Correct Answer: Elastic Beanstalk

Note: This Question is unanswered, help us to find answer for this one

269. Amazon SQS max message size is ______.

Answer

Correct Answer: 256KB

Note: This Question is unanswered, help us to find answer for this one

270. What is the service, Amazon SES used for?

Answer

Correct Answer: Sending email

Note: This Question is unanswered, help us to find answer for this one

271. What happens if primary RDS instance in MultiAZ deployment fails?

Answer

Correct Answer: AWS switches endpoint to a secondary RDS instance, no additional actions from users are needed

Note: This Question is unanswered, help us to find answer for this one

272. What is the name of the Amazon Web Service that provides resizable compute capacity in the cloud?

Answer

Correct Answer: Elastic Compute Cloud

Note: This Question is unanswered, help us to find answer for this one

273. What does AWS Compute provide?

Answer

Correct Answer: Scalable virtual private servers.

Note: This Question is unanswered, help us to find answer for this one

274. What kind of data does Amazon Kinesis process?

Answer

Correct Answer: Streaming data.

Note: This Question is unanswered, help us to find answer for this one

275. RRS should only be used for data that is easy replicated.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

276. True of false: IAM user permissions can be set to control specific EC2 instances.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

277. AWS provides a highly available and scalable Domain Name Service called:

Answer

Correct Answer: Route 53

Note: This Question is unanswered, help us to find answer for this one

278. When in a "Stopped" state, an EC2 instance is billed:

Answer

Correct Answer: For instance storage only

Note: This Question is unanswered, help us to find answer for this one

279. What is Amazon Elastic Transcoder?

Answer

Correct Answer: It is a service that lets you convert video files stored in your Amazon Simple Storage Service.

Note: This Question is unanswered, help us to find answer for this one

280. AWS provides consolidated billing, allowing one account to pay for multiple services:

Answer

Correct Answer: True, for any number of services

Note: This Question is unanswered, help us to find answer for this one

281. What part of AWS handles their DNS?

Answer

Correct Answer: Amazon Route 53.

Note: This Question is unanswered, help us to find answer for this one

282. What two interfaces does Amazon S3 use?

Answer

Correct Answer: REST and SOAP interfaces.

Note: This Question is unanswered, help us to find answer for this one

283. If you wanted to delete a subnet or a gateway, what would you use?

Answer

Correct Answer: AWS Management Console.

Note: This Question is unanswered, help us to find answer for this one

284. What is Amazon EMR responsible for?

Answer

Correct Answer: Elastic Map Reduce is a web service that makes it easier to process large amounts via a Hadoop framework.

Note: This Question is unanswered, help us to find answer for this one

285. What is the software prerequisites for using AWS at the command line?

Answer

Correct Answer: Linux, OS X, or Unix

Note: This Question is unanswered, help us to find answer for this one

286. AWS provides a scalable, distributed in-memory cache service called:

Answer

Correct Answer: ElastiCache

Note: This Question is unanswered, help us to find answer for this one

287. What does AWS use for content delivery?

Answer

Correct Answer: Amazon CloudFront.

Note: This Question is unanswered, help us to find answer for this one

288. It is possible to create custom OS images in EC2.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

289. AWS Free Tier is wide enough to get acquainted with almost all services.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

290. Elasticity can be defined as the degree to which an infrastructure is able to adapt to work loads by scaling (provisioning) resources up and down automatically.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

291. This service can be used to store and retrieve any amount of data at any time, from anywhere on the web:

Answer

Correct Answer: Simple Storage Service (S3)

Note: This Question is unanswered, help us to find answer for this one

292. What is an RDS?

Answer

Correct Answer: Relational Database Service

Note: This Question is unanswered, help us to find answer for this one

293. What type of Route53 alias could be set?

Answer

Correct Answer: All of these

Note: This Question is unanswered, help us to find answer for this one

294. What method is used to send emails with SES?

Answer

Correct Answer: Both SMTP and API

Note: This Question is unanswered, help us to find answer for this one

295. What is an example of a security group used by Amazon RDS?

Answer

Correct Answer: EC2 security group.

Note: This Question is unanswered, help us to find answer for this one

296. RDS Multi-AZ deployment is available for:

Answer

Correct Answer: All of the above

Note: This Question is unanswered, help us to find answer for this one

297. For objects larger than 5GB in S3, multipart upload is required.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

298. What data format must an HTTP request to DynamoDB be made in?

Answer

Correct Answer: JSON

Note: This Question is unanswered, help us to find answer for this one

299. If instance is under termination protection, what would happen after a scale down policy action?

Answer

Correct Answer: Instance will not be terminated, but will be excluded from autoscaling group

Note: This Question is unanswered, help us to find answer for this one

300. What format does CloudFormation use for templates?

Answer

Correct Answer: JSON

Note: This Question is unanswered, help us to find answer for this one

301. The process of shipping inventory to Amazon and out to your customers can be automated using this service:

Answer

Correct Answer: Amazon Fulfillment

Note: This Question is unanswered, help us to find answer for this one

302. It's possible to bill for applications that are built in, or run on top of, Amazon Web Services, using:

Answer

Correct Answer: Amazon DevPay

Note: This Question is unanswered, help us to find answer for this one

303. AWS's managed NoSQL database service is called:

Answer

Correct Answer: DynamoDB

Note: This Question is unanswered, help us to find answer for this one

304. With help of _______ you can restrict network access to EC2 instances.

Answer

Correct Answer: Security Groups

Note: This Question is unanswered, help us to find answer for this one

305. What type of parameter is “email”?

Answer

Correct Answer: String.

Note: This Question is unanswered, help us to find answer for this one

306. What would be the best way to set permissions on an S3 bucket if you would like to deliver the content over the internet but only to your employees?

Answer

Correct Answer: Use S3 signed URL's through the API

Note: This Question is unanswered, help us to find answer for this one

307. If AWS sends you a message stating that one of your instances will be terminated because of hardware failure, you need to:

Answer

Correct Answer: Stop and start this instance

Note: This Question is unanswered, help us to find answer for this one

308. What is the name of the Amazon Web Service that provides easy to set up, operate, and scale a relational database in the cloud?

Answer

Correct Answer: Relational Database Service

Note: This Question is unanswered, help us to find answer for this one

309. What type of distribution is available for CloudFront?

Answer

Correct Answer: Download and streaming

Note: This Question is unanswered, help us to find answer for this one