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

Updated 17 Mar 2025

Top Amazon Software Development Engineer II Interview Questions and Answers

View all 28 questions

Amazon Software Development Engineer II Interview Experiences

30 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Online assessment. two LC medium questions. 90 minutes.

Round 2 - One-on-one 

(1 Question)

  • Q1. Four back-to-back 1 hour sessions with 1 hour lunch break. system design with the manager, LC medium-hard questions with the rest of the interviewers.
  • Ans. 

    The interview consists of four back-to-back 1 hour sessions with 1 hour lunch break, including system design with the manager and LC medium-hard questions with the rest of the interviewers.

    • Prepare for system design questions with the manager by understanding scalability, reliability, and performance considerations.

    • Practice solving LC medium-hard questions to showcase problem-solving skills and algorithmic knowledge.

    • Tak...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you have a lot of episodes in your story bank for Leadership Principle questions since each interviewer will ask two or three LP questions.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Gas station problem
  • Ans. 

    Gas station problem

    • The gas station problem involves finding the minimum starting point from where a circular route can be completed without running out of gas.

    • The solution can be obtained using the concept of cumulative sum and tracking the minimum sum encountered.

    • If the total sum of gas is greater than or equal to the total sum of cost, a solution exists.

    • If there are multiple valid starting points, return the one with

  • Answered by AI
  • Q2. Max area in the histogram
  • Ans. 

    Find the maximum area in a histogram.

    • Iterate through the histogram and calculate the area for each bar.

    • Keep track of the maximum area encountered so far.

    • The area of a bar is calculated by multiplying its height with the width (number of consecutive bars) it can extend to.

    • Consider using a stack to efficiently calculate the area for each bar.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Simplify path problem
  • Ans. 

    The Simplify path problem involves simplifying a given absolute path to its canonical form.

    • Use a stack to keep track of the directories in the path.

    • Split the path by '/' and process each directory.

    • Ignore empty directories and '.'.

    • If encountering '..', pop the top directory from the stack.

    • Join the remaining directories in the stack to form the simplified path.

  • Answered by AI
  • Q2. N-ary tree DFS problem
  • Ans. 

    The question is about solving a problem related to N-ary tree using Depth First Search (DFS).

    • Understand the concept of N-ary tree and Depth First Search (DFS)

    • Implement the DFS algorithm to traverse the N-ary tree

    • Handle the tree nodes and perform necessary operations during traversal

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. LLD round with design patterns
  • Q2. Leadership principle discussion
Round 4 - Technical 

(2 Questions)

  • Q1. HLD round for notification system
  • Q2. Leadership principle discussion

Skills evaluated in this interview

Software Development Engineer II Interview Questions Asked at Other Companies

asked in Zepto
Q1. Given 2 large numeric comma seperated strings. You need to calcul ... read more
asked in Zepto
Q2. How many microservices do I own & at what scale they handle t ... read more
asked in Porter
Q3. 1. Given an array find a subset that sums to a given sum K 2. Giv ... read more
Q4. design a LLD of portfolio management system where you can add any ... read more
asked in S&P Global
Q5. Difference between truncate and delete and when we prefer what op ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

4 LC questions for each round of the interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Intervals related question is asked

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare System design and Leetcode questions

Amazon interview questions for designations

 Software Engineer II

 (2)

 Software Development Engineer

 (37)

 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)

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Trie related question
  • Q2. Follow up on Trie
Round 2 - Technical 

(2 Questions)

  • Q1. Russian doll envelop variant
  • Ans. 

    Russian doll envelop variant is a problem where you need to find the maximum number of envelopes you can put inside each other.

    • Sort the envelopes based on width and height

    • Use dynamic programming to find the longest increasing subsequence based on height or width

    • The maximum number of envelopes that can fit inside each other is the length of the longest increasing subsequence

  • Answered by AI
  • Q2. Follow up on it

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the basics well

Get interview-ready with Top Amazon Interview Questions

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

I applied via Approached by Company and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Easy + Medium leet code questions on hacker hank.

Round 2 - HR 

