AWS-SysOps Exam - AWS Certified SysOps Administrator Associate

certleader.com

Q1. - (Topic 3) 

An application you maintain consists of multiple EC2 instances in a default tenancy VPC. This application has undergone an internal audit and has been determined to require dedicated hardware for one instance. Your compliance team has given you a week to move this instance to single-tenant hardware. 

Which process will have minimal impact on your application while complying with this requirement? 

A. Create a new VPC with tenancy=dedicated and migrate to the new VPC 

B. Use ec2-reboot-instances command line and set the parameter "dedicated=true" 

C. Right click on the instance, select properties and check the box for dedicated tenancy 

D. Stop the instance, create an AMI, launch a new instance with tenancy=dedicated, and terminate the old instance 

Answer:

Explanation: Reference: 

http://docs.aws.amazon.com/AWSEC2/latest/CommandLineReference/ApiReference-cmd-CreateVpc.html 

Q2. - (Topic 3) 

An organization (Account ID 123412341234. has attached the below mentioned IAM policy to a user. What does this policy statement entitle the user to perform? 

"Version": "2012-10-17", 

"Statement": [{ 

"Sid": "AllowUsersAllActionsForCredentials", 

"Effect": "Allow", 

"Action": [ 

"iam:*LoginProfile", 

"iam:*AccessKey*", 

"iam:*SigningCertificate*" 

], 

"Resource": ["arn:aws:iam:: 123412341234:user/${aws:username}"] 

}] 

A. The policy allows the IAM user to modify all IAM user’s credentials using the console, SDK, CLI or APIs 

B. The policy will give an invalid resource error 

C. The policy allows the IAM user to modify all credentials using only the console 

D. The policy allows the user to modify all IAM user’s password, sign in certificates and access keys using only CLI, SDK or APIs 

Answer:

Explanation: 

WS Identity and Access Management is a web service which allows organizations to manage users and user permissions for various AWS services. If the organization (Account ID 123412341234. wants some of their users to manage credentials (access keys, password, and sing in certificates. of all IAM users, they should set an applicable policy to that user or group of users. The below mentioned policy allows the IAM user to modify the credentials of all IAM user’s using only CLI, SDK or APIs. The user cannot use the AWS 

console for this activity since he does not have list permission for the IAM users. 

"Version": "2012-10-17", 

"Statement": [{ 

"Sid": "AllowUsersAllActionsForCredentials", 

"Effect": "Allow" 

"Action": [ 

"iam:*LoginProfile", 

"iam:*AccessKey*", 

"iam:*SigningCertificate*" 

], 

"Resource": ["arn:aws:iam::123412341234:user/${aws:username}"] 

Amazon AWS-SysOps : Practice Test 

}] } 

Q3. - (Topic 2) 

A user has developed an application which is required to send the data to a NoSQL database. The user wants to decouple the data sending such that the application keeps processing and sending data but does not wait for an acknowledgement of DB. Which of the below mentioned applications helps in this scenario? 

A. AWS Simple Notification Service 

B. AWS Simple Workflow 

C. AWS Simple Queue Service 

D. AWS Simple Query Service 

Answer:

Explanation: 

Amazon Simple Queue Service (SQS. is a fast, reliable, scalable, and fully managed message queuing service. SQS provides a simple and cost-effective way to decouple the components of an application. In this case, the user can use AWS SQS to send messages which are received from an application and sent to DB. The application can continue processing data without waiting for any acknowledgement from DB. The user can use SQS to transmit any volume of data without losing messages or requiring other services to always be available. 

Q4. - (Topic 2) 

A user has created a photo editing software and hosted it on EC2. The software accepts requests from the user about the photo format and resolution and sends a message to S3 to enhance the picture accordingly.Which of the below mentioned AWS services will help make a scalable software with the AWS infrastructure in this scenario? 

A. AWS Glacier 

B. AWS Elastic Transcoder 

C. AWS Simple Notification Service 

D. AWS Simple Queue Service 

Answer:

Explanation: 

Amazon Simple Queue Service (SQS. is a fast, reliable, scalable, and fully managed message queuing service. SQS provides a simple and cost-effective way to decouple the components of an application. The user can configure SQS, which will decouple the call between the EC2 application and S3. Thus, the application does not keep waiting for S3 to provide the data. 

Q5. - (Topic 2) 

A customer is using AWS for Dev and Test. The customer wants to setup the Dev environment with 

Cloudformation. Which of the below mentioned steps are not required while using Cloudformation? 

A. Create a stack 

B. Configure a service 

C. Create and upload the template 

D. Provide the parameters configured as part of the template 

Answer:

Explanation: 

AWS Cloudformation is an application management tool which provides application modelling, deployment, configuration, management and related activities. AWS CloudFormation introduces two concepts: the template and the stack. The template is a JSON-format, text-based file that describes all the AWS resources required to deploy and run an application. The stack is a collection of AWS resources which are created and managed as a single unit when AWS CloudFormation instantiates a template. While creating a stack, the user uploads the template and provides the data for the parameters if required. 

Q6. - (Topic 1) 

You have identified network throughput as a bottleneck on your m1.small EC2 instance when uploading data Into Amazon S3 In the same region. 

How do you remedy this situation? 

A. Add an additional ENI 

B. Change to a larger Instance 

C. Use DirectConnect between EC2 and S3 

D. Use EBS PIOPS on the local volume 

Answer:

Explanation: Reference: 

https://media.amazonwebservices.com/AWS_Amazon_EMR_Best_Practices.pdf 

Q7. - (Topic 2) 

An organization wants to move to Cloud. They are looking for a secure encrypted database storage option. Which of the below mentioned AWS functionalities helps them to achieve this? 

A. AWS MFA with EBS 

B. AWS EBS encryption 

C. Multi-tier encryption with Redshift 

D. AWS S3 server side storage 

Answer:

Explanation: 

AWS EBS supports encryption of the volume while creating new volumes. It also supports creating volumes from existing snapshots provided the snapshots are created from encrypted volumes. The data at rest, the I/O as well as all the snapshots of EBS will be encrypted. The encryption occurs on the servers that host the EC2 instances, providing encryption of data as it moves between the EC2 instances and EBS storage. EBS encryption is based on the AES-256 cryptographic algorithm, which is the industry standard 

Q8. - (Topic 3) 

An AWS root account owner is trying to create a policy to access RDS. Which of the below mentioned 

statements is true with respect to the above information? 

A. Create a policy which allows the users to access RDS and apply it to the RDS instances 

B. The user cannot access the RDS database if he is not assigned the correct IAM policy 

C. The root account owner should create a policy for the IAM user and give him access to the RDS services 

D. The policy should be created for the user and provide access for RDS 

Answer:

Explanation: 

AWS Identity and Access Management is a web service which allows organizations to manage users and user permissions for various AWS services. If the account owner wants to create a policy for RDS, the owner has to create an IAM user and define the policy which entitles the IAM user with various RDS services such as Launch Instance, Manage security group, Manage parameter group etc. 

Q9. - (Topic 3) 

A user has created a VPC with public and private subnets using the VPC wizard. Which of the below 

mentioned statements is true in this scenario? 

A. The AWS VPC will automatically create a NAT instance with the micro size 

B. VPC bounds the main route table with a private subnet and a custom route table with a public subnet 

C. The user has to manually create a NAT instance D. VPC bounds the main route table with a public subnet and a custom route table with a private subnet 

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. If the user has created a public private subnet, the instances in the public subnet can receive inbound traffic directly from the internet, whereas the instances in the private subnet cannot. If these subnets are created with Wizard, AWS will create a NAT instance of a smaller or higher size, respectively. The VPC has an implied router and the VPC wizard updates the main route table used with the private subnet, creates a custom route table and associates it with the public subnet. 

Q10. - (Topic 3) 

An organization is planning to create a user with IAM. They are trying to understand the limitations of IAM so that they can plan accordingly. Which of the below mentioned statements is not true with respect to the 

limitations of IAM? 

A. One IAM user can be a part of a maximum of 5 groups 

B. The organization can create 100 groups per AWS account 

C. One AWS account can have a maximum of 5000 IAM users 

D. One AWS account can have 250 roles 

Answer:

Explanation: 

AWS Identity and Access Management is a web service which allows organizations to manage users and user permissions for various AWS services. The default maximums for each of the IAM entities is given below: Groups per AWS account: 100 Users per AWS account: 5000 Roles per AWS account: 250 Number of groups per user: 10 (that is, one user can be part of these many groups.