ExamGecko
Home Home / Amazon / SAP-C01

Amazon SAP-C01 Practice Test - Questions Answers, Page 73

Question list
Search
Search

List of questions

Search

Related questions











A company that runs applications on AWS recently subscribed to a new software-as-a-service (SaaS) data vendor. The vendor provides the data by way of a REST API that the vendor hosts in its AWS environment. The vendor offers multiple options for connectivity to the API and is working with the company to find the best way to connect. The company’s AWS account does not allow outbound internet access from its AWS environment. The vendor’s services run on AWS in the same Region as the company’s applications. A solutions architect must implement connectivity to the vendor’s API so that the API is highly available in the company’s VPC. Which solution will meet these requirements?

A.
Connect to the vendor’s public API address for the data service
A.
Connect to the vendor’s public API address for the data service
Answers
B.
Connect to the vendor by way of a VPC peering connection between the vendor’s VPC and the company’s VPC
B.
Connect to the vendor by way of a VPC peering connection between the vendor’s VPC and the company’s VPC
Answers
C.
Connect to the vendor by way of a VPC endpoint service that uses AWS PrivateLink
C.
Connect to the vendor by way of a VPC endpoint service that uses AWS PrivateLink
Answers
D.
Connect to a public bastion host that the vendor provides. Tunnel the API traffic
D.
Connect to a public bastion host that the vendor provides. Tunnel the API traffic
Answers
Suggested answer: D

Explanation:

Reference: https://docs.oracle.com/en-us/iaas/big-data/doc/use-bastion-host-connect-your-service.html

A user has created a VPC with CIDR 20.0.0.0/16. The user has created one subnet with CIDR 20.0.0.0/16 by mistake. The user is trying to create another subnet of CIDR 20.0.1.0/24. How can the user create the second subnet?

A.
The user can modify the first subnet CIDR with AWS CLI
A.
The user can modify the first subnet CIDR with AWS CLI
Answers
B.
The user can modify the first subnet CIDR from the console
B.
The user can modify the first subnet CIDR from the console
Answers
C.
There is no need to update the subnet as VPC automatically adjusts the CIDR of the first subnet based on the second subnet's CIDR
C.
There is no need to update the subnet as VPC automatically adjusts the CIDR of the first subnet based on the second subnet's CIDR
Answers
D.
It is not possible to create a second subnet with overlapping IP CIDR without deleting the first subnet.
D.
It is not possible to create a second subnet with overlapping IP CIDR without deleting the first subnet.
Answers
Suggested answer: D

Explanation:

A Virtual Private Cloud (VPC) is a virtual network dedicated to the user's AWS account. A user can create a subnet with VPC and launch instances inside the subnet. The user can create a subnet with the same size of VPC. However, he cannot create any other subnet since the CIDR of the second subnet will conflict with the first subnet. The user cannot modify the CIDR of a subnet once it is created. Thus, in this case if required, the user has to delete the subnet and create new subnets.

Reference: http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Subnets.html

Over which of the following Ethernet standards does AWS Direct Connect link your internal network to an AWS Direct Connect location?

A.
Single mode fiber-optic cable
A.
Single mode fiber-optic cable
Answers
B.
Multi-mode fiber-optic cable
B.
Multi-mode fiber-optic cable
Answers
C.
Shielded balanced copper cable
C.
Shielded balanced copper cable
Answers
D.
Twisted pair cable
D.
Twisted pair cable
Answers
Suggested answer: A

Explanation:

AWS Direct Connect links your internal network to an AWS Direct Connect location over a standard 1 gigabit or 10 gigabit Ethernet single mode fiber-optic cable.

Reference: http://docs.aws.amazon.com/directconnect/latest/UserGuide/Welcome.html

ABC has created a multi-tenant Learning Management System (LMS). The application is hosted for five different tenants (clients) in the VPCs of the respective AWS accounts of the tenant. ABC wants to setup a centralized server which can connect with the LMS of each tenant upgrade if required. ABC also wants to ensure that one tenant VPC should not be able to connect to the other tenant VPC for security reasons. How can ABC setup this scenario?

