Upload Button Icon Add office photos

Samsung Research

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

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?
  • Ans. 

    I am a Senior Engineer with 10+ years of experience in designing and implementing complex systems.

    • 10+ years of experience in engineering

    • Specialize in designing and implementing complex systems

    • Strong problem-solving skills

    • Experience with various programming languages such as Java, Python, and C++

  • Answered by AI
  • Q2. Tell me about project
  • Ans. 

    Designed and implemented a cloud-based data analytics platform for real-time monitoring of industrial equipment performance.

    • Led a team of 5 engineers in developing the platform from scratch

    • Utilized AWS services such as Lambda, S3, and DynamoDB for data storage and processing

    • Implemented machine learning algorithms for predictive maintenance

    • Integrated with existing industrial IoT devices for data collection

    • Achieved 20% r...

  • Answered by AI
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
  • Ans. 

    Seeking new challenges and growth opportunities in a different environment.

    • Desire for new challenges and growth

    • Opportunity for career advancement

    • Seeking a change in work environment

    • Exploring new technologies or industries

  • Answered by AI

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
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 Staff Engineer

 (1)

 Senior Chief Engineer

 (1)

 Senior Quality 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 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 Questionnaire 

1 Question

  • Q1. What is name mangling?
  • Ans. 

    Name mangling is a technique used by compilers to give unique names to functions and variables to avoid naming conflicts.

    • Name mangling is used in C++ to support function overloading.

    • It is also used in Python to avoid naming conflicts in modules.

    • Name mangling can make it difficult to access variables and functions from outside the class in which they are defined.

    • In C++, name mangling can be seen by using the 'nm' comman

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Oct 2021. 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is AD dns dhcp?
  • Ans. 

    AD DNS DHCP are Microsoft technologies used for network management and authentication.

    • Active Directory (AD) is a directory service used for authentication and authorization of users and computers in a network.

    • Domain Name System (DNS) is used for name resolution of network resources.

    • Dynamic Host Configuration Protocol (DHCP) is used for automatic IP address assignment to network devices.

    • AD, DNS, and DHCP are often used ...

  • Answered by AI
  • Q2. What is IaaS SaaS PaaS?
  • Ans. 

    IaaS, SaaS, and PaaS are cloud computing models that provide different levels of infrastructure, software, and platform services.

    • IaaS (Infrastructure as a Service) provides virtualized computing resources over the internet, such as servers, storage, and networking.

    • SaaS (Software as a Service) delivers software applications over the internet, eliminating the need for local installation and maintenance.

    • PaaS (Platform as ...

  • Answered by AI
Round 3 - Aptitude Test 

General questions for 1 hors online exams

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident in your role and select which role you want to work

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

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 Coding Test, Technical 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

Recently Viewed

INTERVIEWS

Samsung Research

70 top interview questions

INTERVIEWS

Future First Technologies

No Interviews

INTERVIEWS

Microchip Technology

No Interviews

INTERVIEWS

Samsung Research

No Interviews

INTERVIEWS

Deutsche Telekom Digital Labs

No Interviews

INTERVIEWS

Future First Technologies

5.6k top interview questions

SALARIES

Deutsche Telekom Digital Labs

INTERVIEWS

o9 Solutions

No Interviews

INTERVIEWS

KPMG India

No Interviews

INTERVIEWS

Deloitte

No Interviews

Tell us how to improve this page.

Samsung Research Senior Engineer Interview Process

based on 8 interviews

2 Interview rounds

  • Coding Test Round
  • Technical Round
View more
Samsung Research Senior Engineer Salary
based on 261 salaries
₹8.5 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.1/5

Rating in categories

2.7

Skill development

3.2

Work-life balance

2.6

Salary

3.5

Job security

2.9

Company culture

2.6

Promotions

2.5

Work satisfaction

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

₹0 L/yr - ₹0 L/yr

Lead Engineer
639 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
548 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Chief Engineer
377 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
322 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Samsung Research with

Microsoft Research

4.5
Compare

IBM Research

4.4
Compare

Intel

4.2
Compare

TCS

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