Upload Button Icon Add office photos

Samsung

Compare button icon Compare button icon Compare
4.0

based on 7.1k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Samsung Sdet Lead Interview Questions and Answers

Updated 12 Nov 2024

Samsung Sdet Lead Interview Experiences

1 interview found

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 12 Nov 2024

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 questions from similar companies

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 experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Some basic questions related to java like final, finally, finalize and selenium related questions like how to select drop down in selenium and playwright
  • Q2. How to take screenshot in selenium and playwright and also related to agile methodologies
Round 2 - Technical 

(2 Questions)

  • Q1. Write a test script for a given scenario in any of your suitable framework
  • Ans. 

    Write a test script for a given scenario in any suitable framework

    • Identify the scenario to be tested

    • Create test data if needed

    • Write test steps using the chosen framework

    • Execute the test script and analyze results

  • Answered by AI
  • Q2. What is test strategies and test plans
  • Ans. 

    Test strategies and test plans are essential documents that outline the approach and scope of testing activities.

    • Test strategy defines the overall testing approach, including objectives, resources, and timelines.

    • Test plan details the specific tests to be conducted, including test cases, test data, and expected results.

    • Test strategy is high-level and focuses on the big picture, while test plan is more detailed and speci...

  • Answered by AI

Skills evaluated in this interview

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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Trees linked list stacks queues etc

Round 2 - Case Study 

Lenskart boat and emcure was asked about it

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy cool intresting and luck asked on data structures and display screen was easy
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Great experience it was really smooth process

Round 2 - Coding Test 

Great Experience it was a smooth process

Round 3 - HR 

(2 Questions)

  • Q1. DSA, OS, DBMS, OOPS
  • Q2. Project, WEB DEV, Expirience

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 campus placement at National Institute of Technology,(NIT), Agartala and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. 1) Tell me about yourself.
  • Q2. 2) 4 pillars of oops concept.
  • Ans. 

    4 pillars of OOPs: Abstraction, Encapsulation, Inheritance, Polymorphism.

    • Abstraction: Hiding implementation details and showing only necessary information.

    • Encapsulation: Binding data and functions together and restricting access to them.

    • Inheritance: Creating new classes from existing ones, inheriting properties and methods.

    • Polymorphism: Ability of objects to take on multiple forms or behaviors.

  • Answered by AI
  • Q3. 3) implement queue using stack
  • Ans. 

    Implement a queue using stack

    • Use two stacks, one for enqueue and one for dequeue

    • When dequeue is called, pop all elements from enqueue stack and push to dequeue stack

    • Then pop from dequeue stack to get the first element added to the queue

    • When enqueue is called, simply push the element to enqueue stack

  • Answered by AI
  • Q4. 4)Merge sort
  • Q5. 5) Dynamic programming question

Interview Preparation Tips

Interview preparation tips for other job seekers - One need to have a good knowledge of Dats structure and Algorithms

Skills evaluated in this interview

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

Samsung Interview FAQs

How many rounds are there in Samsung Sdet Lead interview?
Samsung interview process usually has 2 rounds. The most common rounds in the Samsung interview process are Aptitude Test and Coding Test.

Tell us how to improve this page.

Samsung Sdet Lead Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Dell Interview Questions
4.0
 • 391 Interviews
HARMAN Interview Questions
3.8
 • 257 Interviews
OPPO Interview Questions
4.0
 • 210 Interviews
Vivo Interview Questions
4.1
 • 190 Interviews
LG Electronics Interview Questions
4.0
 • 189 Interviews
Philips Interview Questions
3.9
 • 155 Interviews
Daikin Interview Questions
4.2
 • 142 Interviews
Apple Interview Questions
4.3
 • 141 Interviews
Voltas Interview Questions
4.0
 • 126 Interviews
View all
Samsung Sdet Lead Salary
based on 4 salaries
₹23 L/yr - ₹35 L/yr
At par with the average Sdet Lead Salary in India
View more details

Samsung Sdet Lead Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Assistant Manager
956 salaries
unlock blur

₹5.5 L/yr - ₹19 L/yr

Software Engineer
889 salaries
unlock blur

₹6.6 L/yr - ₹25 L/yr

Sales Executive
889 salaries
unlock blur

₹1 L/yr - ₹6.9 L/yr

Manager
539 salaries
unlock blur

₹10 L/yr - ₹33 L/yr

Senior Engineer
477 salaries
unlock blur

₹4.2 L/yr - ₹17.4 L/yr

Explore more salaries
Compare Samsung with

Apple

4.3
Compare

LG Electronics

4.0
Compare

Sony

4.2
Compare

Xiaomi

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