(3 Questions)

  • Q1. Describe a project you worked on
  • Q2. How many users did your system have?
  • Ans. 

    The system had over 1 million users worldwide.

    • The system had a global user base.

    • The user count exceeded 1 million.

    • Users were from various countries and regions.

  • Answered by AI
  • Q3. Can you describe how a hashmap works?
  • Ans. 

    A hashmap is a data structure that stores key-value pairs and allows for constant time lookup and insertion.

    • Hashmaps use a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys hash to the same index, which can be resolved using techniques like chaining or open addressing.

    • Example: HashMap<String, Integer> map = new HashMap<>(); map.put("key", 123); int value = map.get("key

  • Answered by AI
Round 3 - One-on-one 

(4 Questions)

  • Q1. Design Unix Find File Library
  • Ans. 

    Design a Unix Find File Library

    • Implement functions to search for files based on criteria like name, size, permissions, etc.

    • Utilize system calls like opendir(), readdir(), and stat() to traverse directories and gather file information.

    • Support options for recursive searching, filtering by file type, and specifying search depth.

    • Include error handling for cases like permission denied or invalid paths.

    • Provide a user-friendl...

  • Answered by AI
  • Q2. Implement a simplified Video Codex using data structures
  • Ans. 

    Implement a simplified Video Codex using data structures

    • Use a hash table to store key-value pairs of video frames and their corresponding codecs

    • Implement a priority queue to efficiently retrieve the most frequently accessed video frames

    • Consider using a linked list to maintain the order of video frames in the codex

  • Answered by AI
  • Q3. System Design: e-commerce
  • Q4. Behavioral questions based on Amazon's LPs

Interview Preparation Tips

Topics to prepare for Amazon Software Development Engineer II interview:
  • Data Structures
  • Clean Code
  • System Design
  • Amazon LPs
Interview preparation tips for other job seekers - - Work on several medium leet code questions
- Focus on hashmaps, linked lists and trees/graphs (basic traversals)
- Focus on producing logical and maintainable code (clean code, extensible code)
- Read the system design books by Alex Xu (or do the Grokking the System Design Interview)
- Buy the book "Answering Behavioral Questions in Amazon Interviews"

Skills evaluated in this interview

Software Development Engineer II Jobs at Amazon

View all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Project based questions, DS algo
  • Q2. System design for a delivery management system
  • Ans. 

    Design a system to manage deliveries efficiently

    • Use a centralized database to store information about deliveries, drivers, and customers

    • Implement a tracking system to monitor the status of deliveries in real-time

    • Include features like route optimization, delivery scheduling, and notifications for customers

    • Consider scalability and reliability to handle a large volume of deliveries

    • Integrate with mapping APIs for accurate

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Online Test of 1 hr with multiple questions

Round 2 - Technical 

(2 Questions)

  • Q1. Programming question
  • Q2. Programming question 2
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 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 - LLD 

(1 Question)

  • Q1. Low level design for a product including designing classes and database
  • Ans. 

    Designing classes and database for a product

    • Identify the entities and relationships in the system

    • Create a class diagram with attributes and methods

    • Design the database schema with tables and relationships

    • Consider performance, scalability, and security

    • Use appropriate design patterns and principles

  • Answered by AI
Round 3 - Coding Test 

Medium level DSA problems related to tree and arrays.

Round 4 - HLD 

(1 Question)

  • Q1. High level design for 3 products
  • Ans. 

    High level design for 3 products

    • Identify user needs and requirements

    • Create a conceptual design for each product

    • Define the architecture and components

    • Consider scalability, security, and performance

    • Document the design and review with stakeholders

  • Answered by AI
Round 5 - Coding Test 

Medium level DSA problem and leadership principles situational questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for DSA, LLD, HLD, and Leadership principle questions. Practice daily DSA problems.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Design SkipTracker() for amazon prime music.
  • Ans. 

    Design SkipTracker() for Amazon Prime Music

    • SkipTracker() should keep track of skipped songs in Amazon Prime Music

    • It should maintain a list of skipped songs as an array of strings

    • The list should be updated whenever a song is skipped

    • SkipTracker() should provide methods to add, remove, and retrieve skipped songs

  • Answered by AI
  • Q2. Design multiplayer game like pubg
  • Ans. 

    Design a multiplayer game similar to PUBG.

    • Create a large map with various terrains and buildings

    • Allow players to form teams and communicate with each other

    • Include a variety of weapons and equipment for players to find and use

    • Implement a shrinking play area to force players into closer combat

    • Include a ranking system to encourage competition and skill improvement

  • Answered by AI
  • Q3. Find a missing number in unsorted array which is having elements in the range[1,n]
  • Ans. 

    Find a missing number in an unsorted array with elements in the range [1,n].

    • Use a hash set to store the elements and check for missing numbers.

    • Calculate the sum of all elements and subtract it from the sum of the range [1,n].

    • Use XOR operation to find the missing number.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have applied through amazon job site.
Got call from HR and formal discussion.
After that they sent OA link. There were two hard questions and some system design related question. And some leadership principles.
I had total 3 rounds and got rejected.

Skills evaluated in this interview

Amazon Interview FAQs

How many rounds are there in Amazon Software Development Engineer II interview?
Amazon interview process usually has 2-3 rounds. The most common rounds in the Amazon interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Amazon Software Development Engineer II 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, C++, Customer Experience Management and Java.
What are the top questions asked in Amazon Software Development Engineer II interview?

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

  1. find a missing number in unsorted array which is having elements in the range[1...read more
  2. How many users did your system ha...read more
  3. Can you describe how a hashmap wor...read more
How long is the Amazon Software Development Engineer II interview process?

The duration of Amazon Software Development Engineer II 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 II Interview Process

based on 36 interviews

3 Interview rounds

  • Coding Test Round
  • Technical Round
  • One-on-one Round
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 II Salary
based on 944 salaries
₹22 L/yr - ₹91 L/yr
98% more than the average Software Development Engineer II Salary in India
View more details

Amazon Software Development Engineer II Reviews and Ratings

based on 48 reviews

2.8/5

Rating in categories

3.4

Skill development

2.2

Work-life balance

4.0

Salary

2.2

Job security

2.3

Company culture

2.5

Promotions

2.7

Work satisfaction

Explore 48 Reviews and Ratings
Software Development Engineer II

Hyderabad / Secunderabad

3-6 Yrs

₹ 17-94 LPA

Software Development Engineer II

Hyderabad / Secunderabad

3-7 Yrs

₹ 17-96 LPA

SDE II, Stores TA

Hyderabad / Secunderabad

2-10 Yrs

Not Disclosed

Explore more jobs
Customer Service Associate
4.1k salaries
unlock blur

₹0.6 L/yr - ₹6 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