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 Interview Questions and Answers

Updated 12 Jul 2025

380 Interview questions

A Software Developer was asked 2w ago
Q. What is Java programming?
Ans. 

Java is a versatile, object-oriented programming language used for building cross-platform applications.

  • Object-Oriented: Java uses classes and objects to model real-world entities. Example: Creating a 'Car' class with attributes like 'color' and 'model'.

  • Platform-Independent: Java applications can run on any device with a Java Virtual Machine (JVM). Example: Write once, run anywhere.

  • Rich API: Java provides a compre...

🔥 Asked by recruiter 2 times
A Software Developer was asked 2w ago
Q. What is OOPS?
Ans. 

OOP (Object-Oriented Programming) is a programming paradigm based on objects and classes to structure software design.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism to create a new class using properties and methods of an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present the same interfac...

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked 2mo ago
Q. What is HTML?
Ans. 

HTML (HyperText Markup Language) is the standard language for creating web pages and web applications.

  • HTML uses tags to structure content, e.g., <h1> for headings, <p> for paragraphs.

  • It allows embedding multimedia elements like images (<img>) and videos (<video>).

  • HTML forms (<form>) enable user input, such as text fields and buttons.

  • HTML documents are structured with a doctype declara...

A Software Developer was asked 2mo ago
Q. What is PHP?
Ans. 

PHP is a popular server-side scripting language designed for web development, enabling dynamic content creation and database interaction.

  • PHP stands for 'Hypertext Preprocessor'.

  • It is widely used for building web applications, such as WordPress and Facebook.

  • PHP code is embedded within HTML, allowing for seamless integration.

  • It supports various databases, including MySQL, PostgreSQL, and SQLite.

  • PHP is open-source an...

What people are saying about Amazon

View All
sparklingfettuccine
Verified Icon
2w
currently not working
Amazon CSA role Hyderabad
I want to know how much time does it takes for Amazon to approve my badge photo for permanent work from home CSA role as I submitted my badge photo 4 days ago and still did not receive any information regarding my bgv as I was told I'll receive it soon.
Got a question about Amazon?
Ask anonymously on communities.
A Software Developer was asked 2mo ago
Q. What is MySQL?
Ans. 

MySQL is an open-source relational database management system used for storing and managing data.

  • MySQL uses Structured Query Language (SQL) for database operations.

  • It supports various data types, including INT, VARCHAR, and DATE.

  • MySQL is widely used in web applications, such as WordPress and Joomla.

  • It allows for data manipulation through commands like SELECT, INSERT, UPDATE, and DELETE.

  • MySQL can handle large datab...

A Software Developer was asked 2mo ago
Q. What is CSS?
Ans. 

CSS (Cascading Style Sheets) is a stylesheet language used to describe the presentation of a document written in HTML or XML.

  • CSS controls layout, colors, fonts, and overall visual appearance of web pages.

  • It allows for responsive design, enabling websites to adapt to different screen sizes (e.g., using media queries).

  • CSS can be applied inline, embedded in the head of an HTML document, or linked as an external style...

Amazon HR Interview Questions

1k questions and answers

Q. Can you provide an example of a time when you felt you lacked sufficient resourc ... read more
Q. Why do you want to join a non-IT company?
Q. Are you comfortable working in rotational shifts?
A Software Developer was asked 2mo ago
Q. What is Java?
Ans. 

Java is a versatile, object-oriented programming language used for building platform-independent applications.

  • Developed by Sun Microsystems in 1995.

  • Java runs on the Java Virtual Machine (JVM), enabling cross-platform compatibility.

  • It supports Object-Oriented Programming (OOP) principles like inheritance, encapsulation, and polymorphism.

  • Java is widely used for web applications, mobile applications (Android), and en...

Are these interview questions helpful?
A Software Developer was asked 2mo ago
Q. What is the full form of URL?
Ans. 

URL stands for Uniform Resource Locator, a reference to a web resource that specifies its location on a computer network.

  • A URL is used to access web pages, such as 'https://www.example.com'.

  • It consists of several components: protocol (http), domain (example.com), and path (/page).

  • URLs can also include query parameters, like 'https://www.example.com/search?q=keyword'.

  • They are essential for web navigation and linkin...