A.
ABC has to setup one centralized VPC which will peer in to all the other VPCs of the tenants.
A.
ABC has to setup one centralized VPC which will peer in to all the other VPCs of the tenants.
Answers
B.
ABC should setup VPC peering with all the VPCs peering each other but block the IPs from CIDR of the tenant VPCs to deny them.
B.
ABC should setup VPC peering with all the VPCs peering each other but block the IPs from CIDR of the tenant VPCs to deny them.
Answers
C.
ABC should setup all the VPCs with the same CIDR but have a centralized VPThis way only the centralized VPC can talk to the other VPCs using VPC peering.
C.
ABC should setup all the VPCs with the same CIDR but have a centralized VPThis way only the centralized VPC can talk to the other VPCs using VPC peering.
Answers
D.
ABC should setup all the VPCs meshed together with VPC peering for all VPCs.
D.
ABC should setup all the VPCs meshed together with VPC peering for all VPCs.
Answers
Suggested answer: A

Explanation:

A Virtual Private Cloud (VPC) is a virtual network dedicated to the user's AWS account. It enables the user to launch AWS resources into a virtual network that the user has defined. A VPC peering connection allows the user to route traffic between the peer VPCs using private IP addresses as if they are a part of the same network.

This is helpful when one VPC from the same or different AWS account wants to connect with resources of the other VPC. The organization wants to setup that one VPC can connect with all the other VPCs but all other VPCs cannot connect among each other. This can be achieved by configuring VPC peering where one VPC is peered with all the other VPCs, but the other VPCs are not peered to each other.

The VPCs are in the same or a separate AWS account and should not have overlapping CIDR blocks.

Reference: http://docs.aws.amazon.com/AmazonVPC/latest/PeeringGuide/peering-configurations-full-access.html#many-vpcs-full-acces

Within the IAM service a GROUP is regarded as a:

A.
A collection of AWS accounts
A.
A collection of AWS accounts
Answers
B.
It's the group of EC2 machines that gain the permissions specified in the GROUP.
B.
It's the group of EC2 machines that gain the permissions specified in the GROUP.
Answers
C.
A collection of users.
C.
A collection of users.
Answers
Suggested answer: C

Explanation:

Use groups to assign permissions to IAM users

Instead of defining permissions for individual IAM users, it’s usually more convenient to create groups that relate to job functions (administrators, developers, accounting, etc.), define the relevant permissions for each group, and then assign IAM users to those groups. All the users in an IAM group inherit the permissions assigned to the group. That way, you can make changes for everyone in a group in just one place. As people move around in your company, you can simply change what IAM group their IAM user belongs to.

Reference: http://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#use-groups-for-permissions

A company has implemented an ordering system using an event driven architecture. During initial testing, the system stopped processing orders. Further log analysis revealed that one order message in an Amazon Simple Queue Service (Amazon SQS) standard queue was causing an error on the backend and blocking all subsequent order messages. The visibility timeout of the queue is set to 30 seconds, and the backend processing timeout is set to 10 seconds. A solutions architect needs to analyze faulty order messages and ensure that the system continues to process subsequent messages. Which step should the solutions architect take to meet these requirements?

A.
Increase the backend processing timeout to 30 seconds to match the visibility timeout.
A.
Increase the backend processing timeout to 30 seconds to match the visibility timeout.
Answers
B.
Reduce the visibility timeout of the queue to automatically remove the faulty message.
B.
Reduce the visibility timeout of the queue to automatically remove the faulty message.
Answers
C.
Configure a new SQS FIFO queue as a dead-letter queue to isolate the faulty messages.
C.
Configure a new SQS FIFO queue as a dead-letter queue to isolate the faulty messages.
Answers
D.
Configure a new SQS standard queue as a dead-letter queue to isolate the faulty messages.
D.
Configure a new SQS standard queue as a dead-letter queue to isolate the faulty messages.
Answers
Suggested answer: D

Explanation:

Reference: https://aws.amazon.com/blogs/compute/using-amazon-sqs-dead-letter-queues-to-control-message-failure/

