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 appeared for an interview before Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 Minutes
Round difficulty - Hard

This round had 3 preety good questions to be solved under 2 hours . The first question was from Graphs and DSU , the second question was related to DP and the third one was from Recursion.

  • Q1. 

    Most Stones Removed with Same Row or Column

    On a 2-D plane, there are ‘N’ stones placed at some integer coordinate points. Each coordinate point can have at most one stone. A stone can be removed if it sh...

  • Ans. 

    Given a 2-D plane with stones at integer coordinate points, find the maximum number of stones that can be removed by sharing the same row or column.

    • Iterate through the stones and create a graph where stones in the same row or column are connected.

    • Use depth-first search (DFS) to find connected components in the graph.

    • The maximum number of stones that can be removed is the total number of stones minus the number of conne

  • Answered by AI
  • Q2. 

    Gold Mine Problem Statement

    You are provided with a gold mine, represented as a 2-dimensional matrix of size N x M with N rows and M columns. Each cell in this matrix contains a positive integer represent...

  • Ans. 

    The task is to determine the maximum amount of gold a miner can collect by moving in allowed directions in a gold mine represented as a 2D matrix.

    • Create a 2D DP array to store the maximum gold collected at each cell

    • Iterate through the matrix from left to right and update the DP array based on the allowed directions

    • Return the maximum value in the last column of the DP array as the final result

  • Answered by AI
  • Q3. 

    All Possible Balanced Parentheses Problem Statement

    Given a positive integer N, generate all possible sequences of balanced parentheses using N pairs of parentheses.

    A sequence of brackets is called bala...

  • Ans. 

    Generate all possible sequences of balanced parentheses using N pairs of parentheses.

    • Use backtracking to generate all possible combinations of balanced parentheses.

    • Keep track of the number of opening and closing parentheses used.

    • Add opening parentheses if there are remaining, and add closing parentheses only if there are more opening parentheses than closing.

    • Recursively generate all valid combinations.

    • Return the list o

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 2 questions from DSA. Both the questions were preety straightforward and were asked to check my implementation skills and how well do I handle Edge Cases for tricky problems.

  • Q1. 

    Stack using Two Queues Problem Statement

    Develop a Stack Data Structure to store integer values using two Queues internally.

    Your stack implementation should provide these public functions:

    Explanation:

    ...
  • Ans. 

    Implement a stack using two queues to store integer values.

    • Use two queues to simulate stack operations: push elements to one queue, then move all elements to the other queue to simulate pop and top operations.

    • Maintain the size of the stack and check for empty stack using the size of the queues.

    • Handle edge cases such as popping or getting top element from an empty stack.

    • Ensure the implementation follows the specified pu...

  • Answered by AI
  • Q2. 

    Rotate Matrix by 90 Degrees Problem Statement

    Given a square matrix 'MATRIX' of non-negative integers, rotate the matrix by 90 degrees in an anti-clockwise direction using only constant extra space.

    Inpu...

  • Ans. 

    Rotate a square matrix by 90 degrees in an anti-clockwise direction using constant extra space.

    • Iterate through each layer of the matrix and swap elements in groups of 4

    • Transpose the matrix and then reverse each row to achieve the rotation

    • Ensure to handle edge cases like odd-sized matrices

  • Answered by AI
Round 3 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round also had 2 questions related to DSA where I was first expected to explain my approaches and then discuss the time and space complexities of my solution. After that , I was asked some core concepts related to OOPS and OS.

  • Q1. 

    Triplets with Given Sum

    Given an array ARR consisting of N integers, find all distinct triplets in the array that add up to a given number K.

    Example:

    Input:
    T = 2
    N = 5
    ARR = [1, 2, 3, 4, 5]
    K = 9
    N = 4
    ...
  • Ans. 

    Find all distinct triplets in an array that add up to a given number.

    • Use three nested loops to iterate through all possible triplets.

    • Sort the array first to easily skip duplicates.

    • Use two-pointer technique to find the remaining element for each triplet.

    • Handle edge cases like empty list or no triplet summing up to K.

  • Answered by AI
  • Q2. 

    Trapping Rain Water Problem Statement

    You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine th...

  • Ans. 

    Calculate the total amount of rainwater that can be trapped between given elevations in an array.

    • Iterate through the array and calculate the maximum height on the left and right of each bar.

    • Calculate the amount of water that can be trapped at each bar by taking the minimum of the maximum heights on the left and right.

    • Sum up the trapped water at each bar to get the total trapped water for the entire array.

  • Answered by AI
  • Q3. What is the Diamond Problem in C++ and how can it be resolved?
  • Ans. 

    Diamond Problem is a multiple inheritance issue in C++ where a class inherits from two classes that have a common base class.

    • Diamond Problem occurs when a class inherits from two classes that have a common base class, leading to ambiguity in accessing members.

    • It can be resolved in C++ using virtual inheritance, where the common base class is inherited virtually to avoid duplicate copies of base class members.

    • Example: c...

  • Answered by AI
  • Q4. What is thrashing in operating systems?
  • Ans. 

    Thrashing in operating systems occurs when the system is spending more time swapping data between memory and disk than actually executing tasks.

    • Occurs when the system is constantly swapping data between memory and disk

    • Causes a decrease in system performance as it spends more time on swapping than executing tasks

    • Usually happens when the system does not have enough physical memory to handle the workload efficiently

  • Answered by AI
