Upload Button Icon Add office photos

Filter interviews by

Amazon Development Centre India Sdet Lead Interview Questions and Answers

Updated 11 Dec 2024

Amazon Development Centre India Sdet Lead Interview Experiences

1 interview found

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 11 Dec 2024

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

Java coding question with moderate level

Round 2 - Technical 

(1 Question)

  • Q1. How to test a s/w for Lift
  • Ans. 

    Testing a lift system involves multiple steps to ensure its functionality and safety.

    • 1. Verify the lift system's basic functionality such as going up and down smoothly.

    • 2. Test emergency stop functionality to ensure safety measures are in place.

    • 3. Check for proper alignment of doors and sensors to prevent accidents.

    • 4. Conduct load testing to ensure the lift can handle its maximum capacity.

    • 5. Test communication systems b...

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Previous projects
  • Ans. 

    I have worked on various projects involving test automation, performance testing, and quality assurance.

    • Developed automated test scripts using Selenium WebDriver for web applications

    • Conducted performance testing using JMeter to identify bottlenecks and optimize system performance

    • Implemented quality assurance processes to ensure software meets requirements and standards

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Gasstation problem on letcode
  • Q2. LCS problem on leetcode
Round 2 - Coding Test 

Quick sort for numbers from 0 to million

Interview Preparation Tips

Interview preparation tips for other job seekers - LC easy should be fine
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected
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 

(3 Questions)

  • Q1. Personal and Technical Round
  • Q2. Detail assessment on functional acumen
  • Q3. Projects done in relevant area
  • Ans. 

    I have led multiple projects in test automation, performance testing, and CI/CD implementation.

    • Led a team in developing automated test scripts using Selenium for web applications

    • Implemented performance testing using JMeter to identify bottlenecks in the system

    • Set up CI/CD pipelines using Jenkins for continuous integration and deployment

    • Worked on integrating test automation with Docker containers for efficient testing

    • Co...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical Round Questions Personal and Professional
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Shine and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Redux toolkit question
  • Q2. React redux toolkit question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Puzzles aptitude check

Round 2 - Coding Test 

Puzzles syntax check

Sdet Interview Questions & Answers

Fiverr Inc. user image Clash with Aditya

posted on 15 May 2024

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

(1 Question)

  • Q1. It was a startup asked basic DSA question, followed by explain the framework
Round 2 - Technical 

(1 Question)

  • Q1. Basic SQl question followed by real time scenario like gave me a medical problem and write the manual and automation test cases for it
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Selenium,Rest assured ,API,java
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Coding conecpt, apti

Round 2 - Technical 

(1 Question)

  • Q1. Basic dsa, puzzles
Round 3 - Technical 

(1 Question)

  • Q1. Basic dsa, dbms

I was interviewed in Mar 2022.

Round 1 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

1 Medium/Easy DSA questions were asked similar to Leetcode.

I was expected to come up with the most optimal solution for the same. I completed the code and explained in 45 mins.

In the remaining time, I was asked questions from Computer Science fundamentals and Java

  • Q1. Unique Element In Sorted Array

    Nobita wants to impress Shizuka by guessing her lucky number.

    Shizuka gave Nobita a sorted list of ‘N’ numbers such that every number occurred twice in the list except Shiz...

  • Ans. 

    As the array was sorted we can make use of this information to use Binary Search.


    // EXPLANATION:-
    // Suppose array is [1, 1, 2, 2, 3, 3, 4, 5, 5]
    // we can observe that for each pair, 
    // first element takes even position and second element takes odd position
    // for example, 1 is appeared as a pair,
    // so it takes 0 and 1 positions. similarly for all the pairs also.

    // this pattern will be missed when single element is ...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Low-level system design round. 
Expected to come up with a running code.

  • Q1. LRU Cache

    Design and implement a data structure for Least Recently Used (LRU) cache to support the following operations:

    1. get(key) - Return ...
  • Ans. 

    Tip 1 : Ask clarification questions
    Tip 2 : Try and think in terms of brute force and then gradually optimize your solution
    Tip 3 : Ensure to check for edge cases
    Tip 4 : Ensure to be thorough with data structures, algorithms and system design concepts.

  • Answered Anonymously
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

Standard behavioural questions by HR

  • Q1. Basic HR Question

    The hiring manager was asking about my past work experiences and past projects in my previous company.

  • Ans. 

    Ensure that you are thorough with the design of your project at your current organization.

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in GurgaonEligibility criteriaAbove 1 years of experienceLenskart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Break down the total topics based on your comfort and ease and try and master one topic at a time
Tip 2 : Try and up solve
Tip 3 : Always try and come up with multiple solutions for a DSA question starting from brute force to optimal solution.

Application resume tips for other job seekers

Tip 1 : Try to keep it short and crisp.
Tip 2 : Always make the entries chronological with the most recent experiences coming first followed by past experiences.

Final outcome of the interviewSelected

Skills evaluated in this interview

Sde1 Interview Questions & Answers

Times Internet user image Subhajit Biswas

posted on 15 Jan 2022

I applied via Campus Placement and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Different between C and C++
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports classes and objects while C does not.

    • C++ has better support for polymorphism and inheritance.

    • C++ has a standard template library (STL) while C does not.

    • C++ allows function overloading while C does not.

    • C++ has exception handling while C does not.

  • Answered by AI
  • Q2. What is encapsulation?
  • Ans. 

    Encapsulation is the process of hiding implementation details and exposing only necessary information to the user.

    • Encapsulation is achieved through access modifiers like public, private, and protected.

    • It helps in achieving data abstraction and information hiding.

    • Encapsulation provides better control over the data and prevents unauthorized access.

    • Example: A class with private variables and public methods to access those...

  • Answered by AI
  • Q3. One DSA question.
  • Q4. About SQL they asked few questions
  • Q5. One puzzle in the end

Interview Preparation Tips

Interview preparation tips for other job seekers - It was quick and easy interview.

Skills evaluated in this interview

Amazon Development Centre India Interview FAQs

How many rounds are there in Amazon Development Centre India Sdet Lead interview?
Amazon Development Centre India interview process usually has 3 rounds. The most common rounds in the Amazon Development Centre India interview process are Coding Test, Technical and Behavioral.

Tell us how to improve this page.

Sdet Lead Interview Questions from Similar Companies

TCS Sdet Lead Interview Questions
3.7
 • 7 Interviews
IBM Sdet Lead Interview Questions
4.0
 • 2 Interviews
View all
Amazon Development Centre India Sdet Lead Salary
based on 5 salaries
₹18 L/yr - ₹70 L/yr
49% more than the average Sdet Lead Salary in India
View more details
Customer Service Associate
2.8k salaries
unlock blur

₹1.2 L/yr - ₹5.6 L/yr

Transaction Risk Investigator
1.4k salaries
unlock blur

₹2.1 L/yr - ₹6.5 L/yr

Customer Service Executive
883 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Senior Associate
772 salaries
unlock blur

₹2.5 L/yr - ₹8.5 L/yr

Quality Specialist
637 salaries
unlock blur

₹3 L/yr - ₹7.1 L/yr

Explore more salaries
Compare Amazon Development Centre India with

Microsoft Corporation

4.0
Compare

Google

4.4
Compare

IBM

4.0
Compare

Oracle

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview