12.12 Udemy - Final Quiz
By default how many VPCs can you have per region in your AWS account? 5.
Which of the following is not a responsibility of Amazon’s under the shared responsibility model? OS level patching for EC2 (not RDS).
You are creating a new VPC with 3 subnets in 3 separate availability zones. You require instances in each subnet to be able to communicate to each other by default. What additional steps should you take in order to achieve this objective. You don't need to do anything, by default all subnets can communicate with each other using the main route table.
You are an AWS architect and you require encryption at rest for additional volumes attached to your EC2 instance. What is the quickest and most efficient way to achieve this? Configure encryption when creating the EBS volume. You could use the OS to encrypt a new volume after mounting it to an EC2 instance, however the quickest and most efficient way would be to encrypt the volume when you first provision it.
DynamoDB is automatically redundant across multiple availability zones.
The AWS platform does not provide you much protection against Social Engineering attacks. But AWS will give you protection from Port Scanning, IP spoofing, Packet Sniffing, Man In The Middle Attack.
Availability Zone names are unique per account and do not represent a specific set of physical resources.
Random prefix to write to S3 buckets when the operations of read/write requests is fast.
Amazon Snowball has replaced the older AWS Import/Export Disk service.
What is the maximum VisibilityTimeout of an SQS message in a FIFO queue? 12 hours.
A client who is using EC2 believes that someone other than approved administrators is trying to gain access to her Linux web app instances, and she asks what sort of network access logging can be added to the system. Which of the following might you recommend? You should make use of an OS level logging tools such as iptables and log events to CloudWatch or S3.
You have a MySQl database running on an EC2 instance in a private subnet. You can connect via SSH, but you are unable to apply updates to the database server via the NAT instance. What might you do to remedy this problem? Ensure that "Source/Destination Checks" is disabled on the NAT instance. With NAT instances, the most common oversight is forgetting to disable Source/Destination Checks.
Amazon SQS keeps track of all tasks and events in an application. False. With SQS, you must implement your own application-level tracking, especially if your application uses multiple queues.
When editing permissions (policies and ACLs), to whom does the concept of the "Owner" refer? The "Owner" refers to the identity and email address used to create the account AWS account.
Your company provides an online image recognition service and uses SQS to decouple system components. Your EC2 instances poll the image queue as often as possible to keep end-to-end throughput as high as possible, but you realize that all this polling is resulting in both a large number of CPU cycles and skyrocketing costs. How can you reduce cost without compromising service? Enable long polling by setting the ReceiveMessageWaitTimeSeconds to a number > 0 (Note: it is seconds).
Your company provides an online image recognition service and uses SQS to decouple system components. Your EC2 instances poll the image queue as often as possible to keep end-to-end throughput as high as possible, but you realize that all this polling is resulting in both a large number of CPU cycles and skyrocketing costs. How can you reduce cost without compromising service? Proactive Cyclic Scaling allows you to scale during the desired time window. (Scheduled scheduling)
Following advice from your consultant, you have configured your VPC to use Dedicated hosting tenancy. A subsequent change to your application has rendered the performance gains from dedicated tenancy superfluous, and you would now like to recoup some of these greater costs. How do you revert to Default hosting tenancy? Once a VPC is set to Dedicated hosting, it is not possible to change the VPC or the instances to Default hosting. You must re-create the VPC. So create AMIs of all your instances, and create a new VPC with Default as the hosting tenancy attribute, and use them to create new instances using Default tenancy.
You are developing a web application, and you are maintaining separate sets of resources for your alpha, beta, and release environments. Each version runs on Amazon EC2 with an EBS volume. You use Elastic Load Balancing to manage traffic and Amazon Route 53 to manage your domain. What's the best way to check the health and status of all three groups of services simultaneously? Create a resource group containing each set of resources and view all three environment from a single, group dashboard. With the Resource Groups tool, you use a single page to view and manage your resources.
Your company has just purchased another company. As part of the merger, your team has been instructed to cross connect the corporate networks. You run all your confidential corporate services and Internal DNS in a VPC. The merged company has all their confidential corporate services and Internal DNS on-premises. After establishing a Direct-Connect service between your VPC and their on-premise network, and confirming all the routing, firewalls, and authentication, you find that while you can resolve names against their DNS, the other company services is unable to resolve names against your DNS servers. Why might this be? By design, AWS DNS does not respond to requests originating from outside the VPC. Route53 has a security feature that prevents internal DNS from being read by external sources. The work around is to create a EC2 hosted DNS instance that does zone transfers from the internal DNS, and allows itself to be queried by external servers.
How is the Public IP address managed in an instance session via the instance GUI/RDP or Terminal/SSH session? The public IP address is not managed on the instance; it is, instead, an alias applied as a network address translation of the private IP address.
You have been engaged by a company to design and lead a migration to an AWS environment. The team is concerned about the capabilities of the new environment, especially when it comes to avoiding bottlenecks. The design calls for about 20 instances (C3.2xLarge) pulling jobs/messages from SQS. Network traffic per instance is estimated to be around 500 Mbps at the beginning and end of each job. Which network configuration should you plan on deploying? When considering network traffic, you need to understand the difference between storage traffic and general network traffic, and the ways to address each. The 10Gbps is a red-herring, in that the 500Mbps only occurs for short intervals, and therefore your sustained throughput is not 10Gpbs. Whereever possible, use simple solutions such as spreading the load out rather than expensive high tech solutions. So your answer should be: spread the instances over multiple AZs to minimize the traffic concentration and maximize the fault tolerance.
You are a consultant planning to deploy DynamoDB across three AZs. Your lead DBA is concerned about data consistency. Which of the following do you advise the lead DBA to do? To ask development team to code for strongly consistent reads.
DynamoDB allows for the storage of large text and binary objects, but there is a limit of 400 KB.
Last updated
Was this helpful?