Upload Button Icon Add office photos

Samsung Research

Compare button icon Compare button icon Compare

Filter interviews by

Samsung Research Interview Questions, Process, and Tips

Updated 6 Apr 2025

Top Samsung Research Interview Questions and Answers

View all 70 questions

Samsung Research Interview Experiences

Popular Designations

134 interviews found

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

SDE (Software Development Engineer) Interview Questions asked at other Companies

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Round1: how to set nth position of the bit, linked list, stack, queues, pointers, string palindrome or not
  • Q2. Round2: debugging techniques, Linux os related concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview consists of two rounds Round 1: c programming, Round 2: Technical interview consists of case study, debugging techniques, os concepts.

Firmware Engineer Interview Questions asked at other Companies

Q1. In DSA part, 1. Code for merge sort 2. Check if two trees are mirror 3. Find element in rotated sorted array 4. Check if linked list is palindrome 5. Detect a loop in linked list 6. Remove loop in linked list
View answer (1)

Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Feb 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Coding Test 

It was held in cocubes and very simple 3 questions were asked based on basic DSA

Engineer Interview Questions asked at other Companies

Q1. ❖ If a team member is unable to carry out his work, he is doing it repetitively, how would you handle it?, would you like to work only on lifing of components, or would you be ready to shift to other departments?
View answer (7)

I applied via Approached by Company and was interviewed before May 2021. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. 1.Current company project discussion. 2.Samsung's open position discussion. 2.Coding question on string. 3.Array manipulation question. 4.Ants and traingle puzzle and then generalized formula for probabili...
Round 2 - Technical 

(1 Question)

  • Q1. Systems and OS questions. Deadlock, spinlocks, semaphores. Interrupts on ARM architecture. Page faults discussion.
Round 3 - Technical 

(1 Question)

  • Q1. Mainly coding questions. Implement stack using linked list. Some string question Bit manipulation question
Round 4 - HR 

(1 Question)

  • Q1. General HR discussion Discussion with HIRING manager

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and thorough with concepts

Associate Staff Engineer Interview Questions asked at other Companies

Q1. 1. How to make object thread-safe? 2. Create an Immutable class. 3. Which Garbage collection algorithm is used in Java. 4. print the left view of the Binary tree 5. working of Circuiter breaker design pattern. 6. Question on JWT token 7. Cr... read more
View answer (1)

Samsung Research interview questions for popular designations

 Software Engineer

 (31)

 Engineer

 (10)

 Software Developer

 (9)

 Senior Engineer

 (8)

 Intern

 (5)

 Software Developer Intern

 (5)

 Research Intern

 (4)

 Senior Software Engineer

 (3)

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

Interview Questionnaire 

6 Questions

  • Q1. What is software testing?
  • Ans. 

    Software testing is the process of evaluating a software application or system to find defects and ensure it meets the specified requirements.

    • Software testing involves executing a program or application with the intent of finding errors.

    • It is done to ensure that the software meets the specified requirements and is of high quality.

    • Testing can be done manually or using automated tools.

    • Types of testing include functional,...

  • Answered by AI
  • Q2. What is pointers in c?
  • Ans. 

    Pointers in C are variables that store the memory address of another variable.

    • Pointers are declared using the * symbol.

    • They can be used to access and manipulate data stored in memory.

    • Pointers can be used to pass values by reference.

    • Example: int *ptr; ptr = # *ptr = 10; // num now equals 10

    • Arrays in C are also implemented using pointers.

  • Answered by AI
  • Q3. What is function overloading?
  • Ans. 

    Function overloading is the ability to have multiple functions with the same name but different parameters.

    • Functions with the same name but different parameters can be defined in the same scope.

    • The compiler determines which function to call based on the number and types of arguments passed.

    • Function overloading is commonly used in object-oriented programming languages like C++ and Java.

  • Answered by AI
  • Q4. Explain your final year project
  • Q5. What difficulties you faced?
  • Q6. How did you overcome this difficulty

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall the nature of interview was quite overwhelming

Skills evaluated in this interview

Software Quality Engineer Interview Questions asked at other Companies

Q1. Palindromic Partitioning Problem Statement Given a string ‘str’, calculate the minimum number of partitions required to ensure every resulting substring is a palindrome. Input: The first line contains an integer ‘T’, the number of test case... read more
View answer (1)

Get interview-ready with Top Samsung Research Interview Questions

Interview Questions & Answers

user image Anonymous

posted on 11 Apr 2024

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 Apr 2023. There was 1 interview round.

Round 1 - Coding Test 

3 Medium Level DSA Questions
2 On graphs
1 on DP

Jobs at Samsung Research

View all

I applied via Naukri.com and was interviewed in Sep 2021. There were 5 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 - Coding Test 

DSA questions 2 medium 1 easy

Round 3 - Technical 

(1 Question)

  • Q1. Lot of basic questions on C++, Machine learning , And system design