A Software Developer was asked 3mo ago
Q. Explain the pick and not pick dynamic programming approach.
Ans. 

Dynamic Programming (DP) approach to solve problems by deciding to pick or not pick an item based on constraints.

  • DP is used to optimize problems with overlapping subproblems and optimal substructure.

  • Common examples include the Knapsack problem, where you decide to include or exclude items based on weight and value.

  • The decision to pick or not pick can be represented using a binary choice at each step.

  • Memoization or...

A Software Developer was asked 3mo ago
Q. What is the system design for the cart feature in an e-commerce website?
Ans. 

Designing a cart feature for an e-commerce site involves user experience, data management, and integration with payment systems.

  • User Interface: Simple and intuitive design for adding/removing items.

  • Data Storage: Use a database to store cart items, e.g., MongoDB or MySQL.

  • Session Management: Store cart data in user sessions or cookies for persistence.

  • Real-time Updates: Use WebSockets or AJAX for real-time cart updat...

Amazon Software Developer Interview Experiences

198 interviews found

Interview Questionnaire 

11 Questions

  • Q1. A String was given with a lot of words in it and I had to reverse all the words
  • Ans. 

    Reverse all the words in a given string

    • Split the string into an array of words

    • Loop through the array and reverse each word

    • Join the reversed words back into a string

  • Answered by AI
  • Q2. A String was given and I have to swap word by word from the beginning to the end
  • Ans. 

    Swap words in a string from beginning to end, reversing their order while maintaining their original characters.

    • Split the string into an array of words. Example: 'Hello World' -> ['Hello', 'World']

    • Reverse the array of words. Example: ['Hello', 'World'] -> ['World', 'Hello']

    • Join the reversed array back into a string. Example: ['World', 'Hello'] -> 'World Hello'

    • Consider edge cases like multiple spaces or punctua...

  • Answered by AI
  • Q3. In question 2 when there are ‘n’ in the String whose position shouldn’t get affected during the swapping process
  • Ans. 

    Explaining how to handle 'n' in a string during swapping process

    • Identify the positions of 'n' in the string

    • Exclude those positions from the swapping process

    • Use a temporary variable to swap the characters

    • Ensure the swapped characters are not 'n'

    • Return the modified string

  • Answered by AI
  • Q4. Continuation was when more than 1 ‘n’ occur together
  • Q5. There is a big file containing numbers and we have to sort all of them
  • Ans. 

    We can use any sorting algorithm like quicksort, mergesort, heapsort, etc.

    • Choose the appropriate sorting algorithm based on the size of the file and the range of numbers

    • Implement the chosen algorithm in the programming language of choice

    • Read the numbers from the file into an array or list

    • Apply the sorting algorithm to the array or list

    • Write the sorted numbers back to the file

  • Answered by AI
  • Q6. How to implement word suggestions like that in Eclipse
  • Ans. 

    Word suggestions in Eclipse can be implemented using algorithms like Trie or N-gram models.

    • Use Trie data structure to store the dictionary of words

    • Implement auto-complete feature using Trie

    • Use N-gram models to suggest words based on context

    • Train the N-gram model on a large corpus of text data

    • Combine both approaches for better accuracy

    • Consider user's typing speed and frequency of words for better suggestions

  • Answered by AI
  • Q7. Given 2 integers a and b, the sequence which will be formed is a, b, a+b, a+2b…. i.e Current element = sum of the previous 2 elements. So now given a number k, how to figure out if it lies in the sequenc...
  • Ans. 

    To check if a number k lies in a sequence formed by adding previous 2 elements, start with a=0 and b=1 and iterate until k is found or exceeded.

    • Start with a=0 and b=1

    • Iterate through the sequence until k is found or exceeded

    • If k is found, return true. If exceeded, return false

  • Answered by AI
  • Q8. Given a Binary Tree, if it is a BST or not
  • Q9. A stream of numbers are coming and I have to keep track of the kth largest number in it
  • Ans. 

    Keep track of kth largest number in a stream of numbers.

    • Use a min-heap of size k to keep track of kth largest number.

    • For each incoming number, compare it with the root of the heap.

    • If it is larger than the root, replace the root with the new number and heapify.

    • The root of the heap will always be the kth largest number.

  • Answered by AI
  • Q10. Summer Internship Project
  • Q11. Given an Infix expression, how to evaluate its answer
  • Ans. 

    Infix expression can be evaluated using the concept of operator precedence and associativity.

    • Convert the infix expression to postfix expression using stack data structure

    • Evaluate the postfix expression using stack data structure

    • Use operator precedence and associativity rules to determine the order of evaluation

    • Parentheses can be used to override the default order of evaluation

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: 1 Written Test - (20 MCQ + 2 Coding Questions) on HackerRankAmazon visited our Campus on 28th July. In the morning the recruitment process started with the Written Test. It was taken on Hacker Rank which comprised of 20 MCQ Questions followed by 2 Programming Questions. MCQ Questions usually contain questions on C, DBMS, OS, and 4-5 Logical Questions. One should be aware that the Hacker Rank platform keeps record of how much time you have spent on each Question and after spending so much time did you attempt it or not. The 2 Coding Problems were quite easy. Only speed and accuracy was required to crack this round.Written Round Coding Question -1) A Linked List was given and we had to swap the ith node with (n-i+1)th node.2)(given some intervals), merge the common Intervals.I coded both the problems and passed all the test cases of the first question and half of the test cases of the 2nd Question. By the evening the results of the written round were declared and the Interview Process started. I rushed to the Design Centre and while I was arranging my grade sheets and my resume , something totally unexpected happened. One of the Amazon Employees who was also an Alumni of MNIT Jaipur walked up to me and told me that I have done very well in the Written Test and I was ranked 2nd based on the Written Test. He wished me ‘Best of Luck’ and told me to calm down and give my best. Talking to him really motivated me a lot. At the same time I was shocked that he still remembered my name even after an year, as we had talked only for a couple of minutes during my Internship Process in Amazon in which I was among the last 3 Students who went to the final round but was not selected. Apart from the students shortlisted from the written test, Amazon also shortlists around 5-6 more candidates based on their CGPA and some other factors. But it should be noted that at any time during the Recruitment Process, Cumulative scores can be considered.
Tips: CGPA above 8 should definitely be maintained.
Total Questions: 22

Round: Technical Interview
Experience: The Interview Process started with around 25 candidates. I was among the first few with whom the Interview had started which went on smoothly



Questions of Interview Round II –



1) A String was given with a lot of words in it and I had to reverse all the words
2) A String was given and I have to swap word by word from the  beginning to the end.
3) In question 2 when there are ‘n’ in the String whose position shouldn’t get affected during the swapping process
4) Continuation was when more than 1 ‘n’ occur together.



I was asked to code the above, and told them about the time and space complexities. Then he went through my resume and based on my projects he appreciated my interest in OS. and asked me a Question –


You have a large game and a small memory, so how will you play the game.
I told him the concept of Virtual Memory and how it makes it possible to run such a game. Then he asked me whether there is any limit or constraint on the size of the virtual memory. I explained to him if the amount of memory required at any particular moment of time to run the game, itself exceeds the available size in the RAM for the user, then we won’t be able to play. Then he asked “Suppose you have a 4 GB Ram then how much memory will be available to the user and what will happen to the other memory”. I explained that kernel occupies some memory and apart from that page tables and all are also stored in the memory. Then there were some discussions regarding my projects.
Tips: These is some Important stuff which one should not miss while preparing for the interviews :


Languages one should be knowing for Placements:
1) C : For most of the companies
2) C ++ - For Faster coding using Standard Template Libraries and for OOPS Concept3) Java – For some specific companies which are focused on Java


Operating System:
1) Galvin Text Book
2) Video Lectures by Prof. Kamakoti – IIT Bombay (Not available on NPTEL. You can get it from current student of IIT Bombay or take it from me. I have Video Lectures of 2013 Pass out Batch)
3) Good grasp on OS implementation on Linux and Pint OS.
4) Detail Knowledge of How Threading is implemented in JAVA


Computer Networks:
1) Video Lectures by Prof. Sujoy Ghosh – IIT Kharagpur (Available on NPTEL)
2) Good grasp on Linux Networking (Servers and Networking Commands)


DBMS :
1) SQL Queries.
2) Database Implementation in MY SQL (Using B trees)
3) Indexing and Hashing in DBMS
4) Drawbacks of SQL Database
5) No SQL Database – Graph and Document Type Database and how they solve the problems
6) Every minute detail of the Database you have created in your DBMS Project.


