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 Development Engineer Interview Questions, Process, and Tips

Updated 6 Apr 2025

Top Amazon Software Development Engineer Interview Questions and Answers

  • Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of ver ...read more
  • Q2. Given a m * n matrix filled with '0's and 'x's at random position with two positions marked as start 'S' and end 'E'. From each cell you can only move to those adjacent c ...read more
  • Q3. Given a String, find out all the permutation of the strings? Time complexity? Handle duplicate characters. AAA should only give AAA. Write Code
View all 45 questions

Amazon Software Development Engineer Interview Experiences

37 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

2 DSA LeetCode Medium Questions + Follow-up Leadership Principles MCQ questions.

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

I applied via Company Website and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain and implement LRU caching algorithm
  • Ans. 

    LRU caching algorithm stores most recently used items, discarding least recently used items when full.

    • Use a doubly linked list to maintain order of items based on recent usage

    • Use a hashmap to quickly access items in the cache

    • When an item is accessed, move it to the front of the linked list

    • When cache is full, remove the last item in the linked list

  • Answered by AI
  • Q2. Find kth min element from an array
  • Ans. 

    Use quickselect algorithm to find the kth min element from an array

    • Implement quickselect algorithm to partition the array based on a pivot element

    • Recursively select the partition to search for the kth min element

    • Time complexity is O(n) on average, O(n^2) worst case

  • Answered by AI

Skills evaluated in this interview

Software Development Engineer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Given an acyclic graph of a city where each edge represents a roa ... read more
asked in Hike
Q2. You have application which shows list of all contacts, the Name c ... read more
asked in Amazon
Q3. Given a m * n matrix filled with '0's and 'x's at random position ... read more
asked in Samsung
Q4. puzzle-There are 1000 wine bottles. One of the bottles contains p ... read more
asked in Accenture
Q5. Have you worked on cloud technology? Architecture of cloud

I applied via Instahyre and was interviewed in Jun 2022. There were 5 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 

There were 3 coding questions within 1.5 hrs, 2 leetcode medium, 1 leetcode easy.

Round 3 - Technical 

(1 Question)

  • Q1. This was the toughest round and there was just one graph question(competitive programming) and the interviewer was helping and giving hints and I was able to solve it finally
Round 4 - Technical 

(1 Question)

  • Q1. This was low level system design interview in which I have to design parking lot.
Round 5 - Technical 

(1 Question)

  • Q1. This was hiring manager round in which we discussed higher level design of my existing projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and leadership principles with one example for each.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Assignment 

CodeSignal. LeetCode Easy-Meduim

Round 2 - Coding Test 

Behavioural questions for initial 15 mins. Live coding for 45 mins. Leetcode Medium-Hard

Amazon interview questions for designations

 Software Development Engineer II

 (30)

 Software Development Engineer 1

 (8)

 Senior Software Development Engineer

 (1)

 Software Development Engineer Test

 (1)

 Software Development Manager

 (4)

 Senior Software Development Manager

 (1)

 Software Development Engineer Intern

 (25)

 SDE (Software Development Engineer)

 (22)

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

2 questions based on dynamic programming

Round 2 - One-on-one 

(3 Questions)

  • Q1. Asked questions based on coding test
  • Q2. The time complexity of the code I wrote
  • Ans. 

    The time complexity of the code can be determined by analyzing the number of operations performed as a function of the input size.

    • Time complexity is typically expressed using Big O notation, which describes the upper bound on the growth rate of the algorithm.

    • Common time complexities include O(1) for constant time, O(log n) for logarithmic time, O(n) for linear time, O(n^2) for quadratic time, and O(n!) for factorial ti...

  • Answered by AI
  • Q3. Can it be improved? Is there any other way to do it?
  • Ans. 

    Yes, it can be improved by considering alternative approaches or technologies.

    • Consider different algorithms or data structures for optimization

    • Explore new technologies or frameworks that may offer better performance

    • Collaborate with team members to brainstorm alternative solutions

    • Conduct code reviews and seek feedback for improvement

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Amazon Interview Questions

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Data Structures for 45 mins on Hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. Kadane's algorithm
  • Ans. 

    Kadane's algorithm is used to find the maximum subarray sum in an array of integers.

    • Iterate through the array and keep track of the maximum sum ending at each index.

    • At each index, choose between extending the previous subarray or starting a new subarray.

    • The final result is the maximum sum found during the iteration.

  • Answered by AI
  • Q2. Dynamic programming

Skills evaluated in this interview

Software Development Engineer Jobs at Amazon

View all
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed before Sep 2022. There were 3 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 

2 questions medium difficulty

Round 3 - Technical 

(2 Questions)

  • Q1. Talked about trees, and my projects, two questions from algo writing also taking about time complexity
  • Q2. Why did you use jsp servlets
  • Ans. 

    JSP servlets were used for dynamic web page generation and server-side processing.

    • Used for creating dynamic web pages by embedding Java code in HTML

    • Facilitates server-side processing of user requests

    • Enables separation of presentation and business logic

    • Provides scalability and reusability of code

    • Example: Used JSP servlets to generate personalized user profiles on a website

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2022. 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 