Round 4 - Technical 

(1 Question)

  • Q1. System design and technical interview
Round 5 - HR 

(1 Question)

  • Q1. Behavioural questions

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA, System design , technical interviews

Chief Engineer Interview Questions asked at other Companies

Q1. What is the Best time you think to reach to site?
View answer (1)

I applied via Campus Placement and was interviewed in Nov 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Number of cut vertices , Maximum nodes sum
  • Ans. 

    The question is unclear and lacks context. More information is needed to provide an answer.

    • Please provide more context and information about the problem.

    • What is the problem domain and what are the requirements?

    • What is the input and output format?

    • What algorithms or techniques are allowed or preferred?

    • Without more information, it is impossible to provide a meaningful answer.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make your concepts with trees clear and the technical rounds are easy if you are good with your basics. Most questions were asked on OOPS, Operating systems, Computer networking, C, C++, Data structures.

Skills evaluated in this interview

Software Testing Engineer Interview Questions asked at other Companies

Q1. Maximal AND Subsequences Problem Given an array consisting of N integers, your task is to determine how many k-element subsequences of the given array exist where the bitwise AND of the subsequence's elements is maximal. Your objective is t... read more
View answer (1)
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 Jun 2022. There were 4 interview rounds.

Round 1 - Coding Test 

1-hour test with 3 questions, simple enough

Round 2 - Technical 

(1 Question)

  • Q1. General DS & Algo questions
Round 3 - Technical 

(1 Question)

  • Q1. General DS & Algo questions
Round 4 - HR 

(1 Question)

  • Q1. One puzzle, experience in college

Top Samsung Research Software Engineer Interview Questions and Answers

Q1. Difference between dfs and bfs and code any one algo in trees and graphs. Two sum problem A puzzle 1/2 more coding questions mostly on basics
Add answer

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (223)

I applied via Campus Placement and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Coding questions, oops, os

Interview Preparation Tips

Interview preparation tips for other job seekers - Be perfect with all the basics

Top Samsung Research Software Engineer Interview Questions and Answers

Q1. Difference between dfs and bfs and code any one algo in trees and graphs. Two sum problem A puzzle 1/2 more coding questions mostly on basics
Add answer

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (223)

Samsung Research Interview FAQs

How many rounds are there in Samsung Research 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.
How to prepare for Samsung Research interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Samsung Research. The most common topics and skills that interviewers at Samsung Research expect are LTE, Budgeting, Financial Analysis, Financial Planning and Analysis and Financial Reporting.
What are the top questions asked in Samsung Research interview?

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

  1. What's the best way to find majority element in an arr...read more
  2. You are given a thread and you are unlocked in a room.Measure the height of the...read more
  3. 1. What was past company work process and roles and responsibilities? 2. Write ...read more
How long is the Samsung Research interview process?

The duration of Samsung Research interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Samsung Research Interview Process

based on 100 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

HARMAN Interview Questions
3.7
 • 265 Interviews
OPPO Interview Questions
4.0
 • 216 Interviews
LG Electronics Interview Questions
4.0
 • 202 Interviews
Vivo Interview Questions
4.1
 • 198 Interviews
Blue Star Interview Questions
4.1
 • 167 Interviews
Philips Interview Questions
3.8
 • 158 Interviews
Daikin Interview Questions
4.1
 • 152 Interviews
Voltas Interview Questions
4.0
 • 131 Interviews
Bajaj Electricals Interview Questions
4.0
 • 127 Interviews
Whirlpool Interview Questions
3.9
 • 94 Interviews
View all

Samsung Research Reviews and Ratings

based on 1k reviews

3.1/5

Rating in categories

2.8

Skill development

3.5

Work-life balance

3.0

Salary

3.4

Job security

2.9

Company culture

2.6

Promotions

2.8

Work satisfaction

Explore 1k Reviews and Ratings
Software -Solution QA - Memory Team

Bangalore / Bengaluru

2-5 Yrs

Not Disclosed

Physical Design - SOC / GPU

Bangalore / Bengaluru

2-6 Yrs

Not Disclosed

DirectML Framework Engineer

Bangalore / Bengaluru

4-10 Yrs

Not Disclosed

Explore more jobs
Software Engineer
1.6k salaries
unlock blur

₹7.3 L/yr - ₹22 L/yr

Lead Engineer
625 salaries
unlock blur

₹10 L/yr - ₹38 L/yr

Senior Software Engineer
531 salaries
unlock blur

₹7.9 L/yr - ₹33 L/yr

Chief Engineer
389 salaries
unlock blur

₹14.1 L/yr - ₹60 L/yr

Engineer
324 salaries
unlock blur

₹6.8 L/yr - ₹25 L/yr

Explore more salaries
Compare Samsung Research with

Vivo

4.1
Compare

OPPO

4.0
Compare

LG Electronics

4.0
Compare

HARMAN

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