Data Structures and Algorithms:
1) Video Lectures on Data Structures by Prof Naveen Garg – IIT Delhi (Available on NPTEL)
2) Video Lectures on Data Structure and Algorithm by Prof. Charles Leiserson and Prof. Erik Demaine - MIT.
3) TextBook – “Data Structures and Algorithms made Easy” by Karumanchi
4) TextBook – “Cracking the Coding Interview” by Gayle Laakmann Founder and CEO, CareerCup.com
5) GeeksforGeeks6) Company Specific Preparation by Practicing Previous Interview Papers


Programming Practices:
1) Codechef or Any other Coding Website: Experience helps to increase your Programming Speed, definitely useful in qualifying Coding Round
2) Standard Template Library in C++ for faster Coding - Hacker Rank Tutorial


Other Stuff to Study:
1) Brain Teasers
2) Design Problems (asked by Companies like Adobe. Detailed Example in Karumanchi Textbook)
3) Logical And Aptitude Preparation – Arun Sharma TextBook
4) HR Interview preparation from Indiabix.com

Round: Other Interview
Experience: Around 17 students were shortlisted. The resumes of students and their academic projects were given importance while shortlisting for this round. It started at around 10PM.



Questions of Interview Round III –



1) There is a big file containing numbers and we have to sort all of them.



I mentioned the approach mentioned in GeeksforGeeks that for example the available RAM for this purpose is 100 MB. So we can break the File in chunks of 100 Mb and bring the chunks in Memory and first sort them individually. Then we can prepare a heap containing first elements from all chunks. And keep extracting min from heap and replace it by next smallest element of the chunk it belongs. Then he asked if the number of chunks being formed here are very large, that is the heap I am preparing won’t fit in 100MB, then what to do. I suggested some further modifications and finally he was satisfied with the solution.



2) How to implement word suggestions like that in Eclipse.



I explained that it can be done using Tree Data Structure or using some sort of multilevel hashing in combination with storing words in sorted form. He asked me time complexities and told me to think of further improvements. He wasn’t completely satisfied and moved onto the next question.



3) Given 2 integers a and b, the sequence which will be formed is a, b, a+b, a+2b….



i.e Current element = sum of the previous 2 elements.



So now given a number k, how to figure out if it lies in the sequence or not.



This Question is not as easy as it looks. Here a and b can be negative or positive so the Generated Sequence can contain all positive or all negative or alternate occurrence of positive and negative element in sequence. So till which point should we generate the sequence and decide that k can or cannot lie in the sequence. I wrote a code but he mentioned few test cases in which my code was failing. After a few modifications I was able to write a satisfactory code solving all the test cases.

Round: Other Interview
Experience: I answered both the questions and also mentioned  solution to kth largest if Deletion operation is also there and if it is not. Then he told me to write the code for Heapify Function. Again there were some discussion regarding my Projects.

Round: Other Interview
Experience: Questions of Interview Round V -
This round started with a detailed discussion about my Summer Internship Project in Wooqer. After that I was asked to introduce myself. Then he asked me -

1) Given an Infix expression, how to evaluate its answer.

I was asked to write the code for it covering all the cases and I was given half an hour to do it. I wrote it in about 15-20 minutes. Interview of 4th Round got over by about 9 PM, and the results were declared by 11PM.
Tips: Amazon mostly focuses on – Tries, Big Data, Hashing, Strings. Apart from my general preparation for the Interview, I had gone through around 60 Amazon Interview Papers available on GeeksforGeeks, so I was totally aware of the kind of Questions I would be facing in the Interview, and prepared myself accordingly. In this year’s Amazon Interviews mostly the questions asked were not directly from GeeksforGeeks. And few questions which were picked directly from GeeksforGeeks, the solution they were expecting for it was better than that mentioned in GeekforGeeks. But to guess such a solution, one should surely be aware of all the existing solutions in GeeksforGeeks.

General Tips: Self Projects have a very high weight age in one's selection because this is one of the many things that distinguishes you from other candidates sitting in the Interview. It also shows your capabilities and your field of Interest. Also&#44; Summer Internship surely matters a lot in Companies like Amazon. There was a very detail discussion of my Internship at Wooqer during the Interview Process at Amazon so be prepared.
College Name: NIT JAIPUR

