It is impossible to pass Amazon aws sysops dumps exam without any help in the short term. Come to Ucertify soon and find the most advanced, correct and guaranteed Amazon aws sysops exam dumps practice questions. You will get a surprising result by our Improved AWS Certified SysOps Administrator Associate practice guides.

Q9. - (Topic 3) 

A user is trying to connect to a running EC2 instance using SSH. However, the user gets an Unprotected 

Private Key File error. Which of the below mentioned options can be a possible reason for rejection? 

A. The private key file has the wrong file permission 

B. The ppk file used for SSH is read only 

C. The public key file has the wrong permission 

D. The user has provided the wrong user name for the OS login 

Answer:

Explanation: 

While doing SSH to an EC2 instance, if you get an Unprotected Private Key File error it means that the private key file's permissions on your computer are too open. Ideally the private key should have the Unix permission of 0400. To fix that, run the command: chmod 0400 /path/to/private.key 


Q10. - (Topic 1) 

What are characteristics of Amazon S3? Choose 2 answers 

A. Objects are directly accessible via a URL 

B. S3 should be used to host a relational database 

C. S3 allows you to store objects or virtually unlimited size 

D. S3 allows you to store virtually unlimited amounts of data 

E. S3 offers Provisioned IOPS 

Answer: A,D 


Q11. - (Topic 3) 

A user has granted read/write permission of his S3 bucket using ACL. Which of the below mentioned options is a valid ID to grant permission to other AWS accounts (grantee. using ACL? 

A. IAM User ID 

B. S3 Secure ID 

C. Access ID 

D. Canonical user ID 

Answer:

Explanation: 

An S3 bucket ACL grantee can be an AWS account or one of the predefined Amazon S3 groups. The user can grant permission to an AWS account by the email address of that account or by the canonical user ID. If the user provides an email in the grant request, Amazon S3 finds the canonical user ID for that account and adds it to the ACL. The resulting ACL will always contain the canonical user ID for the AWS account, and not the AWS account's email address. 


Q12. - (Topic 3) 

A user has configured ELB with SSL using a security policy for secure negotiation between the client and load balancer. Which of the below mentioned security policies is supported by ELB? 

A. Dynamic Security Policy 

B. All the other options 

C. Predefined Security Policy 

D. Default Security Policy 

Answer:

Explanation: 

Elastic Load Balancing uses a Secure Socket Layer (SSL. negotiation configuration which is known as a Security Policy. It is used to negotiate the SSL connections between a client and the load balancer. ELB supports two policies: Predefined Security Policy, which comes with predefined cipher and SSL protocols; Custom Security Policy, which allows the user to configure a policy. 


Q13. - (Topic 3) 

Amazon EBS snapshots have which of the following two characteristics? (Choose 2.) Choose 2 answers 

A. EBS snapshots only save incremental changes from snapshot to snapshot 

B. EBS snapshots can be created in real-time without stopping an EC2 instance 

C. EBS snapshots can only be restored to an EBS volume of the same size or smaller 

D. EBS snapshots can only be restored and mounted to an instance in the same Availability Zone as the original EBS volume 

Answer: A,D 


Q14. - (Topic 3) 

A user has launched an EC2 instance and deployed a production application in it. The user wants to prohibit any mistakes from the production team to avoid accidental termination. 

How can the user achieve this? 

A. The user can the set DisableApiTermination attribute to avoid accidental termination 

B. It is not possible to avoid accidental termination 

C. The user can set the Deletion termination flag to avoid accidental termination 

D. The user can set the InstanceInitiatedShutdownBehavior flag to avoid accidental termination 

Answer:

Explanation: 

It is always possible that someone can terminate an EC2 instance using the Amazon EC2 console, command line interface or API by mistake. If the admin wants to prevent the instance from being accidentally terminated, he can enable termination protection for that instance. The DisableApiTermination attribute controls whether the instance can be terminated using the console, CLI or API. By default, termination protection is disabled for an EC2 instance. When it is set it will not allow the user to terminate the instance from CLI, API or the console. 


Q15. - (Topic 3) 

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 in this VPC. The user is trying to create another subnet with the same VPC for CIDR 20.0.0.1/24. What will happen in this scenario? 

A. The VPC will modify the first subnet CIDR automatically to allow the second subnet IP range 

B. It is not possible to create a subnet with the same CIDR as VPC 

C. The second subnet will be created 

D. It will throw a CIDR overlaps error 

Answer:

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 that 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. 


Q16. - (Topic 3) 

A user has created an Auto Scaling group with default configurations from CLI. The user wants to setup the CloudWatch alarm on the EC2 instances, which are launched by the Auto Scaling group. The user has setup an alarm to monitor the CPU utilization every minute. Which of the below mentioned statements is true? 

A. It will fetch the data at every minute but the four data points [corresponding to 4 minutes] will not have value since the EC2 basic monitoring metrics are collected every five minutes 

B. It will fetch the data at every minute as detailed monitoring on EC2 will be enabled by the default launch configuration of Auto Scaling 

C. The alarm creation will fail since the user has not enabled detailed monitoring on the EC2 instances 

D. The user has to first enable detailed monitoring on the EC2 instances to support alarm monitoring at every minute 

Answer:

Explanation: 

CloudWatch is used to monitor AWS as well as the custom services. To enable detailed instance monitoring for a new Auto Scaling group, the user does not need to take any extra steps. When the user creates an Auto Scaling launch config using CLI, each launch configuration contains a flag named InstanceMonitoring.Enabled. The default value of this flag is true. Thus, by default detailed monitoring will be enabled for Auto Scaling as well as for all the instances launched by that Auto Scaling group.