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
4.1

based on 24.1k Reviews

Filter interviews by

Amazon Sde1 Interview Questions, Process, and Tips

Updated 31 Dec 2024

Top Amazon Sde1 Interview Questions and Answers

  • Q1. pid ={3,5,0,1} ppid ={5,4,2,2} process id(pid) ppid=parent process id let us say the process that we killed is 2 now we have to print 2,0,1 as 0,1 are child of 2 and supp ...read more
  • Q2. N queen problem with problem statement and dry running of code with 4 queens and then writing the code
  • Q3. Sub set problem(Check if there exists any sub array with given sum in the array ) . But the thing here is that we have to do it with space complexity of only O( 1 K ) . K ...read more
View all 38 questions

Amazon Sde1 Interview Experiences

33 interviews found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 11 Aug 2022

I applied via LinkedIn and was interviewed in Jul 2022. There were 2 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 - One-on-one 

(1 Question)

  • Q1. Linux Networking Programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Linux (core) Networking (IP and Subnet) Programming (OOP)

Sde1 Interview Questions & Answers

user image ananya jamaiyar

posted on 15 May 2022

Round 1 - Coding Test 
Round 2 - HR 

(1 Question)

  • Q1. Detailed discussion about your resume
Round 3 - Technical 

(1 Question)

  • Q1. Database related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Well be confident about the things you mentioned in your resume.

Sde1 Interview Questions & Answers

user image Anonymous

posted on 21 Feb 2022

I applied via Company Website and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Asked 2 questions
1. Find the strings with maximum pattern match in given array of strings
2. Find the shortest distance between two target elements in given array

Round 2 - Technical 

(1 Question)

  • Q1. 1. Find the contiguous sub array with max sum 2. Find the median of an array sorting is involved

Interview Preparation Tips

Topics to prepare for Amazon Sde1 interview:
  • Data St
  • Algorithms
Interview preparation tips for other job seekers - Completly asked questions related to DSA and practice medium and high level problems in geeksforgeeks and leetcode

Skills evaluated in this interview

Sde1 Interview Questions & Answers

user image Anonymous

posted on 9 Mar 2024

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

I applied via Referral and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Coding Test 

DSA round - algorithm to insert in sorted and non overlapping intervel

Amazon interview questions for designations

 Software Developer

 (177)

 Software Developer Intern

 (95)

 Software Engineer

 (79)

 Software Development Engineer

 (40)

 Device Associate

 (33)

 Software Development Engineer II

 (30)

 Data Engineer

 (22)

 Quality Service Associate

 (18)

Sde1 Interview Questions & Answers

user image Anonymous

posted on 13 Dec 2022

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-

I was interviewed before Dec 2021.

Round 1 - Aptitude Test 

Normal coding questions and good mcqs.

Round 2 - Technical 

(2 Questions)

  • Q1. Mountain array in a array.
  • Ans. 

    A mountain array in an array refers to an array where the elements form a peak and then descend.

    • The array should have a peak element and then the elements should descend on both sides.

    • For example, [1, 3, 5, 4, 2] is a mountain array in an array.

    • However, [1, 2, 3, 4, 5] is not a mountain array in an array.

  • Answered by AI
  • Q2. Median in a running stream.
  • Ans. 

    Finding the median in a running stream of data.

    • The median is the middle value in a sorted list of numbers.

    • In a running stream, we cannot sort the data beforehand.

    • We can use a min-heap and a max-heap to keep track of the median.

    • As new data comes in, we add it to the appropriate heap and balance the heaps.

    • The median is then the top element of the larger heap or the average of the top elements of both heaps.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and be confident and solve using better approach with good time complexity

Skills evaluated in this interview

Get interview-ready with Top Amazon Interview Questions

Sde1 Interview Questions & Answers

user image Anonymous

posted on 18 Aug 2022

I applied via campus placement at National Institute of Technology (NIT), Warangal and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding questions were asked, 1 invloves sorting and manipulation and the other one was trees question.

Round 2 - One-on-one 

(3 Questions)

  • Q1. 1 trees question and 1 priority queue question
  • Q2. Connect n ropes with minimum cost(priority queue question)
  • Ans. 

    Connect n ropes with minimum cost using priority queue

    • Create a priority queue and insert all the ropes into it

    • Pop the two smallest ropes from the queue and connect them

    • Insert the new rope into the queue and repeat until only one rope remains

    • The cost of connecting two ropes is the sum of their lengths

    • Time complexity: O(nlogn)

    • Example: Ropes of lengths 4, 3, 2, and 6 can be connected with a cost of 29

  • Answered by AI
  • Q3. Find the height of the tree when the leaf nodes are connected with each other
  • Ans. 

    The height of the tree can be found by counting the number of edges from the root to the farthest leaf node.

    • Count the number of edges from the root to the farthest leaf node

    • This will give the height of the tree

    • Example: If the farthest leaf node is 4 edges away from the root, the height of the tree is 4

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Amazon Sde1 interview:
  • Data Structures
  • OOPS
Interview preparation tips for other job seekers - Practicing Data Structures and Algorithms is must.

Skills evaluated in this interview

Sde1 Interview Questions & Answers

user image Anonymous

posted on 15 Mar 2022

Round 1 - Coding Test 

Leetcode medium problems

