Learning
Learning
Loading practice session...
AWS Certified SysOps Administrator · Exam domain
22 practice questions in this domain. AI-tutored explanations for every answer.
Sign in to practice all 22 questions with progress tracking and AI explanations.
1. Which characteristic distinguishes a public subnet from a private subnet in an AWS VPC?
Explanation
A public subnet is defined by having a route (0.0.0.0/0) pointing to an Internet Gateway in its associated route table, enabling instances with public IPs to communicate directly with the internet.
2. A company wants database servers to be inaccessible from the internet but still able to download OS updates. Which subnet architecture should be used?
Explanation
Private subnets have no direct route to an Internet Gateway. A NAT Gateway (placed in a public subnet) allows outbound-only internet access for private subnet resources, keeping them unreachable from outside.
3. A VPC has two subnets. Subnet A can reach the internet; Subnet B cannot. What is the MOST likely difference between their configurations?
Explanation
Internet reachability in a VPC is controlled by the subnet's associated route table. Only subnets whose route table has a 0.0.0.0/0 entry pointing to an Internet Gateway are considered public subnets.
4. When multiple routes in a VPC route table match a destination IP address, how does AWS determine which route to use?
Explanation
VPC route tables use longest prefix match (most specific route) to determine the path for traffic. A /24 route is preferred over a /16 route for overlapping destinations, matching standard IP routing behavior.
5. Which AWS Elastic Load Balancer type is BEST suited for routing HTTP and HTTPS traffic to different microservices based on URL path?
Explanation
Application Load Balancers operate at Layer 7 and support advanced routing rules based on URL paths, host headers, HTTP methods, and query parameters — ideal for microservices and containerized applications.
Practice all 22+ questions in this domain
Start free practice →