Upload Button Icon Add office photos

Samsung

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Samsung Interview Questions, Process, and Tips

Updated 3 Mar 2025

Top Samsung Interview Questions and Answers

View all 396 questions

Samsung Interview Experiences

Popular Designations

546 interviews found

I applied via Referral and was interviewed before Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. My own introductions
  • Q2. What I am doing now a days mine studies my family and where did I stay
  • Q3. What other company I experienced
  • Ans. 

    I have experience working for a technology company specializing in software development.

    • Worked as a software developer for XYZ Tech for 2 years

    • Developed mobile applications for clients in various industries

    • Collaborated with cross-functional teams to deliver high-quality products

  • Answered by AI
  • Q4. Which ever I worked I have to tell every details with product prove technology....and some questions to check the mind tricks.....
  • Q5. How confident to travel any where if company decide for working.......
  • Q6. How tuff u can fight with other company brand staff.
  • Q7. Have to be patience to tackle all problems in store with all senior junior persons.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident to talk with all u know with technology.

Production Interview Questions & Answers

user image Anonymous

posted on 3 Dec 2020

Interview Questionnaire 

1 Question

  • Q1. Technicalities

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare urself with all technicalities of ur exp.

Production Interview Questions asked at other Companies

Q1. How could you define tablets and attribute all the qualities of tablets in single defination either be in hindi or english
View answer (5)

I applied via Campus Placement and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Coding Test 

One question of 3 hrs with 50 test cases all needed to pass.

Round 2 - Technical 

(1 Question)

  • Q1. Core computer science concept. DS, operating system, bits
Round 3 - HR 

(5 Questions)

  • Q1. What is your family background?
  • Ans. 

    My family background is diverse and multicultural, with members from different professions and backgrounds.

    • My father is a doctor and my mother is a teacher.

    • I have two siblings, one is an engineer and the other is a lawyer.

    • We have relatives living in different countries, including the USA, India, and Australia.

    • Our family gatherings are always filled with interesting conversations and cultural exchange.

  • Answered by AI
  • Q2. Share details of your previous job.
  • Ans. 

    I worked as a Software Engineer at XYZ Company.

    • Developed and maintained software applications using Java and Python.

    • Collaborated with cross-functional teams to gather requirements and design solutions.

    • Implemented unit tests and performed code reviews to ensure code quality.

    • Participated in agile development processes and attended daily stand-up meetings.

    • Resolved bugs and issues reported by users and provided technical s...

  • Answered by AI
  • Q3. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers, working on complex projects and contributing to the growth of the company.

    • Leading a team of developers

    • Working on complex projects

    • Contributing to the growth of the company

  • Answered by AI
  • Q4. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving, attention to detail, and teamwork. My weaknesses include time management and public speaking.

    • Strengths: problem-solving

    • Strengths: attention to detail

    • Strengths: teamwork

    • Weaknesses: time management

    • Weaknesses: public speaking

  • Answered by AI
  • Q5. Tell me about yourself.
  • Ans. 

    I am a software engineer with experience in developing and maintaining software applications.

    • I have a Bachelor's degree in Computer Science.

    • I have worked on various projects using different programming languages such as Java, C++, and Python.

    • I am skilled in software development methodologies like Agile and have experience with version control systems like Git.

    • I have strong problem-solving and analytical skills, which h...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DFS, BFS, Heap. Basic data structures are focused rather than competitive coding.

Top Samsung Software Engineer Interview Questions and Answers

Q1. Reverse Alternate K Nodes Problem Statement You are given a singly linked list of integers along with a positive integer 'K'. The task is to modify the linked list by reversing every alternate 'K' nodes of the linked list. Explanation: A si... read more
View answer (1)

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 (205)

I appeared for an interview before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

The round had 2 coding problems to solve with varying difficulty. Each candidate had a different set of questions. The round was around 2 pm. The webcam was turned on to keep an eye on candidates.

  • Q1. 

    Bursting Balloons Problem

    Given an array ARR of size N, where each element represents the height of a balloon. The task is to destroy all balloons by shooting arrows from left to right. When an arrow hits...

  • Ans. 

    Find the minimum number of arrows needed to burst all balloons by shooting arrows from left to right.

    • Sort the array in non-decreasing order to make it easier to calculate the minimum number of arrows needed.

    • Iterate through the sorted array and count the number of times the height decreases compared to the previous balloon.

    • The count of decreases + 1 will give the minimum number of arrows needed to burst all balloons.

    • Exa...

  • Answered by AI
  • Q2. 

    Count Leaf Nodes in a Binary Tree

    Count the number of leaf nodes present in a given binary tree. A binary tree is a data structure where each node has at most two children, known as the left child and the...

  • Ans. 

    Count the number of leaf nodes in a binary tree.

    • Traverse the binary tree and check if both left and right children are NULL to identify leaf nodes.

    • Use recursion to traverse the tree efficiently.

    • Keep track of the count of leaf nodes as you traverse the tree.

    • Handle base cases where the current node is NULL or a leaf node.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 2 questions related to DSA. I was first asked to explain my approach with proper complexity analysis and then code the soution in any IDE that I prefer.

  • Q1. 

    Rod Cutting Problem Statement

    Given a rod of a certain length, the rod can be divided into different sizes, each with an associated cost. Your task is to determine the maximum cost that can be obtained by...

  • Ans. 

    The Rod Cutting Problem involves maximizing the profit obtained by cutting a rod into smaller pieces and selling them.

    • Use dynamic programming to solve this problem efficiently.

    • Create a table to store the maximum profit for each sub-length of the rod.

    • Iterate through the rod lengths and update the table with the maximum profit.

    • The final answer will be the maximum profit for the total length of the rod.

  • Answered by AI
  • Q2. 

    Count Subarrays with Given XOR Problem Statement

    You are given an array of integers ARR and an integer X. Your task is to determine the number of subarrays of ARR whose bitwise XOR is equal to X.

    Example...

  • Ans. 

    Count the number of subarrays in an array whose XOR is equal to a given value.

    • Iterate through the array and keep track of XOR values and their frequencies using a hashmap.

    • For each element in the array, calculate the XOR with the current element and check if the required XOR value exists in the hashmap.

    • Increment the count of subarrays whenever the required XOR value is found in the hashmap.

  • Answered by AI
Round 3 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 2 questions of DSA of Easy-Medium difficulty and at the end I was asked a Puzzle to check my general problem solving ability.

  • Q1. 

    Rotting Oranges Problem Statement

    You are given a grid containing oranges where each cell of the grid can contain one of the three integer values:

    • 0 - representing an empty cell
    • 1 - representing a fre...
  • Ans. 

    Find the minimum time required to rot all fresh oranges in a grid.

    • Use Breadth First Search (BFS) to simulate the rotting process of oranges.

    • Keep track of the time taken to rot all oranges and the count of fresh oranges remaining.

    • If all fresh oranges are not rotten after simulation, return -1.

    • Handle edge cases like empty grid or no fresh oranges present.

    • Example: For the given grid, the minimum time required is 4 seconds

  • Answered by AI
  • Q2. 

    Detect and Remove Loop in Linked List

    For a given singly linked list, identify if a loop exists and remove it, adjusting the linked list in place. Return the modified linked list.

    Expected Complexity:

    A...

  • Ans. 

    Detect and remove loop in a singly linked list in place with O(n) time complexity and O(1) space complexity.

    • Use Floyd's Cycle Detection Algorithm to identify the loop in the linked list.

    • Once the loop is detected, use two pointers approach to find the start of the loop.

    • Adjust the pointers to remove the loop and return the modified linked list.

    • Example: For input 5 2 and 1 2 3 4 5, return 1 2 3 4 5 without the loop.

  • Answered by AI
  • Q3. You have two wires of different lengths that are both capable of burning for exactly one hour when ignited at both ends. How can you measure a time interval of 45 minutes using these two wires?
Round 4 - Face to Face 

(4 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This round had 2 Algorithmic questions wherein I was supposed to code both the problems after discussing their
approaches and respective time and space complexities . After that , I was grilled on some OOPS concepts related to C++.

  • Q1. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The task is to find the longest palindromic substring within STR. If there are several palindromic substring...

  • Ans. 

    Given a string, find the longest palindromic substring within it.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found so far

    • Return the longest palindromic substring

  • Answered by AI
  • Q2. 

    Quick Sort Problem Statement

    You are provided with an array of integers. The task is to sort the array in ascending order using the quick sort algorithm.

    Quick sort is a divide-and-conquer algorithm. It ...

  • Ans. 

    Yes, the quick sort algorithm can be enhanced to achieve NlogN complexity in the worst case by using a randomized version of the algorithm.

    • Randomized quick sort involves randomly selecting the pivot element to reduce the chances of worst-case scenarios.

    • By choosing a random pivot, the algorithm becomes less predictable and more likely to achieve the desired time complexity.

    • This enhancement helps in avoiding the worst-ca...

  • Answered by AI
  • Q3. What are friend functions in C++?
  • Ans. 

    Friend functions in C++ are functions that are not members of a class but have access to its private and protected members.

    • Friend functions are declared inside a class with the keyword 'friend'.

    • They can access private and protected members of the class.

    • They are not member functions of the class, but have the same access rights as member functions.

    • Friend functions are useful for implementing operators that are not part ...

  • Answered by AI
  • Q4. What is the difference between Early Binding and Late Binding in C++?
  • Ans. 

    Early binding is resolved at compile time while late binding is resolved at runtime in C++.

    • Early binding is also known as static binding, where the function call is resolved at compile time based on the type of the object.

    • Late binding is also known as dynamic binding, where the function call is resolved at runtime based on the actual type of the object.

    • Early binding is faster as the function call is directly linked to ...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASamsung interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Samsung Software Developer Interview Questions and Answers

Q1. Minimum Time in Wormhole Network Determine the minimum time required to travel from a starting point to a destination point in a two-dimensional coordinate system, considering both direct movement and the use of wormholes. Explanation: You ... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Samsung interview questions for popular designations

 Software Engineer

 (49)

 Software Developer

 (36)

 Research and Development

 (14)

 Sales Executive

 (12)

 Software Developer Intern

 (12)

 Senior Software Engineer

 (9)

 Area Sales Manager

 (9)

 Intern

 (8)

Sales Interview Questions & Answers

user image Anonymous

posted on 13 Aug 2020

Interview Questionnaire 

3 Questions

  • Q1. About mobile
  • Q2. Qualification
  • Q3. Experience

Interview Preparation Tips

Interview preparation tips for other job seekers - No

Sales Interview Questions asked at other Companies

Q1. Shall anyone should go for BDA Or Sales for Learning / Monetary benefit?
View answer (7)

Get interview-ready with Top Samsung Interview Questions

I applied via Referral and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Technical questions on lte

Interview Preparation Tips

Interview preparation tips for other job seekers - technology and study will make it through

Technical Consultant Interview Questions asked at other Companies

Q1. Oops C and java difference Query for selecting all columns from a table 10 uses of a pen Personal questions like the place we belong to What do you know about our company The interview was not really good ,I got selected 😅 for role of tech... read more
View answer (1)

Jobs at Samsung

View all

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 180 Minutes
Round difficulty - Medium

1 coding question, 3 hours to solve, 50 test cases.
Problem level - medium
Platform ide - okayish

  • Q1. 

    Water Supply Optimization Problem

    Given N houses in a village, determine the minimum cost to supply water to all houses either by building wells in the houses or by connecting them with pipes.

    Explanatio...

  • Ans. 

    Determine the minimum cost to supply water to all houses in a village by building wells or connecting them with pipes.

    • Iterate through all possible connections and choose the minimum cost between building a well or connecting two houses with a pipe.

    • Use a minimum spanning tree algorithm like Kruskal's or Prim's to find the optimal cost.

    • Consider the cost of building wells and connecting pipes to minimize the total cost.

    • Ex...

  • Answered by AI
Round 2 - Face to Face 

Round duration - 40 minutes
Round difficulty - Medium

Mixed round, Problem solving, cpp fundamentals, OOP, resume

Interview Preparation Tips

Professional and academic backgroundI completed Software Engineering from Delhi Technological University. I applied for the job as SDE - Intern in NoidaEligibility criteriaComputer related branchesSamsung interview preparation:Topics to prepare for the interview - DBMS, Data Structures and Algorithms , OOP, Maths puzzles, AptitudeTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Never leave any topic from any chapter / Subject
Tip 2 : Learn to explain your thoughts well
Tip 3 : Learn from previous experiences / interviews / problems asked.
Tip 4 : Atleast 4 projects in Resume

Application resume tips for other job seekers

Tip 1 : Atleast 4 projects on Resume
Tip 2 : Do not write false things. You always get caught. Be genuine.

Final outcome of the interviewRejected

Top Samsung Software Developer Intern Interview Questions and Answers

Q1. Remove Consecutive Duplicates Problem Statement For a given string str, remove all the consecutive duplicate characters. Example: Input: Input String: "aaaa" Output: Expected Output: "a" Input: Input String: "aabbbcc" Output: Expected Outpu... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Interview Questions & Answers

user image

posted on 11 Apr 2021

I applied via Other and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Kumuter
  • Q2. Excel.sheet

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes. Today.

I applied via Campus Placement and was interviewed before Jun 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 tips
Round 2 - Aptitude Test 

1 hr

Round 3 - Coding Test 

1 hr

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well for the interview, samsung is a good MNC

Top Samsung Software Engineer Interview Questions and Answers

Q1. Reverse Alternate K Nodes Problem Statement You are given a singly linked list of integers along with a positive integer 'K'. The task is to modify the linked list by reversing every alternate 'K' nodes of the linked list. Explanation: A si... read more
View answer (1)

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 (205)

I applied via Referral and was interviewed before May 2021. There were 2 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 - Assignment 

Product knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - I like to work with samsung because there are not having any pressure realted work an conformable with timing an weekly off

Brand Promotion Executive Interview Questions asked at other Companies

Q1. What is BTL marketing What are the sampling activities u had done
View answer (1)

Samsung Interview FAQs

How many rounds are there in Samsung interview?
Samsung interview process usually has 2-3 rounds. The most common rounds in the Samsung interview process are Resume Shortlist, One-on-one Round and HR.
How to prepare for Samsung 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. The most common topics and skills that interviewers at Samsung expect are Marketing, Sales, Hardware, Logistics and Quality.
What are the top questions asked in Samsung interview?

Some of the top questions asked at the Samsung interview -

  1. How to divide the frequency of the clock by t...read more
  2. Design a sequential circuit to detect a sequence 001001?Explain it?How can you ...read more
  3. How to divide the frequency of the clock by thr...read more
How long is the Samsung interview process?

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

Tell us how to improve this page.

Samsung Interview Process

based on 401 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Dell Interview Questions
4.0
 • 386 Interviews
HARMAN Interview Questions
3.7
 • 260 Interviews
LG Electronics Interview Questions
4.0
 • 198 Interviews
Apple Interview Questions
4.3
 • 138 Interviews
Xiaomi Interview Questions
3.8
 • 89 Interviews
Sony Interview Questions
4.2
 • 67 Interviews
Lenovo Interview Questions
4.2
 • 39 Interviews
View all

Samsung Reviews and Ratings

based on 7.2k reviews

3.9/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

3.8

Salary

3.7

Job security

3.7

Company culture

3.2

Promotions

3.6

Work satisfaction

Explore 7.2k Reviews and Ratings
Zonal Sales Manager (ZSM)

Hyderabad / Secunderabad,

Bikaner

10-17 Yrs

Not Disclosed

Area Sales Manager (MX Modern Retail Division)

Ahmedabad

4-9 Yrs

₹ 15-22.5 LPA

Explore more jobs
Sales Executive
1.1k salaries
unlock blur

₹1 L/yr - ₹6.5 L/yr

Assistant Manager
1.1k salaries
unlock blur

₹5.5 L/yr - ₹19.6 L/yr

Software Engineer
888 salaries
unlock blur

₹6.5 L/yr - ₹25 L/yr

Manager
526 salaries
unlock blur

₹10 L/yr - ₹33 L/yr

Senior Engineer
476 salaries
unlock blur

₹4.3 L/yr - ₹18 L/yr

Explore more salaries
Compare Samsung with

Apple

4.3
Compare

LG Electronics

4.0
Compare

Sony

4.2
Compare

Xiaomi

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