Skills evaluated in this interview

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

I appeared for an interview in Feb 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Self introduction
  • Q2. Hi , good morning this is kamakshi from someswaram Dr br Ambedkar konaseema district Andhra
Round 2 - Assignment 

Coding questions about our technical skills

Round 3 - Technical 

(1 Question)

  • Q1. About our skills
Round 4 - HR 

(1 Question)

  • Q1. According to the skills to move hr
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - HR 

(5 Questions)

  • Q1. Why Amazon Software Developer?
  • Ans. 

    Amazon offers challenging projects, innovative technologies, and a collaborative work environment.

    • Opportunity to work on cutting-edge projects like Amazon Web Services (AWS) or Alexa

    • Access to vast resources and tools for development

    • Collaborative work culture that encourages learning and growth

    • Opportunity to impact millions of customers worldwide

    • Competitive compensation and benefits package

  • Answered by AI
  • Q2. Why do you want to work at amazon ?
  • Q3. What are your strengths and weakness?
  • Q4. How would you solve?
  • Ans. 

    I would solve the problem by breaking it down into smaller tasks, analyzing requirements, designing a solution, coding, testing, and debugging.

    • Analyze requirements thoroughly before starting the development process

    • Break down the problem into smaller tasks to make it more manageable

    • Design a solution architecture that meets the requirements and is scalable

    • Code the solution using best practices and coding standards

    • Test th...

  • Answered by AI
  • Q5. What are the short term and long-term for teame or organisation?
  • Ans. 

    Short term goals focus on immediate tasks and objectives, while long-term goals involve strategic planning and growth.

    • Short term goals may include completing a specific project, improving team communication, or implementing a new software feature.

    • Long-term goals could involve expanding the team, increasing market share, or developing new products or services.

    • Short term goals help keep the team focused and motivated, wh...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Amazon Software Developer interview:
  • Excel
  • Data Entry
  • Project Management
  • Ms World
  • Programming
  • Google software developer
  • Microsoft software developer
Interview preparation tips for other job seekers - Here are some tips and advice for seekers looking to land a role at amazon software developer....
1. Understand Amazon's culture:?
2. Review job description ?
3.update your resume.? B
INTERVIEW PREPARATION
1.Research the team and role ?
2. Prepare to talk about your experience?
3.How would you solve?
4.What are your strengths and weakness?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Company Website and was interviewed in Jun 2024. There were 6 interview rounds.

Round 1 - Coding Test 

It was a coding test on Hackerrank with 3 Leetcode easy to medium-level questions.

Round 2 - Technical 

(1 Question)

  • Q1. Phone Interview Round - LP-based discussion followed by an easy DSA question.
Round 3 - Technical 

(1 Question)

  • Q1. Loop Round 1 (Hiring Manager Round) - LP-based discussion followed by a system design question (HLD) which was basically around what the hiring team is working on.
Round 4 - Technical 

(1 Question)

  • Q1. Loop Round 2 (Coding Round) - LP-based discussion followed by a Leetcode medium coding question.
Round 5 - Technical 

(1 Question)

  • Q1. Loop Round 3 (Coding Round) - LP-based discussion followed by an OOD question which was fairly simple but the requirements were not clarified very well even on asking multiple times. Ask and clarify to the...
Round 6 - Technical 

(1 Question)

  • Q1. Loop Round 4 (Coding Round) (Bar Raiser) - LP-based discussion followed by a Leetcode medium coding question.

Interview Preparation Tips

Topics to prepare for Amazon Software Developer interview:
  • Data Structures
  • Algorithms
  • System Design
  • Object Oriented Design
  • Amazon Leadership Principles
Interview preparation tips for other job seekers - Prepare well for DSA and System Design.

Stay confident.

For System Design and OOD, always clarify the requirements since it's very open-ended and subjective. And do keep an eye on the clock.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Good but tough i dint do well but still qualified

Round 2 - Coding Test 

Very tough only graphs dp and linked lists were asked

