Skip to content
InterviewEra
Loading account navigation
InterviewEra

InterviewEra is an AI-powered mock interview platform with adaptive follow-ups, resume-aware scoring, and structured interview preparation for campus placements and early-career hiring.

Start Mock Interview

Product

  • How It Works
  • For Teams
  • Start Mock Interview
  • Campus Placements
  • Campus Workspace
  • Help Center

Tools

  • Interview Question Generator
  • ATS Resume Checker
  • STAR Answer Builder

Resources

  • Interview Questions
  • All Resources
  • Blog
  • Community Hub
  • DSA Topic Map
  • Placement Guide
  • STAR Guide

Company

  • What is InterviewEra
  • About Us
  • Pricing
  • Contact
  • Privacy Policy
  • Terms & Conditions
  • Refund Policy

© 2026 InterviewEra. All rights reserved.

Privacy Policy|Terms & Conditions|Refund Policy
|Ranchi, Jharkhand, India
Interview Questions›Topics›AWS

Cloud

AWS Interview Questions 2026

AWS interview questions on EC2, S3, RDS, Lambda, IAM, and core architectural patterns for cloud-native applications.

Cloud

AWS Interview Questions

Placement-oriented · Updated 2026
  1. 01

    What is the difference between EC2, Lambda, and ECS/Fargate?

    TechnicalMedium

    Tip: EC2 is a virtual server you manage (full control, always-on cost). Lambda is serverless functions — event-driven, auto-scaling, pay-per-invocation, with cold starts and time limits. ECS/Fargate run containers without managing servers. Choose Lambda for spiky/event work, EC2 for long-running/custom needs, containers for portability.

  2. 02

    Explain S3 storage classes and when to use each.

    TechnicalMedium

    Tip: S3 Standard for hot data, Standard-IA / One Zone-IA for infrequent access, Glacier / Glacier Deep Archive for cheap cold archival (retrieval latency). Intelligent-Tiering auto-moves objects by access pattern. Lifecycle policies transition objects to cheaper classes over time.

  3. 03

    What is IAM and what is the principle of least privilege?

    TechnicalMedium

    Tip: IAM controls who can do what via users, groups, roles, and JSON policies. Least privilege means granting only the permissions needed — prefer roles (temporary credentials) over long-lived access keys, scope policies to specific resources, and never use the root account for daily work.

  4. 04

    What is the difference between a security group and a network ACL?

    TechnicalMedium

    Tip: A security group is a stateful firewall at the instance level (return traffic auto-allowed, allow-rules only). A network ACL is stateless at the subnet level (you must allow both directions, supports deny rules). SGs are the primary control; NACLs add a coarse subnet-wide layer.

  5. 05

    How do you make an application highly available on AWS?

    TechnicalHard

    Tip: Deploy across multiple Availability Zones behind an Elastic Load Balancer, use Auto Scaling groups, a Multi-AZ RDS (with read replicas), and store static assets in S3 + CloudFront. Use Route 53 health checks for failover. Avoid single points of failure and design stateless app tiers.

  6. 06

    What is the difference between a VPC, subnet, and an Internet Gateway?

    TechnicalMedium

    Tip: A VPC is your isolated virtual network. Subnets partition it — public subnets route to an Internet Gateway (internet-facing), private subnets do not (use a NAT Gateway for outbound-only). Route tables and gateways define connectivity.

  7. 07

    When would you use SQS vs SNS?

    TechnicalMedium

    Tip: SQS is a pull-based queue for decoupling and reliable async processing (one consumer group drains messages). SNS is push-based pub/sub fan-out to many subscribers (Lambda, SQS, email). The common "fan-out" pattern combines them: SNS topic → multiple SQS queues.

  8. 08

    How do you optimise AWS cost?

    TechnicalMedium

    Tip: Right-size instances, use Auto Scaling, buy Reserved Instances/Savings Plans for steady workloads and Spot for fault-tolerant batch, move cold data to cheaper S3 tiers, delete unattached EBS/idle resources, and monitor with Cost Explorer + budgets/alerts.

Practice AWS questions with your own resume

InterviewEra generates role-specific questions using your actual projects and skills. Get scored feedback on technical depth, clarity, and structure — free to start.

Start free mock interviewFree question generator

Roles that need AWS

  • Backend Developer questions
  • DevOps Engineer questions
  • Cloud Engineer questions

Related cloud topics

  • Microsoft Azure questions
  • Google Cloud Platform questions

Practice tools

  • Interview question generator
  • ATS resume checker
  • STAR answer builder

Guides and resources

  • All interview questions
  • HR interview answer tips
  • STAR method with examples