Upload Button Icon Add office photos

Filter interviews by

Samsung Research Senior Engineer Interview Questions, Process, and Tips

Updated 9 Jan 2025

Top Samsung Research Senior Engineer Interview Questions and Answers

  • Q1. What's the best way to find majority element in an array?
  • Q2. 1. ArrayList 2. Types of locaters in Appium 3. D/b UI automator1 and ui Automator 2?
  • Q3. Calculate the number of complete squares inscribed in a circle

Samsung Research Senior Engineer Interview Experiences

8 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
-

I applied via Job Portal and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. Tell me about project
Round 2 - HR 

(1 Question)

  • Q1. Salary negotiations

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared for tough questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

C coding questions on bitwise concepts
DSA coding concepts

Round 2 - Technical 

(2 Questions)

  • Q1. What I have fone in previous organization
  • Q2. About work and projects
Round 3 - Puzzles Interview 

(2 Questions)

  • Q1. Excel sheet cell determining logic
  • Q2. Calculate the number of complete squares inscribed in a circle
  • Ans. 

    The number of complete squares inscribed in a circle can be calculated using a formula based on the number of sides of the square.

    • The formula to calculate the number of complete squares inscribed in a circle is n*(n+1)*(2n+1)/6, where n is the number of sides of the square.

    • For example, if the circle has a square with 4 sides inscribed in it, the number of complete squares would be 30 (4*(4+1)*(2*4+1)/6 = 30).

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. What are my expectations from company
  • Q2. Why am I leaving previous organisation

Senior Engineer Interview Questions Asked at Other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
asked in Nagarro
Q2. Write a program: two input, one is N(any integer, lets say 3), se ... read more
asked in Tata Elxsi
Q3. What is Quality Assurance. Difference between Quality assurance a ... read more
asked in Qburst
Q4. Is it possible to work with multiple threads in core data? If so, ... read more
Q5. When you will perform Half or Full engine overhauling.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Past experience
  • Q2. About Btech Project

Interview Preparation Tips

Interview preparation tips for other job seekers - Rock it
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1. Revere Linked List
2. Maximum water in a container

Round 2 - Technical 

(1 Question)

  • Q1. 1. ArrayList 2. Types of locaters in Appium 3. D/b UI automator1 and ui Automator 2?
  • Ans. 

    ArrayList is a resizable array implementation in Java. Appium locators include ID, name, class name, xpath, etc. UI Automator 1 and 2 are tools for testing Android apps.

    • ArrayList is a dynamic array that can grow or shrink in size. Example: ArrayList list = new ArrayList<>();

    • Appium locators include ID, name, class name, xpath, etc. Example: driver.findElement(By.id("elementID"));

    • UI Automator 1 is a testing framework for...

  • Answered by AI
Round 3 - Aptitude Test 

1. What is same for you and even for PM of US?

Skills evaluated in this interview

Samsung Research interview questions for designations

 Senior Software Engineer

 (3)

 Senior Test Engineer

 (1)

 Senior Quality Engineer

 (1)

 Senior Staff Engineer

 (1)

 Senior Chief Engineer

 (1)

 Engineer

 (10)

 Chief Engineer

 (2)

 Engineer 1

 (1)

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

I applied via Recruitment Consulltant and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Coding round with medium complexity

Round 2 - Technical 

(2 Questions)

  • Q1. Implementation of linkedlist
  • Ans. 

    A linked list is a data structure where each element points to the next element in the sequence.

    • Create a Node class with data and a reference to the next Node

    • Initialize a LinkedList class with a head Node

    • Implement methods to add, remove, search, and traverse the linked list

  • Answered by AI
  • Q2. Sorting algoritgms
Round 3 - HR 

(2 Questions)

  • Q1. General expectations
  • Q2. Role clarity discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

Online coding test. Duration was 4 hours. Only one question was given. I had implement 4 APIs. Question was related to DP.

Interview Preparation Tips