A utility company wants to collect usage data every 5 minutes from its smart meters to facilitate time-of-use metering. When a meter sends data to AWS, the data is sent to Amazon API Gateway, processed by an AWS Lambda function and stored in an Amazon DynamoDB table. During the pilot phase, the Lambda functions took from 3 to 5 seconds to complete. As more smart meters are deployed, the Engineers notice the Lambda functions are taking from 1 to 2 minutes to complete. The functions are also increasing in duration as new types of metrics are collected from the devices. There are many ProvisionedThroughputExceededException errors while performing PUT operations on DynamoDB, and there are also many TooManyRequestsException errors from Lambda.

Which combination of changes will resolve these issues? (Choose two.)

A.
Increase the write capacity units to the DynamoDB table.
A.
Increase the write capacity units to the DynamoDB table.
Answers
B.
Increase the memory available to the Lambda functions.
B.
Increase the memory available to the Lambda functions.
Answers
C.
Increase the payload size from the smart meters to send more data.
C.
Increase the payload size from the smart meters to send more data.
Answers
D.
Stream the data into an Amazon Kinesis data stream from API Gateway and process the data in batches.
D.
Stream the data into an Amazon Kinesis data stream from API Gateway and process the data in batches.
Answers
E.
Collect data in an Amazon SQS FIFO queue, which triggers a Lambda function to process each message.
E.
Collect data in an Amazon SQS FIFO queue, which triggers a Lambda function to process each message.
Answers
Suggested answer: A, B

A company is storing data on Amazon Simple Storage Service (S3). The company's security policy mandates that data is encrypted at rest. Which of the following methods can achieve this? (Choose three.)

A.
Use Amazon S3 server-side encryption with AWS Key Management Service managed keys.
A.
Use Amazon S3 server-side encryption with AWS Key Management Service managed keys.
Answers
B.
Use Amazon S3 server-side encryption with customer-provided keys.
B.
Use Amazon S3 server-side encryption with customer-provided keys.
Answers
C.
Use Amazon S3 server-side encryption with EC2 key pair.
C.
Use Amazon S3 server-side encryption with EC2 key pair.
Answers
D.
Use Amazon S3 bucket policies to restrict access to the data at rest.
D.
Use Amazon S3 bucket policies to restrict access to the data at rest.
Answers
E.
Encrypt the data on the client-side before ingesting to Amazon S3 using their own master key.
E.
Encrypt the data on the client-side before ingesting to Amazon S3 using their own master key.
Answers
F.
Use SSL to encrypt the data while in transit to Amazon S3.
F.
Use SSL to encrypt the data while in transit to Amazon S3.
Answers
Suggested answer: A, B, E

Explanation:

Reference: http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingKMSEncryption.html

The user has provisioned the PIOPS volume with an EBS optimized instance.

Generally speaking, in which I/O chunk should the bandwidth experienced by the user be measured by AWS?

A.
128 KB
A.
128 KB
Answers
B.
256 KB
B.
256 KB
Answers
C.
64 KB
C.
64 KB
Answers
D.
32 KB
D.
32 KB
Answers
Suggested answer: B

Explanation:

IOPS are input/output operations per second. Amazon EBS measures each I/O operation per second (that is 256 KB or smaller) as one IOPS.

Reference: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-io-characteristics.html

A user has created a MySQL RDS instance with PIOPS. Which of the below mentioned statements will help user understand the advantage of PIOPS?

A.
The user can achieve additional dedicated capacity for the EBS I/O with an enhanced RDS option
A.
The user can achieve additional dedicated capacity for the EBS I/O with an enhanced RDS option
Answers
B.
It uses a standard EBS volume with optimized configuration the stacks
B.
It uses a standard EBS volume with optimized configuration the stacks
Answers
C.
It uses optimized EBS volumes and optimized configuration stacks
C.
It uses optimized EBS volumes and optimized configuration stacks
Answers
D.
It provides a dedicated network bandwidth between EBS and RDS
D.
It provides a dedicated network bandwidth between EBS and RDS
Answers
Suggested answer: C

Explanation:

RDS DB instance storage comes in two types: standard and provisioned IOPS. Standard storage is allocated on the Amazon EBS volumes and connected to the user's DB instance. Provisioned IOPS uses optimized EBS volumes and an optimized configuration stack. It provides additional, dedicated capacity for the EBS I/O.

Reference: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Welcome.html

Total 906 questions
Go to page: of 91