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

Clear (1)

Amazon SDE (Software Development Engineer) Interview Questions, Process, and Tips

Updated 8 Mar 2023

Top Amazon SDE (Software Development Engineer) Interview Questions and Answers

View all 10 questions

Amazon SDE (Software Development Engineer) Interview Experiences

22 interviews found

I applied via Referral and was interviewed in Jun 2021. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Why do you want a job change?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in Data Structures and logical programme for technical interview

I applied via Referral and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. DSA based questions (2 in each interview). Arrays, LL, Stacks, Queues,DP, Graphs etc.
  • Q2. Behavioural questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - DO DSA properly and practice a lot, do atleast 500+ questions before sitting for interview.

SDE (Software Development Engineer) Interview Questions Asked at Other Companies

asked in Carwale
Q1. A string is given consisting of lowercase alphabets. Write a func ... read more
asked in Carwale
Q2. Given a balance and 100 coins;out of which,one is heavier. Find m ... read more
Q3. Given a binary search tree , print the path which has the sum equ ... read more
asked in Housing.com
Q4. Given a square area of 1024x1024 on a map with some flats (housin ... read more
asked in Carwale
Q5. Delete nodes in linkedlist which have a greater value on right si ... read more

I applied via Campus Placement and was interviewed before Oct 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

There was aptitude questions and two coding questions in the same round

Round 2 - Technical 

(2 Questions)

  • Q1. Mostly based on Data Structures and Algorithm
  • Q2. How will you store a particular data, we need to suggest a DS for that?

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be prepared with DSA as for SDE roles that is very important.

Interview Questionnaire 

3 Questions

  • Q1. 1. Describe your work experience.
  • Q2. 2. Are you aware of high and low level design principles
  • Ans. 

    Yes, high and low level design principles are important in software development.

    • High level design principles focus on overall architecture and system organization.

    • Low level design principles focus on implementation details and code structure.

    • Examples of high level design principles include SOLID, DRY, and KISS.

    • Examples of low level design principles include naming conventions, code commenting, and code formatting.

    • Both ...

  • Answered by AI
  • Q3. 3. Preferred job location

Amazon interview questions for designations

 SDE

 (44)

 Software Development Engineer

 (34)

 SDE Intern

 (15)

 SDE-2

 (14)

 Software Development Engineer II

 (29)

 Software Development Engineer Intern

 (25)

 Software Development Engineer 1

 (8)

 Software Development Engineer 3

 (3)

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

Round 1 - Technical 

(1 Question)

  • Q1. Problem Solving, Datastructures
Round 2 - Technical 

(1 Question)

  • Q1. Problem Solving, Datastructures

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on leadership principles. Try to get points from your past experience that substantiate those principles.

Get interview-ready with Top Amazon Interview Questions

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

Round 1 - Coding Test 

2 Coding Ques + Aptitude

Round 2 - One-on-one 

(1 Question)

  • Q1. Question on Hash Maps

Interview Preparation Tips

Topics to prepare for Amazon SDE (Software Development Engineer) interview:
  • Algorithms
  • Data Structures
Interview preparation tips for other job seekers - Practice Question from Leetcode and Codeforces.

I was interviewed in Dec 2016.

Interview Questionnaire 

2 Questions

  • Q1. Convert expression to post-fix
  • Ans. 

    Convert an expression to post-fix notation.

    • Start with an empty stack.

    • Scan the expression from left to right.

    • If the scanned character is an operand, output it.

    • If the scanned character is an operator, pop two operands from stack, output them in post-fix notation and push the result back.

    • Repeat until the end of expression.

  • Answered by AI
  • Q2. Maximum continous sum in an array of integers
  • Ans. 

    Find the maximum continuous sum in an array of integers.

    • Use Kadane's algorithm to find the maximum subarray sum in linear time complexity.

    • Initialize two variables, one for current maximum sum and another for overall maximum sum.

    • Iterate through the array and update the variables accordingly.

    • Example: For array [-2, 1, -3, 4, -1, 2, 1, -5, 4], the maximum continuous sum is 6 (from index 3 to 6).

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: I interned at Amazon, which allowed me to skip round 1.
Tips: Just go through questions on geeksforgeeks and practice on hackerrank, almost all of the questions will come from them.

Round: Technical Interview
Experience: The discussion was mainly focused on my interests and what all I had learned from my previous experiences.
Tips: You should show your passion for the technology here. What fascinates you the most in tech. Are you a curious one. Don't try to fake here as it might backfire.

Round: Technical Interview
Experience: 2 programming questions.
Tips: If you have give a sincere effort in practicing to solve algorithmic problems you should be good.

Round: HR Interview
Experience: I had gone through this code on geeksforgeeks, so I had a basic idea of the approach and hence I was able to solve it. This round was taken by the manager and we mostly discussed my interests.
Tips: A genuine interest in any particular field will be of great help.

College Name: IIT

Skills evaluated in this interview

I was interviewed in Aug 2016.

Interview Questionnaire 

3 Questions

  • Q1. A variant of Longest Increasing Subsequence
  • Ans. 

    Find the length of longest increasing subsequence in an array.

    • Use dynamic programming to solve the problem efficiently.

    • Maintain an array to store the length of longest increasing subsequence ending at each index.

    • Traverse the array and update the array for each index.

    • Return the maximum value in the array as the length of longest increasing subsequence.

  • Answered by AI
  • Q2. Maximum of every window of size K in an array
  • Ans. 

    Find maximum of every window of size K in an array

    • Iterate through the array and maintain a deque of indices of elements in the current window

    • Remove indices from the front of the deque if they are outside the current window

    • Remove indices from the back of the deque if their corresponding elements are smaller than the current element

    • The front of the deque will always contain the index of the maximum element in the current

  • Answered by AI
  • Q3. Binary Search in a semi infinite array
  • Ans. 

    Implement binary search in a semi-infinite array.

    • Start with the first element and keep doubling the index until the target element is less than the current element.

    • Perform binary search on the subarray from the last doubled index to the current index.

    • If the target element is not found, repeat the process by doubling the last index and searching again.

    • Handle edge cases where the target element is at the first index or n

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Some MCQs on Networking,OS,etc. were asked and 3 coding questions on linked list,etc. were asked.
Tips: Be fast and confident.
Duration: 1 hour 30 minutes
Total Questions: 32

Round: Technical Interview
Experience: Interviewer asked my name and interests and then went about with the questions.
Tips: Must be strong in algorithms and data structures.

Round: Technical Interview
Experience: I was initially unable to solve it but I asked for some hints which were enough.
Tips: Take your time and ask for hints if required.

College Name: IIT Varanasi

Skills evaluated in this interview

I was interviewed before May 2016.

Interview Questionnaire 

1 Question

  • Q1. Write a program to calculate the sum of level order tree
  • Ans. 

    Program to calculate sum of level order tree

    • Traverse the tree level by level using BFS

    • Add the values of each level and return the sum

    • Use a queue to store the nodes at each level

    • Handle edge cases like empty tree or null root

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Applied through referral and after the review my resume gets shortlisted.

Round: Test
Experience: 6 program and their outputs are given. We have debug the program to get the desired output.
Duration: 11 hours 20 minutes
Total Questions: 6

Round: Test
Experience: Have to write a code for 2 problems.
Duration: 1 hour
Total Questions: 2

Skills: Behavioural Skills, LOGICAL THINKING ABILITIES, Technical Skill

Skills evaluated in this interview

I was interviewed before Jan 2016.

Interview Preparation Tips

Round: Test
Duration: 1 hour 30 minutes
Total Questions: 22

College Name: Manipal University Jaipur
Contribute & help others!
anonymous
You can choose to be anonymous

Amazon Interview FAQs

How many rounds are there in Amazon SDE (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.
What are the top questions asked in Amazon SDE (Software Development Engineer) interview?

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

  1. Write a program to calculate the sum of level order t...read more
  2. Alien Dictionary with slight modification to sort list of words with some rando...read more
  3. Maximum continous sum in an array of integ...read more

Recently Viewed

DESIGNATION

Pyspark Developer

25 interviews

DESIGNATION

INTERVIEWS

Capgemini

No Interviews

INTERVIEWS

Tiger Analytics

No Interviews

INTERVIEWS

Fractal Analytics

No Interviews

INTERVIEWS

Intellect Design Arena

No Interviews

INTERVIEWS

Fractal Analytics

No Interviews

INTERVIEWS

Blinkit

No Interviews

INTERVIEWS

Carelon Global Solutions

No Interviews

INTERVIEWS

Fractal Analytics

No Interviews

Tell us how to improve this page.

Amazon SDE (Software Development Engineer) Interview Process

based on 2 interviews

3 Interview rounds

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

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Paytm Interview Questions
3.3
 • 776 Interviews
Tata Group Interview Questions
4.2
 • 358 Interviews
BigBasket Interview Questions
3.9
 • 357 Interviews
Myntra Interview Questions
4.0
 • 216 Interviews
Blinkit Interview Questions
3.7
 • 182 Interviews
Uber Interview Questions
4.2
 • 166 Interviews
AmbitionBox Interview Questions
4.9
 • 153 Interviews
JioMart Interview Questions
3.9
 • 96 Interviews
View all
Amazon SDE (Software Development Engineer) Salary
based on 682 salaries
₹17 L/yr - ₹60 L/yr
41% more than the average SDE (Software Development Engineer) Salary in India
View more details

Amazon SDE (Software Development Engineer) Reviews and Ratings

based on 69 reviews

3.8/5

Rating in categories

4.1

Skill development

3.2

Work-life balance

4.2

Salary

3.0

Job security

3.6

Company culture

3.7

Promotions

3.5

Work satisfaction

Explore 69 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