Full Length Test No. 2
1. A global company with a large number of AWS accounts is seeking a way in which they can centrally manage billing and security policies across all accounts. Which AWS Service will assist them in meeting these goals?
- AWS Organizations
- AWS Trusted Advisor
- IAM User Groups
- AWS Config
Answer : A Explanation: AWS Organizations allows companies to centrally manage multiple AWS accounts, apply Service Control Policies (SCPs) for security governance, and consolidate billing across all accounts. AWS Trusted Advisor provides best practice recommendations, IAM User Groups manage permissions within a single account, and AWS Config tracks resource configurations — none of these offer centralized multi-account management.
2. Which service provides object-level storage in AWS?
- Amazon EBS
- Amazon Instance Store
- Amazon EFS
- Amazon S3
Answer : D Explanation: Amazon S3 (Simple Storage Service) is AWS’s object-level storage service, designed to store and retrieve any amount of data as objects within buckets. Amazon EBS provides block-level storage for EC2 instances. Amazon Instance Store is temporary block storage. Amazon EFS is a file-level storage service. Only S3 offers object-level storage.
3. A company is concerned that they are spending money on underutilized compute resources in AWS. Which AWS feature will help ensure that their applications are automatically adding/removing EC2 compute capacity to closely match the required demand?
- AWS Elastic Load Balancer
- AWS Budgets
- AWS Auto Scaling
- AWS Cost Explorer
Answer : C Explanation: AWS Auto Scaling automatically adjusts the number of EC2 instances up or down based on demand, ensuring you only pay for the compute capacity you actually need. Elastic Load Balancer distributes traffic but does not add or remove instances. AWS Budgets and Cost Explorer are cost management tools, not compute scaling solutions.
4. Which S3 storage class is best for data with unpredictable access patterns?
- Amazon S3 Intelligent-Tiering
- Amazon S3 Glacier Flexible Retrieval
- Amazon S3 Standard
- Amazon S3 Standard-Infrequent Access
Answer : A Explanation: Amazon S3 Intelligent-Tiering is specifically designed for data with unknown or unpredictable access patterns. It automatically moves objects between frequent and infrequent access tiers based on usage, optimizing costs without performance impact or retrieval fees. S3 Glacier is for archival data, S3 Standard is for frequently accessed data, and S3 Standard-IA is for infrequently accessed data with predictable patterns.
5. What is the AWS database service that allows you to upload data structured in key-value format?
- Amazon DynamoDB
- Amazon Aurora
- Amazon Redshift
- Amazon RDS
Answer : A Explanation: Amazon DynamoDB is a fully managed NoSQL database service that supports key-value and document data structures. It is ideal for applications that need consistent, single-digit millisecond performance at any scale. Amazon Aurora, RDS, and Redshift are all relational (SQL) databases that use structured table-based formats, not key-value pairs.
6. Which of the following is NOT correct regarding Amazon EC2 On-Demand instances?
- You have to pay a start-up fee when launching a new instance for the first time
- The On-Demand instances follow the AWS pay-as-you-go pricing model
- With On-Demand instances, no longer-term commitments or upfront payments are needed
- When using On-Demand Linux instances, you are charged per second based on an hourly rate
Answer : A Explanation: There is no start-up fee for launching EC2 On-Demand instances. You simply pay for the compute capacity you use with no upfront costs or long-term commitments. On-Demand instances do follow a pay-as-you-go model (B), require no upfront payments (C), and Linux instances are billed per second with a minimum of 60 seconds (D) — all of which are correct statements.
7. A company has moved to AWS recently. Which of the following AWS Services will help ensure that they have the proper security settings? (Choose TWO)
- AWS Trusted Advisor
- Amazon Inspector
- Amazon SNS
- Amazon CloudWatch
- Concierge Support Team
Answer : A, B Explanation: AWS Trusted Advisor (A) checks your AWS environment against security best practices and flags issues such as open security groups or unrestricted S3 buckets. Amazon Inspector (B) is an automated vulnerability assessment service that helps identify security issues in EC2 instances and applications. Amazon SNS is a notification service, CloudWatch is for monitoring, and the Concierge Support Team handles billing inquiries — none of these directly audit security settings.
8. What is the AWS feature that provides an additional level of security above the default authentication mechanism of usernames and passwords?
- Encrypted keys
- Email verification
- AWS KMS
- AWS MFA
Answer : D Explanation: AWS Multi-Factor Authentication (MFA) adds an extra layer of security by requiring users to provide a second form of verification (such as a one-time code from an authenticator app) in addition to their username and password. AWS KMS is for encryption key management, not authentication. Encrypted keys and email verification are not standard AWS authentication mechanisms.
9. A company is introducing a new product to their customers, and is expecting a surge in traffic to their web application. As part of their Enterprise Support plan, which of the following provides the company with architectural and scaling guidance?
- AWS Knowledge Center
- AWS Health Dashboard
- Infrastructure Event Management
- AWS Support Concierge Service
Answer : C Explanation: Infrastructure Event Management (IEM) is an AWS Enterprise Support feature that provides architectural and operational guidance, as well as real-time support during planned large-scale events such as product launches or traffic surges. The AWS Knowledge Center is a self-service FAQ resource. The Health Dashboard monitors service health. The Concierge Service handles billing and account inquiries.
10. You work as an on-premises MySQL DBA. The work of database configuration, backups, patching, and DR can be time-consuming and repetitive. Your company has decided to migrate to the AWS Cloud. Which of the following can help save time on database maintenance so you can focus on data architecture and performance?
- Amazon RDS
- Amazon Redshift
- Amazon DynamoDB
- Amazon CloudWatch
Answer : A Explanation: Amazon RDS (Relational Database Service) is a fully managed relational database service that supports MySQL, among other engines. AWS handles routine database tasks such as provisioning, patching, backups, and disaster recovery, freeing DBAs to focus on schema design and query performance. Amazon Redshift is a data warehouse, DynamoDB is a NoSQL database, and CloudWatch is a monitoring service.
11. Which of the below is a best-practice when designing solutions on AWS?
- Invest heavily in architecting your environment, as it is not easy to change your design later
- Use AWS reservations to reduce costs when testing your production environment
- Automate wherever possible to make architectural experimentation easier
- Provision a large compute capacity to handle any spikes in load
Answer : C Explanation: One of the AWS Well-Architected Framework best practices is to automate wherever possible, which reduces human error and makes it easier to experiment with and iterate on your architecture. AWS cloud infrastructure is designed to be flexible and easily changed (A is incorrect). Over-provisioning (D) wastes money. Using reservations for testing (B) is not a recommended practice as reservations are for stable, predictable workloads.
12. According to the AWS Acceptable Use Policy, which of the following statements is true regarding penetration testing of EC2 instances?
- Penetration testing is not allowed in AWS
- Penetration testing is performed automatically by AWS to determine vulnerabilities in your AWS infrastructure
- Penetration testing can be performed by the customer on their own instances without prior authorization from AWS
- The AWS customers are only allowed to perform penetration testing on services managed by AWS
Answer : C Explanation: AWS allows customers to perform penetration testing on their own AWS resources without prior approval for a set of permitted services, including EC2 instances. AWS does not perform penetration testing on behalf of customers (B). Penetration testing is allowed (A is incorrect). Customers cannot test AWS-managed infrastructure (D is incorrect) — testing is restricted to the customer’s own resources.
13. Which service is used to ensure that messages between software components are not lost if one or more components fail?
- Amazon SQS
- Amazon SES
- AWS Direct Connect
- Amazon Connect
Answer : A Explanation: Amazon SQS (Simple Queue Service) is a fully managed message queuing service that decouples application components by storing messages in a queue until they are processed. This ensures messages are not lost even if a component fails. Amazon SES is an email service, AWS Direct Connect is for private network connectivity, and Amazon Connect is a cloud-based contact center service.
14. The principle “design for failure and nothing will fail” is very important when designing your AWS Cloud architecture. Which of the following would help adhere to this principle? (Choose TWO)
- Multi-factor authentication
- Availability Zones
- Elastic Load Balancing
- Penetration testing
- Vertical Scaling
Answer : B, C Explanation: Deploying across multiple Availability Zones (B) ensures your application continues to function even if one zone experiences an outage. Elastic Load Balancing (C) automatically routes traffic away from unhealthy instances to healthy ones, maintaining availability during failures. MFA is a security feature, penetration testing identifies vulnerabilities but doesn’t prevent failures, and vertical scaling increases single instance capacity rather than distributing failure risk.
15. What is the AWS service that provides a virtual network dedicated to your AWS account?
- AWS VPN
- AWS Subnets
- AWS Dedicated Hosts
- Amazon VPC
Answer : D Explanation: Amazon VPC (Virtual Private Cloud) lets you provision a logically isolated section of the AWS Cloud where you can launch AWS resources in a virtual network that you define and control. AWS VPN connects your on-premises network to AWS. Subnets are subdivisions within a VPC, not a service on their own. Dedicated Hosts are physical servers dedicated to your use, not a virtual network.
16. According to the AWS Shared Responsibility Model, which of the following are the responsibility of the customer? (Choose TWO)
- Managing environmental events of AWS data centers
- Protecting the confidentiality of data in transit in Amazon S3
- Controlling physical access to AWS Regions
- Ensuring that the underlying EC2 host is configured properly
- Patching applications installed on Amazon EC2
Answer : B, E Explanation: Customers are responsible for protecting data in transit (B) by enabling encryption (e.g., using HTTPS/TLS) and for patching applications they install on EC2 instances (E). Managing data center environmental events (A), controlling physical access to AWS Regions (C), and configuring the underlying EC2 host hardware (D) are all AWS responsibilities under the shared responsibility model.
17. Which of the following AWS services can be used as a compute resource? (Choose TWO)
- Amazon VPC
- Amazon CloudWatch
- Amazon S3
- Amazon EC2
- AWS Lambda
Answer : D, E Explanation: Amazon EC2 (D) provides resizable virtual servers (compute instances) in the cloud. AWS Lambda (E) is a serverless compute service that runs code in response to events without provisioning servers. Amazon VPC is a networking service, Amazon CloudWatch is a monitoring service, and Amazon S3 is an object storage service — none of these are compute resources.
18. Your company is designing a new application that will store and retrieve photos and videos. Which of the following services should you recommend as the underlying storage mechanism?
- Amazon EBS
- Amazon SQS
- Amazon S3
- Amazon Instance Store
Answer : C Explanation: Amazon S3 is the ideal service for storing and retrieving large unstructured files such as photos and videos. It offers virtually unlimited storage, high durability (99.999999999%), and can serve objects directly to users or applications. Amazon EBS is block storage tied to EC2 instances, Amazon SQS is a messaging queue, and Instance Store is temporary storage that is lost when the instance stops.
19. Which of the following is equivalent to a user name and password and is used to authenticate your programmatic access to AWS services and APIs?
- Instance Password
- Key pairs
- Access Keys
- MFA
Answer : C Explanation: Access Keys consist of an Access Key ID and a Secret Access Key, and they serve as the programmatic equivalent of a username and password for authenticating API and CLI requests to AWS. Key pairs are used for SSH access to EC2 instances. MFA provides a second authentication factor for console login. Instance Password is not a standard AWS concept.
20. What does Amazon ElastiCache provide?
- In-memory caching for read-heavy applications
- An Ehcache compatible in-memory data store
- An online software store that allows customers to launch pre-configured software with just a few clicks
- A domain name system in the cloud
Answer : A Explanation: Amazon ElastiCache is a fully managed in-memory caching service that improves the performance of read-heavy applications by storing frequently accessed data in memory, reducing the load on backend databases. It supports Redis and Memcached engines. Option C describes AWS Marketplace, and option D describes Amazon Route 53.
21. What is the AWS service that enables you to manage all of your AWS accounts from a single master account?
- AWS WAF
- AWS Trusted Advisor
- AWS Organizations
- AWS Config
Answer : C Explanation: AWS Organizations allows you to centrally manage and govern multiple AWS accounts from a single management (master) account. You can group accounts, apply policies, and consolidate billing. AWS WAF is a web application firewall, Trusted Advisor provides best practice recommendations, and AWS Config tracks resource configurations — none manage multiple accounts.
22. Which of the following EC2 instance purchasing options supports the Bring Your Own License (BYOL) model for almost every BYOL scenario?
- Dedicated Instances
- Dedicated Hosts
- On-Demand Instances
- Reserved Instances
Answer : B Explanation: Dedicated Hosts provide physical servers fully dedicated to your use, giving you visibility into the underlying hardware (sockets, cores, host IDs). This is required for using existing per-socket, per-core, or per-VM software licenses (BYOL). Dedicated Instances run on dedicated hardware but do not provide the same level of hardware visibility needed for most BYOL licensing requirements.
23. Which of the following is one of the benefits of moving infrastructure from an on-premises data center to AWS?
- Free support for all enterprise customers
- Automatic data protection
- Reduced Capital Expenditure (CapEx)
- AWS holds responsibility for managing customer applications
Answer : C Explanation: Moving to AWS shifts infrastructure spending from Capital Expenditure (CapEx) — such as buying servers and building data centers — to Operational Expenditure (OpEx), where you pay only for what you use. AWS support is not free for all enterprise customers (A). Data protection remains a shared responsibility (B). AWS does not manage customer applications (D) — that remains the customer’s responsibility.
24. Which of the following are important design principles you should adopt when designing systems on AWS? (Choose TWO)
- Always use Global Services in your architecture rather than Regional Services
- Always choose to pay as you go
- Treat servers as fixed resources
- Automate wherever possible
- Remove single points of failure
Answer : D, E Explanation: Automating wherever possible (D) reduces human error and increases agility, while removing single points of failure (E) improves availability and resilience — both are core AWS Well-Architected Framework principles. Treating servers as fixed resources (C) is an anti-pattern; in AWS, servers should be treated as disposable. Preferring Global over Regional services (A) is not a blanket best practice. Pay-as-you-go (B) is a pricing model, not a design principle.
25. Which AWS Service can be used to establish a dedicated, private network connection between AWS and your datacenter?
- AWS Direct Connect
- Amazon CloudFront
- AWS Snowball
- Amazon Route 53
Answer : A Explanation: AWS Direct Connect establishes a dedicated, private network connection between your on-premises data center and AWS, bypassing the public internet for more consistent network performance and reduced latency. Amazon CloudFront is a CDN, AWS Snowball is a physical data transfer device, and Amazon Route 53 is a DNS service — none provide dedicated private connectivity.
26. You are working on two projects that require completely different network configurations. Which AWS service or feature will allow you to isolate resources and network configurations?
- Internet gateways
- Virtual Private Cloud
- Security Groups
- Amazon CloudFront
Answer : B Explanation: Amazon VPC (Virtual Private Cloud) allows you to create isolated virtual networks with their own IP address ranges, subnets, route tables, and network gateways. You can create a separate VPC for each project, ensuring complete network isolation. Internet gateways enable internet access within a VPC, Security Groups control instance-level traffic, and CloudFront is a CDN — none provide full network isolation between projects.
27. Which of the following services can help protect your web applications from SQL injection and other vulnerabilities in your application code?
- Amazon Cognito
- AWS IAM
- Amazon Aurora
- AWS WAF
Answer : D Explanation: AWS WAF (Web Application Firewall) protects web applications from common web exploits such as SQL injection and cross-site scripting (XSS) by allowing you to define rules that filter malicious traffic. Amazon Cognito is for user authentication, AWS IAM manages access permissions, and Amazon Aurora is a relational database — none of these protect against application-layer attacks.
28. An organization needs to analyze and process a large number of data sets. Which AWS service should they use?
- Amazon EMR
- Amazon MQ
- Amazon SNS
- Amazon SQS
Answer : A Explanation: Amazon EMR (Elastic MapReduce) is a managed big data platform that allows organizations to process and analyze large datasets using frameworks such as Apache Hadoop, Spark, and Hive. Amazon MQ is a managed message broker, Amazon SNS is a notification service, and Amazon SQS is a message queuing service — none are designed for large-scale data processing.
29. Based on the AWS Shared Responsibility Model, which of the following are the sole responsibility of AWS? (Choose TWO)
- Monitoring network performance
- Installing software on EC2 instances
- Creating hypervisors
- Configuring Access Control Lists (ACLs)
- Hardware maintenance
Answer : C, E Explanation: Creating and managing hypervisors (C) and maintaining the physical hardware (E) of the underlying infrastructure are solely AWS responsibilities. Installing software on EC2 instances (B) and configuring ACLs (D) are customer responsibilities. Monitoring network performance is a shared concern — AWS monitors its infrastructure while customers monitor their own application performance.
30. What is the AWS service that provides you the highest level of control over the underlying virtual infrastructure?
- Amazon Redshift
- Amazon DynamoDB
- Amazon EC2
- Amazon RDS
Answer : C Explanation: Amazon EC2 is an IaaS (Infrastructure as a Service) offering that gives customers the highest level of control over the virtual infrastructure, including the choice of OS, instance type, storage, networking, and security configurations. Amazon RDS, DynamoDB, and Redshift are managed services where AWS handles more of the underlying infrastructure, giving customers less direct control.
31. What are the default security credentials that are required to access the AWS Management Console for an IAM user account?
- MFA
- Security tokens
- A user name and password
- Access keys
Answer : C Explanation: IAM users access the AWS Management Console (web-based UI) using a username and password. MFA (A) is an optional additional security layer, not a default requirement. Security tokens are used for temporary credentials via IAM roles. Access keys (D) are used for programmatic/CLI access, not console login.
32. In your on-premises environment, you can create as many virtual servers as you need from a single template. What can you use to perform the same in AWS?
- IAM
- An internet gateway
- EBS Snapshot
- AMI
Answer : D Explanation: An Amazon Machine Image (AMI) is a template that contains the software configuration (OS, application server, applications) required to launch an EC2 instance. Just like a virtual machine template in an on-premises environment, you can use a single AMI to launch as many EC2 instances as needed. IAM manages permissions, internet gateways enable internet access, and EBS snapshots are point-in-time backups of volumes — not instance templates.
33. What are two advantages of using Cloud Computing over using traditional data centers? (Choose TWO)
- Reserved compute capacity
- Eliminating Single Points of Failure (SPOFs)
- Distributed infrastructure
- Virtualized compute resources
- Dedicated hosting
Answer : B, C Explanation: Cloud computing eliminates single points of failure (B) through redundancy across multiple Availability Zones and Regions. It also provides a globally distributed infrastructure (C) that traditional data centers cannot match without enormous capital investment. Reserved capacity and dedicated hosting exist in both cloud and traditional environments, and virtualization is also available on-premises — these are not unique cloud advantages.
34. Which of the following aspects of security are managed by AWS? (Choose TWO)
- Encryption of EBS volumes
- VPC security
- Access permissions
- Hardware patching
- Securing global physical infrastructure
Answer : D, E Explanation: AWS is solely responsible for patching the underlying hardware (D) and securing its global physical infrastructure (E), including data centers, networking equipment, and physical servers. Encrypting EBS volumes (A), configuring VPC security (B), and managing access permissions (C) are all customer responsibilities under the AWS Shared Responsibility Model.
35. Which statement best describes the operational excellence pillar of the AWS Well-Architected Framework?
- The ability of a system to recover gracefully from failure
- The efficient use of computing resources to meet requirements
- The ability to monitor systems and improve supporting processes and procedures
- The ability to manage datacenter operations more efficiently
Answer : C Explanation: The Operational Excellence pillar of the AWS Well-Architected Framework focuses on running and monitoring systems to deliver business value, and continually improving processes and procedures. Option A describes the Reliability pillar. Option B describes the Performance Efficiency pillar. Option D is not a pillar of the Well-Architected Framework.
36. AWS has created a large number of Edge Locations as part of its Global Infrastructure. Which of the following is NOT a benefit of using Edge Locations?
- Edge locations are used by CloudFront to cache the most recent responses
- Edge locations are used by CloudFront to improve your end users’ experience when uploading files
- Edge locations are used by CloudFront to distribute traffic across multiple instances to reduce latency
- Edge locations are used by CloudFront to distribute content to global users with low latency
Answer : C Explanation: Edge Locations are NOT used to distribute traffic across multiple instances — that is the function of Elastic Load Balancing. Edge Locations are used by CloudFront to cache content closer to users (A), improve upload speeds via S3 Transfer Acceleration (B), and deliver content globally with low latency (D) — all of which are genuine benefits of Edge Locations.
37. What are the change management tools that help AWS customers audit and monitor all resource changes in their AWS environment? (Choose TWO)
- AWS CloudTrail
- Amazon Comprehend
- AWS Transit Gateway
- AWS X-Ray
- AWS Config
Answer : A, E Explanation: AWS CloudTrail (A) records all API calls and user actions across your AWS account, providing an audit trail of who made what change and when. AWS Config (E) continuously monitors and records AWS resource configurations, allowing you to track changes over time and evaluate compliance. Amazon Comprehend is an NLP service, AWS Transit Gateway connects VPCs and networks, and AWS X-Ray is for application tracing — none are change management tools.
38. Which of the following services allows you to run containerized applications on a cluster of EC2 instances?
- Amazon ECS
- AWS Data Pipeline
- AWS Cloud9
- AWS Personal Health Dashboard
Answer : A Explanation: Amazon ECS (Elastic Container Service) is a fully managed container orchestration service that allows you to run, stop, and manage Docker containers on a cluster of EC2 instances (or using AWS Fargate for serverless containers). AWS Data Pipeline automates data movement, AWS Cloud9 is a cloud-based IDE, and the AWS Personal Health Dashboard provides service health notifications — none run containers.
39. Which of the following services will help businesses ensure compliance in AWS?
- CloudFront
- CloudEndure Migration
- CloudWatch
- CloudTrail
Answer : D Explanation: AWS CloudTrail helps businesses ensure compliance by providing a complete audit trail of all API calls and user activity across the AWS account. This log data can be used for security analysis, compliance auditing, and operational troubleshooting. CloudFront is a CDN, CloudEndure Migration is a server migration tool, and CloudWatch is a monitoring service — none provide compliance audit trails.
40. Which of the following procedures will help reduce your Amazon S3 costs?
- Use the Import/Export feature to move old files automatically to Amazon Glacier
- Use the right combination of storage classes based on different use cases
- Pick the right Availability Zone for your S3 bucket
- Move all the data stored in S3 Standard to EBS
Answer : B Explanation: Using the appropriate S3 storage class for each use case (e.g., S3 Standard for frequently accessed data, S3 Standard-IA for infrequent access, S3 Glacier for archival) ensures you are not overpaying for storage. S3 pricing does not vary by Availability Zone (C). Moving data to EBS (D) would typically be more expensive. AWS Import/Export is not an automated lifecycle tool — S3 Lifecycle Policies are used for that purpose (A is incorrect as described).
41. What are the AWS services/features that can help you maintain a highly available and fault-tolerant architecture in AWS? (Choose TWO)
- AWS Direct Connect
- Amazon EC2 Auto Scaling
- Elastic Load Balancer
- CloudFormation
- Network ACLs
Answer : B, C Explanation: Amazon EC2 Auto Scaling (B) automatically adjusts the number of instances to maintain availability during demand changes or instance failures. Elastic Load Balancer (C) distributes incoming traffic across multiple healthy instances, preventing any single instance from becoming a point of failure. AWS Direct Connect is for network connectivity, CloudFormation is for infrastructure as code, and Network ACLs are for subnet-level traffic filtering — none directly maintain high availability.
42. Which of the following activities may help reduce your AWS monthly costs?
- Enabling Amazon EC2 Auto Scaling for all of your workloads
- Using the AWS Network Load Balancer (NLB) to load balance the incoming HTTP requests
- Removing all of your Cost Allocation Tags
- Deploying your AWS resources across multiple Availability Zones
Answer : A Explanation: Enabling EC2 Auto Scaling ensures you only run the number of instances needed at any given time, automatically scaling down during low demand periods and reducing costs. Using an NLB (B) for HTTP traffic is not optimal — an Application Load Balancer is better suited, and neither reduces costs directly. Removing Cost Allocation Tags (C) reduces visibility into spending but does not reduce costs. Deploying across multiple AZs (D) improves availability but may increase costs.
43. What is the AWS service/feature that takes advantage of Amazon CloudFront’s globally distributed edge locations to transfer files to S3 with higher upload speeds?
- S3 Transfer Acceleration
- AWS WAF
- AWS Snowmobile
- AWS Snowball
Answer : A Explanation: S3 Transfer Acceleration speeds up uploads to Amazon S3 by routing data through Amazon CloudFront’s globally distributed Edge Locations and then over AWS’s optimized network backbone to S3. This is especially beneficial for long-distance transfers. AWS WAF is a web application firewall, AWS Snowmobile and Snowball are physical data transfer devices for large-scale offline migrations — none use CloudFront edge locations for S3 uploads.
44. Which of the following AWS security features is associated with an EC2 instance and functions to filter incoming traffic requests?
- AWS X-Ray
- Network ACL
- Security Groups
- VPC Flow logs
Answer : C Explanation: Security Groups act as virtual firewalls at the EC2 instance level, controlling inbound and outbound traffic based on rules you define. They are stateful, meaning return traffic is automatically allowed. Network ACLs (B) operate at the subnet level, not the instance level. AWS X-Ray is for application tracing. VPC Flow Logs capture network traffic information for monitoring but do not filter traffic.
45. Which AWS services can be used to improve the performance of a global application and reduce latency for its users? (Choose TWO)
- AWS KMS
- AWS Global Accelerator
- AWS Direct Connect
- AWS Glue
- Amazon CloudFront
Answer : B, E Explanation: AWS Global Accelerator (B) improves global application performance by routing traffic through the AWS global network infrastructure to the nearest healthy endpoint, reducing latency. Amazon CloudFront (E) is a CDN that caches content at Edge Locations globally, reducing latency for end users. AWS KMS is for encryption key management, AWS Direct Connect provides private connectivity (not global latency reduction), and AWS Glue is a data integration service.
46. Using Amazon RDS falls under the shared responsibility model. Which of the following are customer responsibilities? (Choose TWO)
- Building the relational database schema
- Performing backups
- Managing the database settings
- Patching the database software
- Installing the database software
Answer : A, C Explanation: With Amazon RDS, customers are responsible for designing the database schema (A) and managing database settings such as parameter groups and option groups (C). AWS handles automated backups (B), patches the database software (D), and installs and maintains the database engine (E) — these are all part of the managed service offering.
47. A company has a large amount of structured data stored in their on-premises data center. They are planning to migrate all the data to AWS. What is the most appropriate AWS database option?
- Amazon DynamoDB
- Amazon SNS
- Amazon RDS
- Amazon ElastiCache
Answer : C Explanation: Amazon RDS (Relational Database Service) is the most appropriate choice for migrating large amounts of structured (relational) data from on-premises to AWS. It supports multiple database engines including MySQL, PostgreSQL, Oracle, SQL Server, and MariaDB. Amazon DynamoDB is a NoSQL database for unstructured/semi-structured data. Amazon SNS is a notification service. Amazon ElastiCache is an in-memory cache, not a primary database.
48. A company has created a solution that helps AWS customers improve their architectures on AWS. Which AWS program may support this company?
- APN Consulting Partners
- AWS TAM
- APN Technology Partners
- AWS Professional Services
Answer : A Explanation: APN (AWS Partner Network) Consulting Partners are professional services firms that help customers design, architect, build, migrate, and manage their workloads on AWS. A company that helps customers improve their AWS architectures fits the Consulting Partner model. APN Technology Partners provide software solutions that run on or integrate with AWS. AWS TAM and Professional Services are AWS-internal teams, not partner programs.
49. What is the AWS serverless service that allows you to run your applications without any administrative burden?
- Amazon Lightsail
- AWS Lambda
- Amazon RDS instances
- Amazon EC2 instances
Answer : B Explanation: AWS Lambda is a serverless compute service that runs your code in response to events without requiring you to provision or manage servers. You only pay for the compute time consumed. Amazon Lightsail is a simplified cloud platform with virtual servers. Amazon RDS and EC2 both require some level of administrative management such as instance sizing, patching, and configuration.
50. Jessica is managing an e-commerce web application in AWS. The application is hosted on six EC2 instances. One day, three of the instances crashed; but none of her customers were affected. What has Jessica done correctly in this scenario?
- She has properly built an elastic system
- She has properly built a fault tolerant system
- She has properly built an encrypted system
- She has properly built a scalable system
Answer : B Explanation: A fault tolerant system continues to operate without interruption even when some of its components fail. Jessica’s application continued serving customers despite three of the six instances crashing, which is the definition of fault tolerance. Elasticity refers to automatically scaling with demand, scalability refers to the ability to grow with demand, and encryption is a security feature — none of these describe the scenario where the system remained operational despite instance failures.