Some medium level leetcode questions

Round 3 - Aptitude Test 

Some general behavioural questions

Round 4 - Technical 

(1 Question)

  • Q1. Technical questions and approach explanation of coding round

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

OA is tough clear it Practice DSA

Round 2 - Coding Test 

Coding is super hard solve leetcode

Round 3 - Technical 

(3 Questions)

  • Q1. Reverse a linked-list
  • Ans. 

    Reverse a linked-list

    • Iterate through the linked-list and change the direction of the pointers

    • Keep track of the previous, current and next nodes

    • Set the head of the linked-list to the last node after reversing

  • Answered by AI
  • Q2. Backtracking and Dynamic Programming Questions
  • Q3. DBMS QUERIES third maximum salary
  • Ans. 

    To find third maximum salary in DBMS, we can use the ORDER BY and LIMIT clauses.

    • Use ORDER BY to sort the salaries in descending order

    • Use LIMIT to select the third highest salary

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 2,1

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Amazon Software Development Engineer interview:
  • Data Structures
  • Algorithms
Interview preparation tips for other job seekers - PRACTICE DSA SOLVE LEETCODE CODECHEF SPOJ CONSISTENCY IS IMPORTANT

Skills evaluated in this interview

I applied via Amazon websi and was interviewed in Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. 1. DFS based question Find number of rotten tomatoes.
  • Ans. 

    DFS based question to find number of rotten tomatoes in an array of strings.

    • Implement DFS to traverse the array of strings

    • Check each element for rotten tomatoes

    • Keep track of the count of rotten tomatoes

  • Answered by AI
  • Q2. 2. Another question was baed on use of priority queue to find k nearest points to given robot.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice Data structure and algorithms througly especially graph algorithms.

Skills evaluated in this interview

Amazon Interview FAQs

How many rounds are there in Amazon Software Development Engineer 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.
How to prepare for Amazon Software Development Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Amazon. The most common topics and skills that interviewers at Amazon expect are Architectural Design, Clinical SAS Programming, Customer Experience Management, C++ and Operational Excellence.
What are the top questions asked in Amazon Software Development Engineer interview?

Some of the top questions asked at the Amazon Software Development Engineer interview -

  1. Given an acyclic graph of a city where each edge represents a road in the city ...read more
  2. Given a m * n matrix filled with '0's and 'x's at random position with two posi...read more
  3. Given a String, find out all the permutation of the strings? Time complexity? H...read more
How long is the Amazon Software Development Engineer interview process?

The duration of Amazon Software Development Engineer interview process can vary, but typically it takes about 2-4 weeks to complete.

Tell us how to improve this page.

Amazon Software Development Engineer Interview Process

based on 34 interviews

4 Interview rounds

  • Coding Test Round - 1
  • Coding Test Round - 2
  • Technical Round - 1
  • Technical Round - 2
View more

Interview Questions from Similar Companies

Uber Interview Questions
4.2
 • 149 Interviews
Expedia Group Interview Questions
3.8
 • 76 Interviews
LinkedIn Interview Questions
4.3
 • 66 Interviews
OLX Interview Questions
3.8
 • 57 Interviews
Facebook Interview Questions
4.3
 • 52 Interviews
Groupon Interview Questions
3.1
 • 42 Interviews
Uplers Interview Questions
4.0
 • 41 Interviews
Fareportal Interview Questions
3.4
 • 30 Interviews
Yahoo Interview Questions
4.6
 • 29 Interviews
Airbnb Interview Questions
3.7
 • 23 Interviews
View all
Amazon Software Development Engineer Salary
based on 2.1k salaries
₹19.7 L/yr - ₹35 L/yr
56% more than the average Software Development Engineer Salary in India
View more details

Amazon Software Development Engineer Reviews and Ratings

based on 134 reviews

3.2/5

Rating in categories

3.7

Skill development

2.4

Work-life balance

4.3

Salary

2.4

Job security

2.7

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 134 Reviews and Ratings
Software Development Engineer, Smart Home

Bangalore / Bengaluru

2-5 Yrs

₹ 5.1-50 LPA

Software Development Engineer, Global Purchasing Program

Bangalore / Bengaluru

0-7 Yrs

Not Disclosed

Software Development Engineer, Amazon Traffic Engineering

Hyderabad / Secunderabad

2-7 Yrs

₹ 5-39.65 LPA

Explore more jobs
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 L/yr - ₹6.1 L/yr

Associate
2.9k salaries
unlock blur

₹0.8 L/yr - ₹7 L/yr

Senior Associate
2.5k salaries
unlock blur

₹2 L/yr - ₹10.5 L/yr

Program Manager
2.2k salaries
unlock blur

₹9 L/yr - ₹37 L/yr

Explore more salaries
Compare Amazon with

Flipkart

3.9
Compare

TCS

3.7
Compare

Google

4.4
Compare

Netflix

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