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

30 interviews found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 14 Mar 2023

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

I applied via Referral and was interviewed before Mar 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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. - 2 DSA questions Leetcode Medium - 1 Tree based and 1 Queue based. Need to dry run the solutions on their test cases. - Some Leadership principles questions
Round 3 - One-on-one 

(1 Question)

  • Q1. - 1 Leetcode Hard DSA question - Heap based question. Need to dry run the solutions on the test cases. - Some leadership,principles questions.
Round 4 - One-on-one 

(1 Question)

  • Q1. - Some Leadership principles questions. - 1 Hard Leetcode DSA question - Linkedlist based. Need to dry run teset cases

Interview Preparation Tips

Topics to prepare for Amazon Sde1 interview:
  • DSA
  • Leadership Principles
  • Trees
  • Linkedlist
  • Heaps
  • queues
  • Graph
Interview preparation tips for other job seekers - Doing Leetcode medium level questions and few hard level questions can help a lot.
Prepare for leadership principles questions as well, don't underestimate them.

Sde1 Interview Questions & Answers

user image Anonymous

posted on 30 Dec 2022

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

I applied via LinkedIn and was interviewed in Jun 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Coding based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Jsjsvhs svamsvamd bssmxvsn sbdnvvsksbs xhxksbshsksn

Sde1 Interview Questions Asked at Other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and Arra ... read more
asked in Park Plus
Q2. 1. What is a doubly-linked list? And real-world applications.
asked in Amazon
Q3. pid ={3,5,0,1} ppid ={5,4,2,2} process id(pid) ppid=parent proces ... read more
Q4. Given one point and circle how will you find if it's inside circl ... read more
asked in Amazon
Q5. N queen problem with problem statement and dry running of code wi ... read more

Sde1 Interview Questions & Answers

user image Anonymous

posted on 2 Dec 2022

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Coding Test 

All three question were easy and can be found on internet easily

Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to work for us
  • Q2. Why amazon not flipkart

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up your concepts on dsa as they are gonna grill you upon that

Sde1 Interview Questions & Answers

user image Anonymous

posted on 6 May 2022

Round 1 - Coding Test 

Dynamic Programing, string manipulation

Round 2 - Technical 

(1 Question)

  • Q1. Largest common ancestor
  • Ans. 

    Largest common ancestor is the most recent node that is a common ancestor of two or more nodes in a tree.

    • It is commonly used in computer science and genealogy.

    • In genealogy, it refers to the most recent common ancestor of two or more individuals.

    • In computer science, it is used in algorithms for finding the lowest common ancestor of two nodes in a tree.

    • It can be found using various algorithms such as Tarjan's off-line le...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Rain water trapping Problem
  • Ans. 

    Rain water trapping problem refers to the accumulation of rainwater in low-lying areas or on flat roofs.

    • The problem can be solved by installing rainwater harvesting systems.

    • Proper drainage systems can also prevent rainwater trapping.

    • Green roofs and permeable pavements can help absorb rainwater.

    • Rain gardens can be created to collect and filter rainwater.

    • Regular maintenance of gutters and downspouts can prevent clogging ...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Basic Computer Science concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Most of the rounds focus on Data structure and algorithms skills. Try Practising medium and few hard question from leetcode.

Skills evaluated in this interview

Amazon interview questions for designations

 Software Developer

 (187)

 Software Developer Intern

 (94)

 Software Engineer

 (78)

 Software Development Engineer

 (34)

 Device Associate

 (33)

 Software Development Engineer II

 (29)

 Data Engineer

 (22)

 Quality Service Associate

 (18)

Sde1 Interview Questions & Answers

user image Anonymous

posted on 9 Sep 2022

Round 1 - Coding Test 

It was a part of placement drive, 1st OA than interview. The OA round was super easy I was able to code in minutes.

Round 2 - Technical 

(1 Question)

  • Q1. 2 Questions were asked. 1. Linked List sorting. 2. DP question.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basically they select on the bases of your behaviour, resume and personality.

Get interview-ready with Top Amazon Interview Questions

I applied via Campus Placement and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. You are given a family tree, and a node, you have to print all the nodes on the same level as it.
  • Ans. 

    Given a node in a family tree, print all nodes on the same level.

    • Traverse the tree level by level using BFS

    • Keep track of the level of each node while traversing

    • Print all nodes with the same level as the given node

    • Example: If the given node is 'John', print all his siblings and cousins

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer will be friendly and will be there to help you throughout, stay calm, revise your basics of tree/graph/array/strings and you'll do good. Focus mainly on tree/graph questions as almost everyone got asked at least one question relating to that.

Skills evaluated in this interview

Sde1 Jobs at Amazon

View all

Sde1 Interview Questions & Answers

user image Anonymous

posted on 23 Jun 2024

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

I applied via Campus Placement and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Coding Test 

There were 4 rounds, 3 coding and 1 Manager.
Round 1 : String, Arrary, Two pointer
Round 2: Queue and Stack
Round 3: Recursion , backtracking and Dp
Round 4: Behavioural questions and questions about my past project

Interview Preparation Tips

Topics to prepare for Amazon Sde1 interview:
  • DSA
  • System Design

Sde1 Interview Questions & Answers

user image Anonymous

posted on 29 Nov 2022

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 Resume tips
Round 2 - Aptitude Test 

General aptitude and math, graph theory and problems

Round 3 - Coding Test 

Data structures and algorithms, advanced data structures and algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and data structures and algorithms and math problems

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 Resume 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)
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.
Contribute & help others!
anonymous
You can choose to be anonymous

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.
How to prepare for Amazon Sde1 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 Basic, Clinical SAS Programming, Manual Testing, Prototype and Team Building.
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

Recently Viewed

REVIEWS

Amazon

No Reviews

REVIEWS

Amazon

No Reviews

REVIEWS

Amazon

No Reviews

SALARIES

Mphasis

JOBS

Amazon

No Jobs

INTERVIEWS

RaRa Delivery

No Interviews

JOBS

Amazon

No Jobs

COMPANY BENEFITS

Amazon

No Benefits

SALARIES

Mphasis

COMPANY BENEFITS

Amazon

No Benefits

Tell us how to improve this page.

Amazon Sde1 Interview Process

based on 14 interviews

4 Interview rounds

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

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
 • 749 Interviews
Tata Group Interview Questions
4.2
 • 358 Interviews
BigBasket Interview Questions
3.9
 • 358 Interviews
Myntra Interview Questions
4.0
 • 214 Interviews
Blinkit Interview Questions
3.7
 • 180 Interviews
Uber Interview Questions
4.2
 • 149 Interviews
AmbitionBox Interview Questions
4.9
 • 149 Interviews
JioMart Interview Questions
3.9
 • 94 Interviews
View all
Amazon Sde1 Salary
based on 1.1k salaries
₹12 L/yr - ₹48 L/yr
33% 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

3.2

Job security

3.6

Company culture

3.8

Promotions

3.7

Work satisfaction

Explore 100 Reviews and Ratings
SDE1 FTC

Bangalore / Bengaluru

1-5 Yrs

₹ 12-25 LPA

SDE1 FTC

Hyderabad / Secunderabad

1-5 Yrs

Not Disclosed

SDE1 FTC

Bangalore / Bengaluru

1-5 Yrs

₹ 12-25 LPA

Explore more jobs
Customer Service Associate
4.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Transaction Risk Investigator
3.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
2.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
2.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Program Manager
2.1k salaries
unlock blur

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