Round 4 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

This was my last round and I hoped it to go good just like the other rounds. The interviewer was very straight to point and professional. The interview lasted for 30 minutes.

  • Q1. What is something about you that is not included in your resume?

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)

Interview Questionnaire 

1 Question

  • Q1. What is ram
  • Ans. 

    RAM stands for Random Access Memory. It is a type of computer memory that allows data to be accessed quickly.

    • RAM is a volatile memory, meaning it loses its data when the power is turned off.

    • It is used to temporarily store data that the computer is currently using.

    • The more RAM a computer has, the faster it can perform tasks.

    • Examples of RAM include DDR3, DDR4, and SDRAM.

    • RAM is different from storage devices like hard dri

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Best experience

Skills evaluated in this interview

Samsung Sales Promoter Interview Questions asked at other Companies

Q1. What is ram
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 7 Feb 2022

I applied via Company Website and was interviewed in Aug 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 - Case Study 

Read carefully solve by your brain then u will be always right and you will done everything casually

Round 3 - Group Discussion 

Always think then take disscussion u will be right i promise

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be Progressed in your companies employee always not others

Manager Interview Questions & Answers

user image Anonymous

posted on 20 Apr 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2022. 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 - HR 

(2 Questions)

  • Q1. What is ur last ctc
  • Ans. 

    My last CTC was $80,000 per annum.

    • My last CTC was $80,000 per annum

    • I received a salary of $6,666 per month in my previous job

    • My total compensation package was $80,000 including bonuses and benefits

  • Answered by AI
  • Q2. Any career gap ?

Manager Interview Questions asked at other Companies

Q1. There is a chairman of a conglomerate. He has been on the post for 10 years, and is extremely dominating. He treats the various business heads like children, not letting them take any major decision. While the chairman has negatives, he bel... read more
View answer (2)

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)

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

Interview Questionnaire 

1 Question

  • Q1. My previous roles. Achievements. Skill set.

Interview Preparation Tips

Interview preparation tips for other job seekers - Try connecting your experiences with job profile . Will help u Crack it. Stay positive.

Assistant Manager Supply Chain Interview Questions asked at other Companies

Q1. Which skill are needed to be successful in supply chain management
View answer (2)

Get interview-ready with Top Samsung Interview Questions

I applied via Recruitment Consultant and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. 5G Tech understandings according to your domain
  • Ans. 

    My understanding of 5G technology in my domain is extensive and up-to-date.

    • I have a deep understanding of the technical specifications and capabilities of 5G networks.

    • I am familiar with the latest developments in 5G technology and how they can be applied to my domain.

    • I have experience working with 5G networks and implementing solutions that leverage their capabilities.

    • I understand the potential benefits and challenges ...

  • Answered by AI
  • Q2. Puzzles in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and share your background with open mind.

Lead Engineer Interview Questions asked at other Companies

Q1. What is the resistance value of tripping & closing coil of vcb?
View answer (8)

Jobs at Samsung

View all

I applied via Naukri.com and was interviewed before Oct 2021. There were 4 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 - One-on-one 

(1 Question)

  • Q1. How do you manage ROI
Round 3 - One-on-one 

(1 Question)

  • Q1. How will you cope up in a stressed environment.
Round 4 - HR 

(1 Question)

  • Q1. Why do you want to join Samsung.

Interview Preparation Tips

Interview preparation tips for other job seekers - Bw very specific and stay close to your basics.
Dont fake anything. Keep your nos ready.

Area Business Manager Interview Questions asked at other Companies

Q1. how will get failing salons in profit...
View answer (3)

RSO Interview Questions & Answers

user image Anonymous

posted on 10 Aug 2021

I applied via Referral and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself.
  • Q2. I started with my academics then elaborated my career progression respectively.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and talk to the point.

RSO Interview Questions asked at other Companies

Q1. What exactly would you do with a costomer store ?
View answer (1)

Interview Questionnaire 

3 Questions

  • Q1. Ballon Burst Problem
  • Ans. 

    Balloon Burst Problem - Given n balloons, each with a number of coins, maximize the number of coins collected by bursting the balloons.

    • Use dynamic programming to solve the problem

    • Consider each balloon as the last balloon to be burst

    • Calculate the maximum coins that can be collected for each subarray of balloons

    • Use the calculated values to find the maximum coins for the entire array

  • Answered by AI
  • Q2. N queen Problem
  • Q3. OS, DBMS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Pratcise DS and OS and DBMS and OOPS and have 2 to 3 projects

Skills evaluated in this interview

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)

Interview Questionnaire 

2 Questions

  • Q1. How to calculate roi?
  • Ans. 

    ROI is calculated by dividing the net profit by the total investment and expressing it as a percentage.

    • ROI = (Net Profit / Total Investment) * 100

    • Net Profit is the total revenue minus the total expenses

    • Total Investment includes all costs associated with the investment

    • ROI helps measure the profitability and efficiency of an investment

    • Example: If a company earns a net profit of $50,000 from an investment of $500,000, the

  • Answered by AI
  • Q2. (A+b/c)*100

Top Samsung Area Sales Manager Interview Questions and Answers

Q1. What is the difference between Galaxy AI and Apple Intelligence?
View answer (1)

Area Sales Manager Interview Questions asked at other Companies

Q1. How to handling position and how to coverage rout and sales teams
View answer (29)

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