Round 3 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Q2. Dfs of a graph
  • Ans. 

    Depth-first search (DFS) is a graph traversal algorithm that explores as far as possible along each branch before backtracking.

    • DFS starts at a selected node and explores as far as possible along each branch before backtracking.

    • It uses a stack to keep track of nodes to visit next.

    • DFS can be implemented recursively or iteratively.

    • Example: DFS traversal of a graph starting from node A: A -> B -> D -> E -> C -&...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - go all in on your technical skills

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Least Common Ancestor of binary tree
  • Q2. Smallest path to reach from a to b point in matrix
  • Ans. 

    Use Dijkstra's algorithm to find the smallest path from point a to point b in a matrix.

    • Implement Dijkstra's algorithm to find the shortest path in a matrix

    • Create a matrix representation of the graph with weights on edges

    • Start from point a and explore all possible paths to reach point b

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. What is oops
  • Q2. What is Java programming
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hacker rank test include 2 code and mcg questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Coding based on linked list
  • Q2. String related coding questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Two coding questions, both passed 100%

Round 2 - Technical 

(1 Question)

  • Q1. What is the problem of identifying duplicates in an array?
  • Ans. 

    Identifying duplicates in an array involves finding and removing elements that appear more than once.

    • Iterate through the array and use a hash set to keep track of elements seen so far.

    • If an element is already in the hash set, it is a duplicate and can be removed.

    • Example: ['apple', 'banana', 'apple', 'orange'] - 'apple' is a duplicate.

    • Example: ['cat', 'dog', 'bird', 'cat'] - 'cat' is a duplicate.

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2-3 coding questions with some mcq

Round 2 - One-on-one 

(2 Questions)

  • Q1. Live coding with the hr
  • Q2. Binary Trees based traversal
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. It was a DFS based graph question [Leetcode easy]
  • Q2. Could you describe the process for designing a data structure that allows for all create and delete operations in O(1) time while also implementing a function that generates a random number?
  • Ans. 

    Design a data structure for O(1) create/delete and random number generation using a hash map and an array.

    • Use a hash map to store elements with their indices for O(1) access.

    • Maintain an array to store the actual elements for O(1) random access.

    • On insertion, add the element to the array and update the hash map.

    • On deletion, swap the element with the last element in the array, remove it, and update the hash map.

    • To get a r...

  • Answered by AI

Amazon Interview FAQs

How many rounds are there in Amazon Software Developer 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 Developer 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 Computer Science, Team Management, Architectural Design, Application Software and Data Mining.
What are the top questions asked in Amazon Software Developer interview?

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

  1. There is a 12 km road and a contractor who is in-charge of repairing it. Contra...read more
  2. What are the different types of hashing? Suggest an alternative and a better wa...read more
  3. 14. you have given a string of multiline. you have to print the maximum occupa...read more
How long is the Amazon Software Developer interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 132 interview experiences

Difficulty level

Easy 14%
Moderate 66%
Hard 20%

Duration

Less than 2 weeks 63%
2-4 weeks 22%
4-6 weeks 9%
6-8 weeks 3%
More than 8 weeks 3%
View more
Amazon Software Developer Salary
based on 2.5k salaries
₹23.5 L/yr - ₹43.8 L/yr
209% more than the average Software Developer Salary in India
View more details

Amazon Software Developer Reviews and Ratings

based on 272 reviews

3.9/5

Rating in categories

3.9

Skill development

3.5

Work-life balance

4.2

Salary

3.5

Job security

3.7

Company culture

3.7

Promotions

3.6

Work satisfaction

Explore 272 Reviews and Ratings
Sr Mgr, Software Development, Alexa Connected Devices

Bangalore / Bengaluru

10-15 Yrs

Not Disclosed

Software Dev Manager, HST Health Foundation

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Explore more jobs
Customer Service Associate
4k salaries
unlock blur

₹1.8 L/yr - ₹5 L/yr

Transaction Risk Investigator
3.1k salaries
unlock blur

₹2.9 L/yr - ₹6.5 L/yr

Associate
3.1k salaries
unlock blur

₹2 L/yr - ₹5.5 L/yr

Senior Associate
2.6k salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Software Developer
2.5k salaries
unlock blur

₹23.5 L/yr - ₹43.8 L/yr

Explore more salaries
Compare Amazon with

Flipkart

3.9
Compare

TCS

3.6
Compare

Google

4.3
Compare

Netflix

4.0
Compare
write
Share an Interview