AWS-SysOps Premium Bundle

AWS-SysOps Premium Bundle

AWS Certified SysOps Administrator Associate Certification Exam

4.5 
(36930 ratings)
0 QuestionsPractice Tests
0 PDFPrint version
November 23, 2024Last update

Amazon AWS-SysOps Free Practice Questions

Q1. - (Topic 2) 

A user is trying to understand the ACL and policy for an S3 bucket. Which of the below mentioned policy 

permissions is equivalent to the WRITE ACL on a bucket? 

A. s3:GetObjectAcl 

B. s3:GetObjectVersion 

C. s3:ListBucketVersions 

D. s3:DeleteObject 

Answer:

Explanation: 

Amazon S3 provides a set of operations to work with the Amazon S3 resources. Each AWS S3 bucket can have an ACL (Access Control List. or bucket policy associated with it. The WRITE ACL list allows the other AWS accounts to write/modify to that bucket. The equivalent S3 bucket policy permission for it is s3:DeleteObject. 

Q2. - (Topic 3) 

An organization has created one IAM user and applied the below mentioned policy to the user. What entitlements do the IAM users avail with this policy? 

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

"Statement": [ 

"Effect": "Allow", 

"Action": "ec2:Describe*", 

"Resource": "*" 

}, 

"Effect": "Allow" 

"Action": [ 

"cloudwatch:ListMetrics", 

"cloudwatch:GetMetricStatistics", 

"cloudwatch:Describe*" 

], 

"Resource": "*" 

}, 

"Effect": "Allow", 

"Action": "autoscaling:Describe*", 

"Resource": "*" 

A. The policy will allow the user to perform all read only activities on the EC2 services 

B. The policy will allow the user to list all the EC2 resources except EBS 

C. The policy will allow the user to perform all read and write activities on the EC2 services 

D. The policy will allow the user to perform all read only activities on the EC2 services except load Balancing 

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 an organization wants to setup read only access to EC2 for a particular user, they should mention the action in the IAM policy which entitles the user for Describe rights for EC2, CloudWatch, Auto Scaling and ELB. In the policy shown below, the user will have read only access for EC2 and EBS, CloudWatch and Auto Scaling. Since ELB is not mentioned as a part of the list, the user will not have access to ELB. 

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

"Statement": [ 

"Effect": "Allow", 

"Action": "ec2:Describe*", 

"Resource": "*" 

}, 

"Effect": "Allow", 

"Action": [ 

"cloudwatch:ListMetrics", 

"cloudwatch:GetMetricStatistics", 

"cloudwatch:Describe*" 

], 

"Resource": "*" 

}, 

"Effect": "Allow", 

"Action": "autoscaling:Describe*", 

"Resource": "*" 

Q3. - (Topic 3) 

You run a web application with the following components Elastic Load Balancer (EL8), 3 Web/Application servers, 1 MySQL RDS database with read replicas, and Amazon Simple Storage Service (Amazon S3) for static content. Average response time for users is increasing slowly. 

What three CloudWatch RDS metrics will allow you to identify if the database is the bottleneck? Choose 3 answers 

A. The number of outstanding IOs waiting to access the disk. 

B. The amount of write latency. 

C. The amount of disk space occupied by binary logs on the master. 

D. The amount of time a Read Replica DB Instance lags behind the source DB Instance 

E. The average number of disk I/O operations per second. 

Answer: A,B,D 

Q4. - (Topic 2) 

You are building an online store on AWS that uses SQS to process your customer orders. Your backend system needs those messages in the same sequence the customer orders have been put in. How can you achieve that? 

A. It is not possible to do this with SQS 

B. You can use sequencing information on each message 

C. You can do this with SQS but you also need to use SWF 

D. Messages will arrive in the same order by default 

Answer:

Explanation: 

Amazon SQS is engineered to always be available and deliver messages. One of the resulting tradeoffs is that SQSdoes not guarantee first in, first out delivery of messages. For many distributed applications, each message can stand on its own, and as long as all messages are delivered, the order is not important. If your system requires that order be preserved, you can place sequencing information in each message, so that you can reorder the messages when the queue returns them. 

Q5. - (Topic 1) 

You need to design a VPC for a web-application consisting of an Elastic Load Balancer (ELB). a fleet of web/application servers, and an RDS database The entire Infrastructure must be distributed over 2 availability zones. 

Which VPC configuration works while assuring the database is not available from the Internet? 

A. One public subnet for ELB one public subnet for the web-servers, and one private subnet for the database 

B. One public subnet for ELB two private subnets for the web-servers, two private subnets for RDS 

C. Two public subnets for ELB two private subnets for the web-servers and two private subnets for RDS 

D. Two public subnets for ELB two public subnets for the web-servers, and two public subnets for RDS 

Answer:

Q6. - (Topic 3) 

A user is trying to understand the detailed CloudWatch monitoring concept. Which of the below mentioned services does not provide detailed monitoring with CloudWatch? 

A. AWS EMR 

B. AWS RDS 

C. AWS ELB 

D. AWS Route53 

Answer:

Explanation: 

CloudWatch is used to monitor AWS as well as the custom services. It provides either basic or detailed monitoring for the supported AWS products. In basic monitoring, a service sends data points to CloudWatch every five minutes, while in detailed monitoring a service sends data points to CloudWatch every minute. Services, such as RDS, EC2, Auto Scaling, ELB, and Route 53 can provide the monitoring data every minute. 

Q7. - (Topic 2) 

A user has configured the Auto Scaling group with the minimum capacity as 3 and the maximum capacity as 5. When the user configures the AS group, how many instances will Auto Scaling launch? 

A. 3 