Round 2 - One-on-one 

(1 Question)

  • Q1. Find middle of linkedlist add 2 numbers
  • Ans. 

    To find the middle of a linked list, use two pointers - one moving twice as fast as the other. To add two numbers, traverse both lists simultaneously and add corresponding digits.

    • Use two pointers to find the middle of the linked list - one moving twice as fast as the other

    • To add two numbers represented by linked lists, traverse both lists simultaneously and add corresponding digits

    • If the sum of two digits is greater th

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - keep on trying, you will reach there

Skills evaluated in this interview

Sde1 interview

user image Faiz Mohammad

posted on 13 Mar 2022

Sde1 Interview Questions & Answers

user image Anonymous

posted on 11 Oct 2021

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

Interview Questionnaire 

5 Questions

  • Q1. 2 variable variation of LIS
  • Ans. 

    2 variable variation of LIS

    • The problem involves finding the longest increasing subsequence in two arrays

    • Dynamic programming can be used to solve the problem

    • The time complexity of the solution is O(n^2)

    • Example: Given two arrays [1, 3, 5, 4] and [2, 4, 3, 5], the longest increasing subsequence is [3, 5]

    • Example: Given two arrays [10, 22, 9, 33, 21, 50, 41, 60] and [5, 24, 39, 60, 15, 28, 27, 40], the longest increasing su

  • Answered by AI
  • Q2. House robber 3
  • Ans. Solved it with top down dp
  • Answered Anonymously
  • Q3. Search in rotated sorted array
  • Ans. 

    Search for an element in a rotated sorted array.

    • Use binary search to find the pivot point where the array is rotated.

    • Compare the target element with the first element of the array to determine which half to search.

    • Perform binary search on the selected half to find the target element.

    • Time complexity: O(log n), Space complexity: O(1).

  • Answered by AI
  • Q4. First non repeating character in continuous character stream
  • Ans. 

    Find the first non-repeating character in a continuous character stream.

    • Use a hash table to keep track of character frequency.

    • Iterate through the stream and check if the current character has a frequency of 1.

    • If yes, return the character as the first non-repeating character.

    • If no non-repeating character is found, return null or a default value.

  • Answered by AI
  • Q5. One priority queue question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Data structures and algorithms well, Answer managerial questions using STAR methodologies.

Skills evaluated in this interview

Sde1 Interview Questions & Answers

user image Anonymous

posted on 2 Nov 2022

I applied via Company Website and was interviewed before Nov 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

General Leet Code Question and it was easy

Round 3 - Coding Test 

General coding question which was from difficult

Interview Preparation Tips

Topics to prepare for Amazon Sde1 interview:
  • leetcode
  • Python
Interview preparation tips for other job seekers - Prepare Amazon Principles and also leet code.
Good to know system designs and more.

Amazon Interview FAQs

How many rounds are there in Amazon Sde1 interview?
Amazon interview process usually has 2-3 rounds. The most common rounds in the Amazon interview process are Coding Test, Technical and Resume Shortlist.
What are the top questions asked in Amazon Sde1 interview?

Some of the top questions asked at the Amazon Sde1 interview -

  1. pid ={3,5,0,1} ppid ={5,4,2,2} process id(pid) ppid=parent process id let u...read more
  2. N queen problem with problem statement and dry running of code with 4 queens an...read more
  3. Sub set problem(Check if there exists any sub array with given sum in the array...read more

Tell us how to improve this page.

Amazon Sde1 Interview Process

based on 6 interviews in last 1 year

1 Interview rounds

  • Coding Test Round
View more

People are getting interviews through

based on 15 Amazon interviews
Campus Placement
Referral
Company Website
Job Portal
47%
27%
13%
13%
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 743 Interviews
Tata Group Interview Questions
4.2
 • 357 Interviews
BigBasket Interview Questions
3.9
 • 344 Interviews
Myntra Interview Questions
4.0
 • 205 Interviews
Blinkit Interview Questions
3.8
 • 166 Interviews
Uber Interview Questions
4.2
 • 155 Interviews
AmbitionBox Interview Questions
5.0
 • 144 Interviews
JioMart Interview Questions
3.9
 • 92 Interviews
View all
Amazon Sde1 Salary
based on 1.1k salaries
₹12 L/yr - ₹48 L/yr
30% more than the average Sde1 Salary in India
View more details

Amazon Sde1 Reviews and Ratings

based on 100 reviews

4.0/5

Rating in categories

4.0

Skill development

3.3

Work-Life balance

4.4

Salary & Benefits

3.2

Job Security

3.6

Company culture

3.8

Promotions/Appraisal

3.7

Work Satisfaction

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

₹0.6 L/yr - ₹5 L/yr

Transaction Risk Investigator
3.1k salaries
unlock blur

₹2.5 L/yr - ₹6.5 L/yr

Associate
2.8k salaries
unlock blur

₹0.8 L/yr - ₹7 L/yr

Senior Associate
2.4k salaries
unlock blur

₹2 L/yr - ₹10.1 L/yr

Software Development Engineer
2k salaries
unlock blur

₹16.6 L/yr - ₹33 L/yr

Explore more salaries
Compare Amazon with

Flipkart

4.0
Compare

TCS

3.7
Compare

Google

4.4
Compare

Netflix

4.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview