Dashboard

Learn faster. Build smarter.

Back to Categories
44 questions0 learned

AWS

Core cloud services, networking, IAM, storage, compute, and scaling.

Results: 44
Junior

What is the difference between an EC2 instance and a Lambda function?

EC2 is a virtual server you manage, while Lambda is serverless execution managed by AWS.

Junior

What is the difference between S3 and EBS?

S3 is object storage, while EBS is block storage attached to EC2.

Junior

What is the difference between an IAM role and an IAM policy?

A role is an identity that can be assumed, while a policy defines permissions.

Junior

What is the difference between a public subnet and a private subnet?

A public subnet has a route to the internet gateway, while a private subnet does not.

Middle

What is the difference between an Application Load Balancer and a Network Load Balancer?

ALB works at Layer 7 for HTTP/HTTPS, while NLB works at Layer 4 for TCP/UDP.

Middle

What is Auto Scaling in AWS?

Auto Scaling automatically adjusts the number of resources based on demand or policies.

Middle

What is the difference between a Security Group and a Network ACL?

Security Groups are stateful instance-level firewalls, while Network ACLs are stateless subnet-level filters.

Middle

What is Route 53 used for?

Route 53 is AWS DNS service used for domain management, routing, and health checks.

Middle

What is the difference between running a database on RDS and on EC2?

RDS is managed database service, while EC2 gives full control but also full operational responsibility.

Middle

What components make up a VPC?

A VPC includes subnets, route tables, internet gateways, NAT gateways, and security controls.

Middle

What is a NAT Gateway used for?

A NAT Gateway allows instances in private subnets to access the internet without being publicly exposed.

Middle

What is the difference between EBS and instance store?

EBS is persistent storage, while instance store is temporary and tied to the instance lifecycle.

Middle

What types of scaling exist in AWS?

Scaling can be vertical or horizontal, and in AWS typically horizontal via Auto Scaling.

Middle

What is AWS CloudFront?

CloudFront is a CDN that caches content closer to users to reduce latency.

Junior

What is AWS?

AWS is a cloud platform providing on-demand infrastructure and services.

Junior

What is the difference between a Region and an Availability Zone?

A Region is a geographic area, and Availability Zones are isolated data centers within a Region.

Junior

What is a VPC?

A VPC is a virtual network where you run AWS resources.

Junior

What is a subnet?

A subnet is a segment of a VPC where resources are placed.

Junior

What is an Internet Gateway?

It allows communication between a VPC and the internet.

Junior

What is an Elastic IP?

An Elastic IP is a static public IP address in AWS.

Junior

What is a Security Group?

A Security Group is a stateful firewall for EC2 instances.

Middle

What is a Network ACL?

A Network ACL is a stateless firewall at the subnet level.

Junior

What is IAM?

IAM manages users, roles, and permissions in AWS.

Junior

What is an IAM policy?

An IAM policy defines permissions in JSON format.

Junior

What is CloudWatch?

CloudWatch is a monitoring and logging service.

Junior

What is CloudTrail?

CloudTrail logs API calls and account activity.

Junior

What is AWS Lambda?

Lambda runs code without managing servers.

Middle

What is API Gateway?

API Gateway is used to create and manage APIs.

Junior

What is SQS?

SQS is a message queue service.

Junior

What is SNS?

SNS is a pub/sub messaging service.

Junior

What is the difference between SQS and SNS?

SQS is queue-based, SNS is pub/sub.

Junior

What is RDS?

RDS is a managed relational database service.

Junior

What is DynamoDB?

DynamoDB is a NoSQL database service.

Junior

What is ELB?

ELB distributes incoming traffic across multiple targets.

Junior

What is ALB?

ALB is a Layer 7 load balancer for HTTP/HTTPS.

Junior

What is NLB?

NLB is a Layer 4 load balancer for TCP/UDP.

Middle

What is an Auto Scaling Group?

It automatically adjusts EC2 instances based on demand.

Middle

What is a Launch Template?

It defines how EC2 instances should be launched.

Middle

What is CloudFormation?

CloudFormation is Infrastructure as Code for AWS.

Junior

What is EBS?

EBS is block storage for EC2 instances.

Middle

Why use CloudFront?

CloudFront reduces latency by caching content globally.

Middle

What routing policies does Route 53 support?

It supports simple, weighted, latency, failover, and geolocation routing.

Middle

What are IAM best practices?

Use least privilege, roles instead of keys, and enable MFA.

Middle

How do you optimize AWS costs?

Use reserved instances, auto scaling, and monitoring.