Skip to content
InterviewEra
What is InterviewEraThe platform, founder, and missionHow It WorksAdaptive interview, live captions, scoringResume-aware ScoringCV-native questions + 5-dimension feedback
Campus Placements OverviewStructured mock interviews and cohort analytics for T&P teamsSet up Campus WorkspaceCreate your campus dashboard and invite your batchT&P Product & PricingPilot pricing, bulk onboarding, and placement trackingStudent Invitation HelpHow to accept a campus invite and start practising
Software EngineerDSA, system design, OOP roundsFrontend DeveloperReact, HTML/CSS, JavaScript interviewsTCS Interview QuestionsNQT + technical + HR roundsWipro Careers HubNLTH, WILP, Turbo hiring tracksSolera Careers HubCognitive assessment + Java/SQL roundsReact Interview QuestionsHooks, state, performance topics
Interview Question GeneratorRole-specific questions in secondsATS Resume CheckerScore your resume against job rolesSTAR Answer BuilderStructure behavioral answers clearly
All ResourcesCentral guide and hub directoryBlogInterview prep articles and guidesAgentic AI Interview GuideAI-assisted coding interviews, rubrics, and prepPlacement GuideStep-by-step campus prep playbookSTAR Method GuideMaster behavioral answers
Help CenterGuides, FAQs, and supportDSA Topic MapPatterns, roadmap, and top 50 problemsSoftware Engineer GuideSWE questions and prep hubAndroid GuideKotlin, Compose, MVVM prep hubFrontend GuideReact and JavaScript interviews
PricingFor Teams
Sign inSign up
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

Mock Interview

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

Free Tools

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

Interview Questions

  • Wipro Careers Hub
  • Solera Careers Hub
  • Amazon SDE Questions
  • Microsoft SDE Questions
  • Infosys SWE Questions
  • Infosys Java Questions
  • Freshworks Frontend Questions
  • Android Developer Questions
  • Frontend Developer Questions
  • Java Developer Questions

Resources

  • Community Hub
  • All Resources
  • Blog
  • Agentic AI Interview Guide
  • What Is Agentic AI
  • Agentic Coding Round
  • AI Prompt Engineering
  • Cursor AI Interview Guide
  • DSA Topic Map
  • Placement Guide
  • STAR Guide
  • HR Guide
  • Interview Tips

Company

  • What is InterviewEra
  • About Us
  • Pricing
  • Contact

© 2026 InterviewEra. All rights reserved.

Privacy PolicyTermsRefundRanchi, 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