Upload Button Icon Add office photos

Dell

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Dell Sdet Lead Interview Questions and Answers

Updated 9 Sep 2024

Dell Sdet Lead Interview Experiences

1 interview found

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 9 Sep 2024

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

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

Round 1 - Coding Test 

It was easy - medium leetcode question

Round 2 - Technical 

(2 Questions)

  • Q1. Max in array with complexity
  • Ans. 

    Find the maximum value in an array of strings with complexity

    • Convert strings to integers before finding the maximum value

    • Use a loop to iterate through the array and compare each value to find the maximum

    • Handle edge cases such as empty array or non-numeric strings

  • Answered by AI
  • Q2. Two sum in an array
  • Ans. 

    Find two numbers in an array that add up to a specific target value.

    • Use a hashmap to store the difference between the target value and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hashmap.

    • Return the indices of the two numbers that add up to the target value.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

10m aptitude and image questions

Round 2 - Coding Test 

50m DSA, cp CPP AND leetcode proper hard

Interview Preparation Tips

Interview preparation tips for other job seekers - na

Sdet Interview Questions & Answers

Apple user image Anonymous

posted on 6 Oct 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Find xpath for some elements in Selenium
  • Ans. 

    XPath is a way to locate elements on a web page using their HTML structure.

    • Use Chrome DevTools to inspect elements and generate XPath

    • Avoid using absolute XPath as it can be brittle

    • Use relative XPath with unique attributes for better stability

  • Answered by AI
  • Q2. Java related questions. Why static, abstract, final etc?
  • Q3. Define the automation framework worked on.
  • Ans. 

    I have worked on a keyword-driven automation framework using Selenium and TestNG.

    • Utilized Excel sheets to store test cases and keywords

    • Implemented reusable functions for common actions like clicking, inputting text, etc.

    • Used TestNG for test case management and reporting

    • Integrated with Jenkins for continuous integration

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. If you have page with 10 records and verify if a record is deleted
  • Ans. 

    To verify if a record is deleted from a page with 10 records, we can check if the record is no longer displayed.

    • Locate the record on the page

    • Verify that the record is no longer visible

    • Confirm that the total number of records displayed is now 9

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer was very rude and he is expecting the answers only the way he wants to. He doesnt want to know if the candidate is thinking out of box or if he/she wants to answer in a different way.
He was very rude and called me dumb for taking time to analyse his question. His name is Roopesh Shivana

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

(2 Questions)

  • Q1. Coding question max sum subarray- DP
  • Q2. Clone graph - coding
Round 3 - Technical 

(2 Questions)

  • Q1. Dp- grid problem- max no of coins picked and basic android development questions
  • Q2. Project based questions
Round 4 - HR 

(1 Question)

  • Q1. Basic hr questions such are why you want to join our organization

Interview Preparation Tips

Interview preparation tips for other job seekers - Should be good in competitive coding and clear your basics as much as possible
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Good it was nice information and Engineering

Round 2 - Coding Test 

Good it was nice information and Engineering

Round 3 - Assignment 

Good it was nice information and Engineering

Round 4 - One-on-one 

(2 Questions)

  • Q1. Good it was nice information and Engineering
  • Q2. Good it was nice information and Engineering
Round 5 - HR 

(1 Question)

  • Q1. Good it was nice

Sdet Interview Questions & Answers

Apple user image Anjali Gupta

posted on 22 Sep 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Types of testing?
  • Ans. 

    Types of testing include unit testing, integration testing, system testing, and acceptance testing.

    • Unit testing: Testing individual components or modules of the software.

    • Integration testing: Testing how multiple components work together.

    • System testing: Testing the entire system as a whole.

    • Acceptance testing: Testing to ensure the software meets the requirements of the end users.

  • Answered by AI
  • Q2. Coding problem - anagram type

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare throughly

I applied via Hackerearth contest and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list

    • Iterate through the linked list and change the direction of the pointers

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

    • Make sure to update the head and tail pointers accordingly

  • Answered by AI
  • Q2. Swap 2 numbers without using a third variable
  • Ans. 

    Swap 2 numbers without using a third variable

    • Use the XOR operation to swap the numbers

    • Assign the first number to the second number using XOR

    • Assign the second number to the first number using XOR

  • Answered by AI
  • Q3. Height of a binary tree
  • Ans. 

    Height of a binary tree is the maximum number of edges from the root node to any leaf node.

    • The height of an empty tree is 0.

    • The height of a tree with only one node is 1.

    • The height of a tree can be calculated recursively by finding the height of its left and right subtrees and adding 1 to the maximum of the two heights.

    • The time complexity of finding the height of a binary tree is O(n), where n is the number of nodes in

  • Answered by AI
  • Q4. Sum queries on a 2D matrix
  • Ans. 

    Sum queries on a 2D matrix

    • Iterate through each query and calculate the sum of elements in the given range

    • Use prefix sum technique to optimize the solution

    • Preprocess the matrix to store the sum of elements in each row and column for faster calculation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice competitive programming and it will be most helpful because all the problems asked in the interview were related to DSA only.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

10m aptitude and image questions

Round 2 - Coding Test 

50m DSA, cp CPP AND leetcode proper hard

Interview Preparation Tips

Interview preparation tips for other job seekers - na
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

Difficult coding question, and 30 MCQs. MCQs are mix of technical and QA Theory questions. Coding question is from dynamic programming.

Dell Interview FAQs

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

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

  1. max in array with complex...read more
  2. two sum in an ar...read more

Tell us how to improve this page.

Dell Sdet Lead Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 846 Interviews
Samsung Interview Questions
3.9
 • 543 Interviews
Cisco Interview Questions
4.1
 • 370 Interviews
HARMAN Interview Questions
3.8
 • 258 Interviews
OPPO Interview Questions
4.0
 • 209 Interviews
LG Electronics Interview Questions
4.0
 • 194 Interviews
Vivo Interview Questions
4.1
 • 192 Interviews
View all
Dell Sdet Lead Salary
based on 4 salaries
₹11 L/yr - ₹18 L/yr
52% less than the average Sdet Lead Salary in India
View more details

Dell Sdet Lead Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

3.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
1.7k salaries
unlock blur

₹9.9 L/yr - ₹41.5 L/yr

Software Engineer
1.1k salaries
unlock blur

₹4.6 L/yr - ₹18 L/yr

Principal Software Engineer
941 salaries
unlock blur

₹19 L/yr - ₹53.2 L/yr

Software Engineer2
848 salaries
unlock blur

₹7 L/yr - ₹22.1 L/yr

Senior Analyst
542 salaries
unlock blur

₹5.8 L/yr - ₹21 L/yr

Explore more salaries
Compare Dell with

Helmerich & Payne

4.0
Compare

Lenovo

4.2
Compare

Apple

4.3
Compare

Acer India

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