Topics to prepare for Samsung Research Senior Engineer interview:
  • Dynamic programming
  • Graph
  • Tries
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at College of Engineering, Guindy Campus and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was 1 coding question with 10 test cases. They asked a question based on binary search. I got 3 hrs to clear that test. I went in as a campus fresher. For lateral joinees, it is a much more difficult question that you have to clear in 4hrs.

Round 2 - One-on-one 

(2 Questions)

  • Q1. What's the best way to find majority element in an array?
  • Ans. 

    The best way to find the majority element in an array is by using the Boyer-Moore Voting Algorithm.

    • Initialize a candidate variable and a count variable.

    • Iterate through the array and for each element:

    • - If the count is 0, set the current element as the candidate.

    • - If the current element is the same as the candidate, increment the count.

    • - Otherwise, decrement the count.

    • After the iteration, the candidate will be the ...

  • Answered by AI
  • Q2. Reverse a linked list in K groups.
  • Ans. 

    Reverse a linked list in K groups

    • Iterate through the linked list in groups of size K

    • Reverse each group of nodes using a temporary pointer

    • Connect the reversed groups to form the final reversed linked list

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Samsung Research Senior Engineer interview:
  • DSA
  • Algorithms
Interview preparation tips for other job seekers - Have strong DSA skills.

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Dec 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Question was related to dynamic programming. There was only one question and I had solve it within 4 hours. There were 50 test cases. All test cases must pass.

Round 2 - Technical 

(1 Question)

  • Q1. Basic Java questions and some behavioural questions.
Round 3 - HR 

(1 Question)

  • Q1. Behavioural questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be good in dynamic programming and graph to crack the coding round.

Interview questions from similar companies

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

Python overview and oops concept

Round 2 - Technical 

(1 Question)

  • Q1. Microcontroller and other architecture
Round 3 - Technical 

(1 Question)

  • Q1. Python coding quesions

Interview Preparation Tips

Interview preparation tips for other job seekers - Best Company to work.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Excel troubleshooting and analyzing
Round 2 - HR 

(1 Question)

  • Q1. Compensation, Previous experience, role

Samsung Research Interview FAQs

How many rounds are there in Samsung Research Senior Engineer interview?
Samsung Research interview process usually has 2-3 rounds. The most common rounds in the Samsung Research interview process are Technical, Coding Test and HR.
What are the top questions asked in Samsung Research Senior Engineer interview?

Some of the top questions asked at the Samsung Research Senior Engineer interview -

  1. What's the best way to find majority element in an arr...read more
  2. 1. ArrayList 2. Types of locaters in Appium 3. D/b UI automator1 and ui Automa...read more
  3. Calculate the number of complete squares inscribed in a cir...read more

Tell us how to improve this page.

Samsung Research Senior Engineer Interview Process

based on 7 interviews in last 1 year

2 Interview rounds

  • Coding Test Round
  • Technical Round
View more

People are getting interviews through

based on 6 Samsung Research interviews
Company Website
Job Portal
Campus Placement
Referral
17%
17%
17%
17%
32% 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
Samsung Research Senior Engineer Salary
based on 236 salaries
₹9.1 L/yr - ₹30 L/yr
116% more than the average Senior Engineer Salary in India
View more details

Samsung Research Senior Engineer Reviews and Ratings

based on 28 reviews

3.2/5

Rating in categories

2.7

Skill development

3.3

Work-Life balance

2.6

Salary & Benefits

3.5

Job Security

2.9

Company culture

2.6

Promotions/Appraisal

2.5

Work Satisfaction

Explore 28 Reviews and Ratings
Software Engineer
1.5k salaries
unlock blur

₹7 L/yr - ₹22 L/yr

Lead Engineer
610 salaries
unlock blur

₹9.9 L/yr - ₹38 L/yr

Senior Software Engineer
515 salaries
unlock blur

₹7.7 L/yr - ₹28.7 L/yr

Chief Engineer
391 salaries
unlock blur

₹14 L/yr - ₹51 L/yr

Engineer
329 salaries
unlock blur

₹5.5 L/yr - ₹19 L/yr

Explore more salaries
Compare Samsung Research with

Microsoft Research

4.6
Compare

IBM Research

4.3
Compare

Intel

4.3
Compare

TCS

3.7
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