Upload Button Icon Add office photos

Samsung Research

Compare button icon Compare button icon Compare

Filter interviews by

Samsung Research Interview Questions and Answers

Updated 24 Jul 2025
Popular Designations

98 Interview questions

A Technical Project Manager was asked 2w ago
Q. What does a project manager do?
Ans. 

A project manager oversees project planning, execution, and completion, ensuring goals are met within scope, time, and budget.

  • Defines project scope and objectives, e.g., creating a project charter.

  • Develops detailed project plans, including timelines and resource allocation.

  • Monitors project progress and performance, adjusting plans as necessary.

  • Facilitates communication among stakeholders, ensuring everyone is info...

View all Technical Project Manager interview questions
A Technical Project Manager was asked 2w ago
Q. What does a sales manager do?
Ans. 

A sales manager oversees a company's sales team, strategizing to meet sales targets and drive revenue growth.

  • Responsible for setting sales goals and quotas.

  • Develops training programs for sales staff to enhance skills.

  • Analyzes sales data to identify trends and opportunities.

  • Collaborates with marketing to align strategies and campaigns.

  • Example: A sales manager might implement a new CRM system to track customer inter...

View all Technical Project Manager interview questions
A Technical Project Manager was asked 2w ago
Q. What does 'automatic' mean?
Ans. 

Automatic refers to processes or systems that operate independently without human intervention, enhancing efficiency and consistency.

  • Automation in manufacturing: Robots assembling cars without human input.

  • Software automation: Scripts that run tests on applications automatically.

  • Home automation: Smart thermostats adjusting temperature based on user habits.

  • Automatic updates: Software that downloads and installs upda...

View all Technical Project Manager interview questions
A Technical Project Manager was asked 2w ago
Q. What does C++ mean?
Ans. 

C++ is a high-level programming language known for its object-oriented features and performance efficiency.

  • C++ was developed by Bjarne Stroustrup in the early 1980s as an extension of the C programming language.

  • It supports both procedural and object-oriented programming paradigms, allowing for code reusability and modularity.

  • C++ features include classes, inheritance, polymorphism, encapsulation, and templates, whi...

View all Technical Project Manager interview questions
A Technical Project Manager was asked 2w ago
Q. What is Python?
Ans. 

Python is a high-level, interpreted programming language known for its readability and versatility in various applications.

  • Easy to learn: Python's syntax is clear and intuitive, making it accessible for beginners.

  • Versatile: Used in web development (e.g., Django, Flask), data analysis (e.g., Pandas, NumPy), and machine learning (e.g., TensorFlow, scikit-learn).

  • Large community: Python has a vast ecosystem of librari...

View all Technical Project Manager interview questions
A Software Engineer Intern was asked 3mo ago
Q. Describe an algorithm to find the maximum value up to which an API call does not return an error, using a binary search approach.
Ans. 

Use binary search to find the maximum value where an API call does not return an error, optimizing the search space efficiently.

  • Define the search space: Start with a range, e.g., 0 to N, where N is a known upper limit for the API calls.

  • Implement binary search: Check the middle value of the current range. If the API call succeeds, move to the upper half; if it fails, move to the lower half.

  • Continue narrowing the ra...

View all Software Engineer Intern interview questions

Samsung Research HR Interview Questions

23 questions and answers

Q. Tell me about your project.
Q. Can you tell me about yourself?
Q. What are your strengths and weaknesses?
A Software Engineer Intern was asked 3mo ago
Q. Given a sorted array that is rotated at some unknown pivot, and a target value, find the index of the target value in the array. If the target value is not found, return -1. You should solve this problem wi...
Ans. 

Searching in a rotated sorted array involves finding a target value efficiently using binary search techniques.

  • Rotated Array: The array is sorted but then rotated at some pivot, e.g., [4, 5, 6, 7, 0, 1, 2] is rotated at 7.

  • Binary Search: Use binary search to find the target, adjusting the search range based on the rotation point.

  • Identify Rotation: Determine which half of the array is sorted to decide where to searc...

View all Software Engineer Intern interview questions
Are these interview questions helpful?
A Software Engineer Intern was asked 3mo ago
Q. Explain binary search and the process of deriving its time complexity.
Ans. 

Binary search is an efficient algorithm for finding an item in a sorted array by repeatedly dividing the search interval in half.

  • Sorted Array Requirement: Binary search only works on arrays that are sorted in ascending or descending order.

  • Divide and Conquer: The algorithm divides the array into halves, eliminating one half from consideration based on the comparison with the middle element.

  • Time Complexity: The time...

View all Software Engineer Intern interview questions
A Software Engineer was asked 3mo ago
Q. Implement a trie with insert, search, and startsWith methods.
Ans. 

A trie is a tree-like data structure used for efficient retrieval of keys in a dataset of strings, often used for autocomplete.

  • Structure: A trie consists of nodes where each node represents a character of a string, allowing for efficient prefix-based searches.

  • Insertion: To insert a word, traverse the trie according to the characters of the word, creating new nodes as necessary.

  • Search: To search for a word, follow ...

View all Software Engineer interview questions
An Assistant Manager was asked 3mo ago
Q. How would you develop a training plan for lateral hires?
Ans. 

Developing a training plan for lateral hires involves assessing skills, defining objectives, and creating tailored learning paths.

  • Conduct a skills assessment to identify gaps and strengths of lateral hires.

  • Define clear training objectives aligned with team goals, e.g., improving project management skills.

  • Create a structured onboarding program that includes company culture and processes.

  • Incorporate mentorship oppor...

View all Assistant Manager interview questions

Samsung Research Interview Experiences

141 interviews found

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

Questions related to Tree and stack

Round 2 - Coding Test 

Questions related to Binary search

Round 3 - Technical 

(2 Questions)

  • Q1. Java concepts
  • Q2. Graph coding ques
Round 4 - HR 

(1 Question)

  • Q1. Salary discssion

R&D Engineer Interview Questions & Answers

user image Aditya Patil

posted on 26 Dec 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Held on samsung's platform, it is standard

Round 2 - Technical 

(2 Questions)

  • Q1. Project based questions
  • Ans. 

    Discussing a project where I developed a new sensor for environmental monitoring.

    • Identified the need for real-time air quality monitoring in urban areas.

    • Designed a low-cost sensor using Arduino and various gas sensors.

    • Conducted field tests to validate accuracy against existing monitoring stations.

    • Collaborated with a team to integrate data into a user-friendly mobile app.

    • Presented findings at a local environmental confe...

  • Answered by AI
  • Q2. Virtual Destructor

Interview Preparation Tips

Topics to prepare for Samsung Research R&D Engineer interview:
  • DSA
  • OOPS
  • OS
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. What s means by c++
  • Ans. 

    C++ is a high-level programming language known for its object-oriented features and performance efficiency.

    • C++ was developed by Bjarne Stroustrup in the early 1980s as an extension of the C programming language.

    • It supports both procedural and object-oriented programming paradigms, allowing for code reusability and modularity.

    • C++ features include classes, inheritance, polymorphism, encapsulation, and templates, which en...

  • Answered by AI
  • Q2. What s means by python
  • Ans. 

    Python is a high-level, interpreted programming language known for its readability and versatility in various applications.

    • Easy to learn: Python's syntax is clear and intuitive, making it accessible for beginners.

    • Versatile: Used in web development (e.g., Django, Flask), data analysis (e.g., Pandas, NumPy), and machine learning (e.g., TensorFlow, scikit-learn).

    • Large community: Python has a vast ecosystem of libraries an...

  • Answered by AI
  • Q3. What s means by project manager
  • Ans. 

    A project manager oversees project planning, execution, and completion, ensuring goals are met within scope, time, and budget.

    • Defines project scope and objectives, e.g., creating a project charter.

    • Develops detailed project plans, including timelines and resource allocation.

    • Monitors project progress and performance, adjusting plans as necessary.

    • Facilitates communication among stakeholders, ensuring everyone is informed.

    • ...

  • Answered by AI
  • Q4. What s means by sales manager
  • Ans. 

    A sales manager oversees a company's sales team, strategizing to meet sales targets and drive revenue growth.

    • Responsible for setting sales goals and quotas.

    • Develops training programs for sales staff to enhance skills.

    • Analyzes sales data to identify trends and opportunities.

    • Collaborates with marketing to align strategies and campaigns.

    • Example: A sales manager might implement a new CRM system to track customer interactio...

  • Answered by AI
  • Q5. What s Means by Automatic
  • Ans. 

    Automatic refers to processes or systems that operate independently without human intervention, enhancing efficiency and consistency.

    • Automation in manufacturing: Robots assembling cars without human input.

    • Software automation: Scripts that run tests on applications automatically.

    • Home automation: Smart thermostats adjusting temperature based on user habits.

    • Automatic updates: Software that downloads and installs updates w...

  • Answered by AI
  • Q6. What s means

RND Engineer Interview Questions & Answers

user image Saurabh Prabhat

posted on 22 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

One question on graph theory is given for a duration of three hours.

Round 2 - Pen paper test 

(1 Question)

  • Q1. Find minimum no of steps to reach end of array
Round 3 - Technical 

(1 Question)

  • Q1. Based on project
Round 4 - HR 

(1 Question)

  • Q1. Hr questions based on resume , family

RND Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Nov 2024

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

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

We were given a DSA question to solve it in 3 hr and have to complete every test case to proceed

Round 2 - Coding Test 

Again a DSA question on paper. We need to intuitively give an answer and answer algorithm cpz it's RND

Round 3 - Technical 

(1 Question)

  • Q1. Advance Data structures questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

One coding question from dynamic programming

Round 2 - Technical 

(2 Questions)

  • Q1. Segment tree maximum/minimum
  • Ans. 

    Segment trees efficiently handle range queries for maximum or minimum values in an array.

    • Segment trees are binary trees used for storing intervals or segments.

    • They allow querying the maximum or minimum value in a range in O(log n) time.

    • Building a segment tree takes O(n) time.

    • Example: For array [1, 3, 2, 7, 9, 11], the segment tree can quickly find max/min in any subarray.

    • Updates to the array can also be done in O(log n...

  • Answered by AI
  • Q2. Binary lifting ancestors problem
  • Ans. 

    Binary lifting ancestors problem involves finding the k-th ancestor of a node in a binary tree efficiently.

    • Binary lifting is a technique used to find ancestors in a binary tree.

    • It involves precomputing the ancestors of each node using dynamic programming.

    • The k-th ancestor of a node can be found by repeatedly jumping up the tree in powers of 2.

    • Example: Given a binary tree with nodes 1, 2, 3, 4, 5, 6, 7, the 2nd ancestor...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why we hire you?

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Why you want to join company
  • Q2. Puzzle question

Interview Preparation Tips

Interview preparation tips for other job seekers - solve previous year question of sri delhi 6 month intern and practice some puzzle. focus on topics like tree, graph,dfs,bfs,shortest path , linked list more.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

1 question 50 test cases brute force will also work

Round 2 - Technical 

(2 Questions)

  • Q1. Object oriented Programming
  • Q2. Data structure and algorithm BFS DFS
Round 3 - HR 

(2 Questions)

  • Q1. Simple question like introduce about yourself?
  • Q2. Why you want to join ?

Interview Preparation Tips

Interview preparation tips for other job seekers - core focus should be BFS DFS
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
  • Ans. 

    I expect a competitive salary that reflects my experience, skills, and the industry standards for a Senior Engineer role.

    • Research industry standards: For example, according to Glassdoor, Senior Engineers in my area typically earn between $100,000 and $130,000.

    • Consider my experience: With over 8 years in the field and expertise in multiple programming languages, I believe a salary in the upper range is justified.

    • Factor ...

  • Answered by AI

Interview Preparation Tips

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

I applied via Referral and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Write monitor for APB protocol
  • Ans. 

    A monitor for APB protocol is a verification component that checks for protocol compliance in APB transactions.

    • Monitor should check for valid address, data, and control signals in APB transactions

    • It should detect and report any protocol violations or errors

    • Monitor should be able to track the state of the APB bus and ensure proper communication between master and slave devices

  • Answered by AI
  • Q2. Design FSM - halway with 2 detectors, accuire amout of pepole in room - only one person can pass halway each time.
  • Ans. 

    Design a finite state machine to count the number of people passing through a hallway with 2 detectors, allowing only one person at a time.

    • Create states for each detector and the hallway

    • Transition between states based on detector inputs

    • Use counters to keep track of the number of people passing through

    • Implement logic to prevent multiple people from passing simultaneously

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Samsung Research Verification Engineer interview:
  • FSMS
  • UVM

Skills evaluated in this interview

Top trending discussions

View All
Interview Hub
5d (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Samsung Research?
Ask anonymously on communities.

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 Investment Banking, Software Configuration Management, Market Analysis, Product Strategy and Python.
What are the top questions asked in Samsung Research interview?

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

  1. It was a technical discussion round. Usually Java & Android are a plus to have...read more
  2. There were a lot of questions on Operating Systems like on Deadlock, Partitionn...read more
  3. Was asked about the Dijkstra Algorithm and a counter-question based on that, la...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.

Overall Interview Experience Rating

4.2/5

based on 108 interview experiences

Difficulty level

Easy 14%
Moderate 80%
Hard 6%

Duration

Less than 2 weeks 82%
2-4 weeks 10%
4-6 weeks 3%
6-8 weeks 4%
More than 8 weeks 1%
View more

Interview Questions from Similar Companies

LG Electronics Interview Questions
3.9
 • 236 Interviews
OPPO Interview Questions
3.9
 • 234 Interviews
vivo Interview Questions
4.1
 • 213 Interviews
Blue Star Interview Questions
4.1
 • 181 Interviews
Philips Interview Questions
3.8
 • 169 Interviews
HP India Interview Questions
3.9
 • 156 Interviews
Voltas Interview Questions
4.0
 • 154 Interviews
Bajaj Electricals Interview Questions
4.0
 • 137 Interviews
View all

Samsung Research Reviews and Ratings

based on 1.1k reviews

3.1/5

Rating in categories

2.8

Skill development

3.5

Work-life balance

3.0

Salary

3.3

Job security

2.9

Company culture

2.6

Promotions

2.8

Work satisfaction

Explore 1.1k Reviews and Ratings
AI/ML Expert

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Explore more jobs
Software Engineer
1.7k salaries
unlock blur

₹12.1 L/yr - ₹21.5 L/yr

Lead Engineer
666 salaries
unlock blur

₹19.2 L/yr - ₹35.2 L/yr

Senior Software Engineer
647 salaries
unlock blur

₹16 L/yr - ₹25.1 L/yr

Chief Engineer
434 salaries
unlock blur

₹26.8 L/yr - ₹50 L/yr

Engineer
337 salaries
unlock blur

₹10.9 L/yr - ₹20 L/yr

Explore more salaries
Compare Samsung Research with

vivo

4.1
Compare

OPPO

3.9
Compare

LG Electronics

3.9
Compare

Bajaj Electricals

3.9
Compare
write
Share an Interview