Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Amazon Team. If you also belong to the team, you can get access from here

Amazon Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Amazon Software Developer Intern Interview Questions, Process, and Tips

Updated 17 Feb 2025

Top Amazon Software Developer Intern Interview Questions and Answers

  • Q1. Fish Eater Problem Statement In a river where water flows from left to right, there is a sequence of 'N' fishes each having different sizes and speeds. The sizes of thes ...read more
  • Q2. First Missing Positive Problem Statement You are provided with an integer array ARR of length 'N'. Your objective is to determine the first missing positive integer usin ...read more
  • Q3. Container with Most Water Problem Statement Given a sequence of 'N' space-separated non-negative integers A[1], A[2], ..., A[i], ..., A[n], where each number in the sequ ...read more
View all 188 questions

Amazon Software Developer Intern Interview Experiences

94 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Apr 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

DSA Question and other MCQ

Round 3 - Coding Test 

2 coding Question one of them Map second was recursion

Round 4 - One-on-one 

(3 Questions)

  • Q1. DSA Question one from Heap
  • Q2. Another from DP not exactly remeber the question
  • Q3. And some project question

Interview Preparation Tips

Interview preparation tips for other job seekers - be good in DSA and u r goot to go
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Coding assessment was easy to medium difficulty leetcode questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Round two was live coding with my future manager, it was essentially whiteboard coding and he wasn't looking for functional code at all. He was mainly evaluating problem solving, thought process, and struc...

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice leetcode easy and medium questions and you should be able to complete the OA pretty easily.

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Basic leetcode questions, mainly can be categorised as easy-medium

Round 2 - One-on-one 

(1 Question)

  • Q1. Again Easy to medium Leetcode, gfg questions
Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 qns-medium level
array and strings were asked.

Round 2 - Technical 

(1 Question)

  • Q1. Live coding round. asked me to solved qn and explain it step by step by giving input qn was- rotate the matrix by 90 degree

Interview Preparation Tips

Interview preparation tips for other job seekers - solve coding qns daily

Amazon interview questions for designations

 Software Engineer Intern

 (13)

 Software Developer

 (186)

 Junior Software Developer

 (3)

 Senior Software Developer

 (1)

 Java Software Developer

 (1)

 Frontend Developer Intern

 (1)

 Python Developer Intern

 (1)

 Full Stack Software Developer

 (1)

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Having 3 basics DSA questions

Round 2 - Technical 

(2 Questions)

  • Q1. Interview with one DSA easy problem
  • Q2. Basic question to reverse stack using O(1) space

Interview Preparation Tips

Interview preparation tips for other job seekers - It's easy to get intern in Amazon

Get interview-ready with Top Amazon Interview Questions

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding questions on hackerrank . First was on dp and second on regex. Medium - Hard was the difficulty level.

Round 2 - Technical 

(1 Question)

  • Q1. Coding fundamentals, 2 coding questions and project explanation
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Hackerrank coding test contained 2 questions 1 based on dynamic programming and other based of regex

Round 2 - Technical 

(1 Question)

  • Q1. 2 coding questions, computer fundamentals, project explanation

I applied via campus placement at Indian Institute of Information Technology (IIIT), Kota and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Coding Test 

There were 3 coding questions. One was easy and two were of medium level.

Round 2 - Technical 

(2 Questions)

  • Q1. First question was on binary search in which you were given two arrays and an integer d. You had to find count of all pairs such that arr[j] - arr[i] <= d where i is pointer on first array and j is pointe...
  • Ans. 

    Count pairs in two arrays with difference less than or equal to d.

    • Sort both arrays in ascending order.

    • Initialize count to 0.

    • For each element in the first array, find the largest index in the second array such that arr[j] - arr[i] <= d.

    • Add the count of pairs for that element to the total count.

    • Return the total count.

    • Example: arr1 = [1, 3, 5], arr2 = [2, 4, 6], d = 2. Answer is 3 (pairs are (1, 2), (1, 4), (3, 2)).

  • Answered by AI
  • Q2. Second question was a variation of stock span problem. You were given an array and you had return an array that contains maximum consecutive days in which arr[i] >= arr[j] where 0<= i < n and i+1 <= j < n-...
  • Ans. 

    Return an array of maximum consecutive days where arr[i] >= arr[j].

    • Iterate through the array and keep track of the maximum consecutive days.

    • Use a stack to keep track of the indices of the elements in decreasing order.

    • Pop elements from the stack until the top element is less than or equal to the current element.

    • Calculate the consecutive days by subtracting the current index from the top of the stack.

    • Store the consecutiv

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Amazon Software Developer Intern interview:
  • Data Structures
  • Algorithms
Interview preparation tips for other job seekers - Just Focus on DSA. There will be no other core subjects questions. The coding questions were also easy-medium difficulty only.
Interview experience
2
Poor
Difficulty level
-
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Leetcode tagged questions on DSA
Round 2 - Technical 

(1 Question)

  • Q1. Leetcode style problem on DSA
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was a question on heaps

Round 2 - One-on-one 

(2 Questions)

  • Q1. Stack based(related to nearest larger element to right)
  • Q2. Heap based( where if two rocks have same weight, eliminate both, otherwise keep the difference)

Interview Preparation Tips

Topics to prepare for Amazon Software Developer Intern interview:
  • Stacks
  • Heaps
  • Trees

Amazon Interview FAQs

How many rounds are there in Amazon Software Developer Intern interview?
Amazon interview process usually has 2-3 rounds. The most common rounds in the Amazon interview process are Coding Test, Technical and One-on-one Round.
What are the top questions asked in Amazon Software Developer Intern interview?

Some of the top questions asked at the Amazon Software Developer Intern interview -

  1. Find zeroes to be flipped so that number of consecutive 1's is maximis...read more
  2. Find shortest distance between 2 points in a matrix, where 2 points can be anyw...read more
  3. maximum profit by buying and selling a stock at most tw...read more
How long is the Amazon Software Developer Intern interview process?

The duration of Amazon Software Developer Intern interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Amazon Software Developer Intern Interview Process

based on 40 interviews

3 Interview rounds

  • Coding Test Round
  • Video Call Round - 1
  • Video Call Round - 2
View more
Amazon Software Developer Intern Salary
based on 38 salaries
₹5.2 L/yr - ₹19.4 L/yr
86% more than the average Software Developer Intern Salary in India
View more details

Amazon Software Developer Intern Reviews and Ratings

based on 91 reviews

4.3/5

Rating in categories

4.3

Skill development

3.6

Work-life balance

4.6

Salary

3.1

Job security

3.9

Company culture

3.9

Promotions

4.0

Work satisfaction

Explore 91 Reviews and Ratings
Customer Service Associate
4.2k salaries
unlock blur

₹0.6 L/yr - ₹6.8 L/yr

Transaction Risk Investigator
3.1k salaries
unlock blur

₹2.3 L/yr - ₹6.5 L/yr

Associate
2.8k salaries
unlock blur

₹0.8 L/yr - ₹6.9 L/yr

Senior Associate
2.5k salaries
unlock blur

₹2 L/yr - ₹10.1 L/yr

Program Manager
2.3k salaries
unlock blur

₹9 L/yr - ₹36 L/yr

Explore more salaries
Compare Amazon with

Flipkart

4.0
Compare

TCS

3.7
Compare

Google

4.4
Compare

Netflix

4.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview