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.2k Reviews

Filter interviews by

Amazon Sdet Lead Interview Questions, Process, and Tips

Updated 30 Dec 2024

Top Amazon Sdet Lead Interview Questions and Answers

View all 10 questions

Amazon Sdet Lead Interview Experiences

12 interviews found

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 30 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Two questions asked

Round 2 - Technical 

(2 Questions)

  • Q1. Design LRU cache in Distributed manner.
  • Ans. 

    Design a distributed LRU cache system for efficient data storage and retrieval.

    • Implement a distributed cache system using a combination of local caches on each node and a centralized cache for coordination.

    • Use a consistent hashing algorithm to determine which node should store each key-value pair.

    • Implement a cache eviction policy based on LRU (Least Recently Used) to remove the least recently accessed items when the ca...

  • Answered by AI
  • Q2. Design LFU cache in Distributed manner
  • Ans. 

    LFU cache design in a distributed manner

    • Use a distributed key-value store like Redis to store the cache data

    • Implement a distributed algorithm to track the frequency of cache access across nodes

    • Use a consensus algorithm like Raft or Paxos to ensure consistency in cache eviction policies

  • Answered by AI

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 13 Dec 2024

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

I don't have any kind of info.

Round 2 - Technical 

(2 Questions)

  • Q1. Same as above. no information here,
  • Q2. There was only 1 and 1 question.

Sdet Lead Interview Questions Asked at Other Companies

asked in Ascendion
Q1. write a palindrome program without using any in-build method. if ... read more
asked in Ascendion
Q2. (1) FluentWait Syntax (2) How to scroll to the bottom of the page ... read more
asked in Netomi
Q3. Reverse the whole string with spaces remaining in the same place
asked in News Nation
Q4. What is oops, css, html, comment on the batch processing
asked in MasterCard
Q5. What is the difference between web service and REST API?

Sdet Lead Interview Questions & Answers

user image priyanshu ahuja

posted on 10 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Dynamic programming, linear search, binary search, graph

Round 2 - Aptitude Test 

Blood realtion, synonyms, anonyms

Round 3 - Coding Test 

Tell me about yourself, prject, sql

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 6 Sep 2024

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

Data structures and algorithms in all rounds

Round 2 - Technical 

(1 Question)

  • Q1. Data structures algorithm question on stacks

Amazon interview questions for designations

 Sdet

 (5)

 Sdet Engineer

 (8)

 Sdet-I

 (1)

 Sdet Intern

 (1)

 Sdet 2

 (1)

 Senior Sdet Engineer

 (5)

 Sdet Automation Test Engineer

 (5)

 Senior Sdet Test Engineer

 (2)

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 19 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Mostly DSA and coding round and SQL

Round 2 - Technical 

(2 Questions)

  • Q1. What is btee and it traverse
  • Ans. 

    BTEE stands for Breadth-First Tree Enumeration and it is a method used to traverse a tree data structure.

    • BTEE is a technique used to visit all the nodes of a tree level by level, starting from the root node.

    • It uses a queue data structure to keep track of the nodes to be visited next.

    • BTEE ensures that all nodes at the same level are visited before moving on to the next level.

  • Answered by AI
  • Q2. What is react and how’s is different from vue js
  • Ans. 

    React is a JavaScript library for building user interfaces, while Vue.js is a progressive JavaScript framework for building web interfaces.

    • React is a library, while Vue.js is a framework

    • React uses a virtual DOM for better performance, while Vue.js uses a virtual DOM as well but with a different approach

    • React has a larger community and ecosystem compared to Vue.js

    • React is more flexible and allows for more customization,...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good luck

Skills evaluated in this interview

Get interview-ready with Top Amazon Interview Questions

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 18 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic Data Structures

Round 2 - Case Study 

Buisness related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be weelll prepared

Sdet Lead Interview Questions & Answers

user image 009 AMAN KAUSHIK

posted on 10 Aug 2023

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

I applied via campus placement at Guru Gobind singh College, Sanghera and was interviewed in Jul 2023. There were 3 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 - Coding Test 

Medium leetcode DSA questions were there it was easy ...15 apti ques as well

Round 3 - Technical 

(3 Questions)

  • Q1. What is event loop and how it is implemented
  • Ans. 

    Event loop is a mechanism that allows for asynchronous programming by handling and executing events in a loop.

    • Event loop is a part of the runtime environment that continuously checks the event queue and executes the callback functions associated with the events.

    • It helps in managing non-blocking I/O operations efficiently by allowing the program to continue running while waiting for I/O operations to complete.

    • Event loop...

  • Answered by AI
  • Q2. What is database warehousing and implementation
  • Ans. 

    Database warehousing is the process of collecting, storing, and managing data from various sources for analysis and reporting.

    • Database warehousing involves extracting data from different sources

    • Data is transformed and loaded into a central repository for analysis

    • It allows for complex queries and reporting on large datasets

    • Examples include data warehouses like Amazon Redshift, Google BigQuery

  • Answered by AI
  • Q3. What are trees and balanced trees
  • Ans. 

    Trees are data structures that consist of nodes connected by edges, with a root node at the top. Balanced trees are trees where the heights of subtrees differ by at most one.

    • Trees are hierarchical data structures with a root node and child nodes.

    • Balanced trees are trees where the heights of subtrees differ by at most one, ensuring efficient search and insertion operations.

    • Examples of balanced trees include AVL trees, r

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay positive and do lots of practice

Skills evaluated in this interview

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 2 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Questions were quiet typical from leetcode medium to hard

Interview Preparation Tips

Interview preparation tips for other job seekers - DO leetcode

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 10 Jul 2024

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

I applied via Campus Placement and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Nothing much 2 leetcode hard level questions was given

Round 2 - Interview 

(2 Questions)

  • Q1. Find the last number in the array
  • Ans. 

    Iterate through the array and return the last element

    • Iterate through the array using a loop

    • Keep track of the last element as you iterate

    • Return the last element once the loop is finished

  • Answered by AI
  • Q2. Reverse the linkedlist
  • Ans. 

    Reverse a linked list

    • Iterate through the linked list and reverse the pointers

    • Use three pointers to keep track of current, previous, and next nodes

    • Update the head of the linked list to point to the last node as the new head

  • Answered by AI

Skills evaluated in this interview

Sdet Lead Interview Questions & Answers

user image Samiul Haque

posted on 9 Jun 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Walk-in and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

20 questions or more

Round 2 - Coding Test 

3 questions programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and best of luck

Amazon Interview FAQs

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

Some of the top questions asked at the Amazon Sdet Lead interview -

  1. Leetcode Hard Median of two sorted arrays in O log n t...read more
  2. What is event loop and how it is implemen...read more
  3. What is database warehousing and implementat...read more

Tell us how to improve this page.

Amazon Sdet Lead Interview Process

based on 10 interviews in last 1 year

2 Interview rounds

  • Coding Test Round
  • Technical Round
View more

People are getting interviews through

based on 6 Amazon interviews
Campus Placement
WalkIn
Job Portal
50%
17%
17%
16% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient 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
 • 746 Interviews
Tata Group Interview Questions
4.2
 • 357 Interviews
BigBasket Interview Questions
3.9
 • 345 Interviews
Myntra Interview Questions
4.0
 • 207 Interviews
Blinkit Interview Questions
3.8
 • 169 Interviews
Uber Interview Questions
4.2
 • 157 Interviews
AmbitionBox Interview Questions
5.0
 • 144 Interviews
JioMart Interview Questions
3.9
 • 92 Interviews
View all
Amazon Sdet Lead Salary
based on 98 salaries
₹19.1 L/yr - ₹70 L/yr
46% more than the average Sdet Lead Salary in India
View more details

Amazon Sdet Lead Reviews and Ratings

based on 10 reviews

4.5/5

Rating in categories

4.0

Skill development

4.2

Work-Life balance

4.0

Salary & Benefits

3.5

Job Security

3.9

Company culture

4.2

Promotions/Appraisal

3.8

Work Satisfaction

Explore 10 Reviews and Ratings
Customer Service Associate
4.1k salaries
unlock blur

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

Senior Associate
2.4k salaries
unlock blur

₹2 L/yr - ₹10.1 L/yr

Software Development Engineer
2k salaries
unlock blur

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