B. 0 

C. 5 

D. 2 

Answer:

Q8. - (Topic 3) 

A user has configured Auto Scaling with 3 instances. The user had created a new AMI after updating one of the instances. If the user wants to terminate two specific instances to ensure that Auto Scaling launches an instances with the new launch configuration, which command should he run? 

A. as-delete-instance-in-auto-scaling-group <Instance ID> --no-decrement-desired-capacity 

B. as-terminate-instance-in-auto-scaling-group <Instance ID> --update-desired-capacity 

C. as-terminate-instance-in-auto-scaling-group <Instance ID> --decrement-desired-capacity 

D. as-terminate-instance-in-auto-scaling-group <Instance ID> --no-decrement-desired-capacity 

Answer:

Explanation: 

The Auto Scaling command as-terminate-instance-in-auto-scaling-group <Instance ID> will terminate the specific instance ID. The user is required to specify the parameter as –no-decrement-desired-capacity to ensure that it launches a new instance from the launch config after terminating the instance. If the user specifies the parameter --decrement-desired-capacity then Auto Scaling will terminate the instance and decrease the desired capacity by 1. 

Q9. - (Topic 1) 

Which two AWS services provide out-of-the-box user configurable automatic backup-as-a-

service and backup rotation options? 

Choose 2 answers 

A. Amazon S3 

B. Amazon RDS 

C. Amazon EBS 

D. Amazon Red shift 

Answer: B,D 

Q10. - (Topic 3) 

A user has launched an EC2 instance from an instance store backed AMI. The user has attached an additional instance store volume to the instance. The user wants to create an AMI from the running instance. Will the AMI have the additional instance store volume data? 

A. Yes, the block device mapping will have information about the additional instance store volume 

B. No, since the instance store backed AMI can have only the root volume bundled 

C. It is not possible to attach an additional instance store volume to the existing instance store backed AMI instance 

D. No, since this is ephermal storage it will not be a part of the AMI 

Answer:

Explanation: 

When the user has launched an EC2 instance from an instance store backed AMI and added an instance store volume to the instance in addition to the root device volume, the block device mapping for the new AMI contains the information for these volumes as well. In addition, the block device mappings for the instances those are launched from the new AMI will automatically contain information for these volumes. 

Q11. - (Topic 3) 

A user is collecting 1000 records per second. The user wants to send the data to CloudWatch using the custom namespace. Which of the below mentioned options is recommended for this activity? 

A. Aggregate the data with statistics, such as Min, max, Average, Sum and Sample data and send the data to CloudWatch 

B. Send all the data values to CloudWatch in a single command by separating them with a comma. CloudWatch will parse automatically 

C. Create one csv file of all the data and send a single file to CloudWatch 

D. It is not possible to send all the data in one call. Thus, it should be sent one by one. CloudWatch will aggregate the data automatically 

Answer:

Explanation: 

AWS CloudWatch supports the custom metrics. The user can always capture the custom data and upload the data to CloudWatch using CLI or APIs. The user can publish data to CloudWatch as single data points or as an aggregated set of data points called a statistic set using the command put-metric-data. It is recommended that when the user is having multiple data points per minute, he should aggregate the data so that it will minimize the number of calls to put-metric-data. In this case it will be single call to CloudWatch instead of 1000 calls if the data is aggregated. 

Q12. - (Topic 2) 

A user has launched an EC2 instance. The user is planning to setup the CloudWatch alarm. Which of the 

below mentioned actions is not supported by the CloudWatch alarm? 

A. Notify the Auto Scaling launch config to scale up 

B. Send an SMS using SNS 

C. Notify the Auto Scaling group to scale down 

D. Stop the EC2 instance 

Answer:

Explanation: 

A user can create a CloudWatch alarm that takes various actions when the alarm changes state. An alarm watches a single metric over the time period that the user has specified, and performs one or more actions based on the value of the metric relative to a given threshold over a number of time periods. The actions could be sending a notification to an Amazon Simple Notification Service topic (SMS, Email, and HTTP end point.,notifying the Auto Scaling policy or changing the state of the instance to Stop/Terminate. 

Q13. - (Topic 2) 

A user has setup an RDS DB with Oracle. The user wants to get notifications when someone modifies the 

security group of that DB. How can the user configure that? 

A. It is not possible to get the notifications on a change in the security group 

B. Configure SNS to monitor security group changes 

C. Configure event notification on the DB security group 

D. Configure the CloudWatch alarm on the DB for a change in the security group 

Answer:

Explanation: 

Amazon RDS uses the Amazon Simple Notification Service to provide a notification when an Amazon RDS event occurs. These events can be configured for source categories, such as DB instance, DB security group, DB snapshot and DB parameter group. If the user is subscribed to a Configuration Change category for a DB security group, he will be notified when the DB security group is changed. 

Q14. - (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 

Q15. - (Topic 1) 

When assessing an organization s use of AWS API access credentials which of the following three credentials should be evaluated? 

Choose 3 answers 

A. Key pairs 

B. Console passwords 

C. Access keys 

D. Signing certificates 

E. Security Group memberships 

Answer: A,C,D 

Explanation: Reference: 

http://media.amazonwebservices.com/AWS_Operational_Checklists.pdf 

Q16. - (Topic 1) 

What would happen to an RDS (Relational Database Service) multi-Availability Zone deployment of the primary OB instance fails? 

A. The IP of the primary DB instance is switched to the standby OB instance 

B. The RDS (Relational Database Service) DB instance reboots 

C. A new DB instance is created in the standby availability zone 

D. The canonical name record (CNAME) is changed from primary to standby 

Answer:

START AWS-SysOps EXAM