AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Samsung Research

Compare button icon Compare button icon Compare
3.1

based on 1.1k Reviews

Play video Play video Video summary
  • About
  • Reviews
    1.1k
  • Salaries
    8.8k
  • Interviews
    140
  • Jobs
    4
  • Benefits
    177
  • Photos
    -

Filter interviews by

Samsung Research Interview Questions and Answers

Updated 30 Jun 2025
Popular Designations

89 Interview questions

A Software Engineer Intern was asked 2mo 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 Intern was asked 2mo 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
A Software Engineer Intern was asked 2mo 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
A Software Engineer was asked 2mo 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 2mo 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
A Software Developer was asked 4mo ago
Q. Given an array where all elements appear twice except for one, find the unique element.
Ans. 

Find the unique number in an array where every other number appears twice.

  • Use a hash map to count occurrences of each number. Example: [1, 2, 2, 3, 1] -> {1: 2, 2: 2, 3: 1}

  • Utilize the XOR operation. Example: [1, 2, 2, 3, 1] -> 1 ^ 1 ^ 2 ^ 2 ^ 3 = 3 (the unique number).

  • Iterate through the array and check for duplicates. Example: [4, 5, 4, 6, 5] -> 6 is unique.

View all Software Developer interview questions
A Software Developer was asked 4mo ago
Q. Given two strings s1 and s2, return true if s2 contains a permutation of s1, or false otherwise.
Ans. 

Check if one string is a permutation of another by comparing character counts.

  • Two strings are permutations if they have the same characters in the same frequency.

  • Example: 'abc' and 'cab' are permutations.

  • Use a hash map or array to count character occurrences.

  • Sort both strings and compare them for a simpler solution.

  • Example: 'listen' and 'silent' are permutations.

View all Software Developer interview questions
Are these interview questions helpful?
A Software Engineer was asked 5mo ago
Q. Describe a time you had to schedule jobs in an optimized way, given their timestamps and priorities, using specific APIs and pseudo code.
Ans. 

Optimizing job scheduling based on priority and timestamps in a queue.

  • Use a priority queue to manage jobs based on their priority levels.

  • Sort jobs by their arrival time and then by priority for scheduling.

  • Implement a greedy algorithm to select the highest priority job available at each timestamp.

  • Consider edge cases like jobs arriving at the same time with different priorities.

  • Example: If jobs A (priority 1, timest...

View all Software Engineer interview questions
An Engineer was asked 6mo ago
Q. What is the time complexity of your solution?
Ans. 

The time complexity of a solution refers to the amount of time it takes for an algorithm to run based on the input size.

  • Time complexity is typically expressed using Big O notation, which describes the worst-case scenario for how the runtime grows with respect to the input size.

  • Common time complexities include O(1) for constant time, O(log n) for logarithmic time, O(n) for linear time, O(n^2) for quadratic time, an...

View all Engineer interview questions
An Engineer was asked 6mo ago
Q. An image is represented by an m x n integer grid image where image[i][j] represents the pixel value of the image. You are also given three integers sr, sc, and color. You should perform a flood fill on the ...
Ans. 

Flood fill is an algorithm used to determine connected regions in a grid, commonly used in graphics applications.

  • Flood fill can be implemented using Depth-First Search (DFS) or Breadth-First Search (BFS).

  • Example: In a 2D grid, starting from a pixel, flood fill changes the color of connected pixels.

  • Recursive approach: Use a function that calls itself for adjacent pixels.

  • Iterative approach: Use a stack or queue to e...

View all Engineer interview questions
1 2 3 4 5 6 7

Samsung Research Interview Experiences

140 interviews found

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 4 Jan 2025

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
  • Add your answer
  • Q2. Graph coding ques
  • Add your answer
Round 4 - HR 

(1 Question)

  • Q1. Salary discssion
  • Add your answer
Anonymous

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
  • Add your answer
  • Q2. Virtual Destructor
  • Add your answer

Interview Preparation Tips

Topics to prepare for Samsung Research R&D Engineer interview:
  • DSA
  • OOPS
  • OS
Anonymous

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

    Calculate the minimum steps to reach the end of an array using jumps based on values at each index.

    • Use a greedy approach to track the maximum reachable index at each step.

    • Initialize variables: steps (to count jumps), maxReach (to track the farthest index), and currentEnd (to mark the end of the current jump).

    • Iterate through the array, updating maxReach and incrementing steps when reaching currentEnd.

    • Example: For array ...

  • Answered by AI
    Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. Based on project
  • Add your answer
Round 4 - HR 

(1 Question)

  • Q1. Hr questions based on resume , family
  • Add your answer
Anonymous

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
  • Add your answer
Anonymous

Research and Development Interview Questions & Answers

user image Prince Keshari

posted on 21 Oct 2024

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
    Add your answer
  • 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
    Add your answer
Round 3 - HR 

(2 Questions)

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

Skills evaluated in this interview

Anonymous

Software Developer Intern Interview Questions & Answers

user image Anonymous

posted on 25 Nov 2024

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
  • Add your answer
  • Q2. Puzzle question
  • Add your answer

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.
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Aug 2024

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
  • Add your answer
  • Q2. Data structure and algorithm BFS DFS
  • Add your answer
Round 3 - HR 

(2 Questions)

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

Interview Preparation Tips

Interview preparation tips for other job seekers - core focus should be BFS DFS
Anonymous

Senior Engineer Interview Questions & Answers

user image Anonymous

posted on 9 Jan 2025

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
    Add your answer
  • 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
    Add your answer
Round 2 - HR 

(1 Question)

  • Q1. Salary negotiations
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared for tough questions
Anonymous

Verification Engineer Interview Questions & Answers

user image Anonymous

posted on 1 Jul 2024

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
    Add your answer
  • 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
    Add your answer

Interview Preparation Tips

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

Skills evaluated in this interview

Anonymous

Senior Staff Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Oct 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Design rate limiter
  • Ans. 

    A rate limiter controls the number of requests a user can make to a service in a given timeframe.

    • Token Bucket Algorithm: Allows a burst of requests up to a limit, then enforces a steady rate.

    • Leaky Bucket Algorithm: Processes requests at a constant rate, smoothing out bursts.

    • Fixed Window Counter: Counts requests in a fixed time window (e.g., 1 minute) and resets after the window ends.

    • Sliding Window Log: Keeps a log of t...

  • Answered by AI
    Add your answer
Anonymous

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Samsung Research?
Ask anonymously on communities.
More about working at Samsung Research
  • HQ - Seocho-gu, South Korea
  • Consumer Electronics & Appliances
  • 1k-5k Employees (India)
  • Education & Training
  • Hardware & Networking

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. There were a lot of questions on Operating Systems like on Deadlock, Partitionn...read more
  2. What's the best way to find majority element in an arr...read more
  3. You are given a thread and you are unlocked in a room.Measure the height of the...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 Interviews By Designations

  • Samsung Research Software Engineer Interview Questions
  • Samsung Research Software Developer Interview Questions
  • Samsung Research Engineer Interview Questions
  • Samsung Research Senior Engineer Interview Questions
  • Samsung Research Intern Interview Questions
  • Samsung Research Software Developer Intern Interview Questions
  • Samsung Research Research Intern Interview Questions
  • Samsung Research Senior Software Engineer Interview Questions
  • Show more
  • Samsung Research R&D Engineer Interview Questions
  • Samsung Research SDE (Software Development Engineer) Interview Questions

Interview Questions for Popular Designations

  • Software Engineer Interview Questions
  • Software Developer Interview Questions
  • Engineer Interview Questions
  • Senior Engineer Interview Questions
  • Intern Interview Questions
  • Software Developer Intern Interview Questions
  • Research Intern Interview Questions
  • Associate Interview Questions
  • Show more
  • System Engineer Interview Questions
  • Assistant Manager Interview Questions

Overall Interview Experience Rating

4.2/5

based on 107 interview experiences

Difficulty level

Easy 14%
Moderate 81%
Hard 4%

Duration

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

Interview Questions from Similar Companies

OPPO
OPPO Interview Questions
4.0
 • 230 Interviews
LG Electronics
LG Electronics Interview Questions
3.9
 • 229 Interviews
vivo
vivo Interview Questions
4.1
 • 211 Interviews
Blue Star
Blue Star Interview Questions
4.1
 • 178 Interviews
Daikin Airconditioning India Pvt. Ltd.
Daikin Airconditioning India Pvt. Ltd. Interview Questions
4.1
 • 173 Interviews
Philips
Philips Interview Questions
3.8
 • 169 Interviews
HP India
HP India Interview Questions
4.0
 • 153 Interviews
Voltas
Voltas Interview Questions
4.0
 • 150 Interviews
Haier Appliances India
Haier Appliances India Interview Questions
4.0
 • 142 Interviews
Bajaj Electricals
Bajaj Electricals Interview Questions
4.0
 • 134 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.1

Salary

3.3

Job security

3.0

Company culture

2.6

Promotions

2.8

Work satisfaction

Explore 1.1k Reviews and Ratings
Jobs at Samsung Research
Samsung Research
AI/ML Expert

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Samsung Research
Camera Device Driver Specialist

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

Samsung Research
Linux Kernel Technologist

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

Explore more jobs
Samsung Research Salaries in India
Software Engineer
1.7k salaries
unlock blur

₹12 L/yr - ₹22 L/yr

Lead Engineer
687 salaries
unlock blur

₹19 L/yr - ₹33 L/yr

Senior Software Engineer
608 salaries
unlock blur

₹16 L/yr - ₹25.2 L/yr

Chief Engineer
409 salaries
unlock blur

₹26.9 L/yr - ₹50 L/yr

Engineer
344 salaries
unlock blur

₹10.9 L/yr - ₹20.2 L/yr

Explore more salaries
Compare Samsung Research with
vivo

vivo

4.1
Compare
OPPO

OPPO

3.9
Compare
LG Electronics

LG Electronics

3.9
Compare
Bajaj Electricals

Bajaj Electricals

4.0
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Samsung Research Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter