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

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. It was on phone. One SQL query was asked. Basic programming concepts.
Round 2 - Technical 

(1 Question)

  • Q1. Basic Coding Questions

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)

Interview Questions & Answers

user image Anonymous

posted on 22 Apr 2022

I applied via Recruitment Consulltant and was interviewed in Mar 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 - Technical 

(3 Questions)

  • Q1. As per experience, related my profile.
  • Q2. How to checked and test Electrical equipment.
  • Q3. How to installed panel .

Interview Preparation Tips

Interview preparation tips for other job seekers - I am ready for interview any time.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Coding Test 

C++, DSA, 3 hours should have good knowledge of data structure and algorithms

Round 2 - One-on-one 

(1 Question)

  • Q1. 1. Find the max 3 items in a unsorted array
  • Ans. 

    Find the max 3 items in an unsorted array of strings.

    • Sort the array in descending order.

    • Return the first 3 elements of the sorted array.

  • Answered by AI

Skills evaluated in this interview

Top Samsung Senior Software Engineer Interview Questions and Answers

Q1. How Android buffers are passed from application to drivers.
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Medium Hard Leetcode

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

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)

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)

Round 1 - HR 

(4 Questions)

  • Q1. Information about us
  • Q2. Information about household members
  • Q3. Qualification related information
  • Q4. Work experience Information

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your work well, and give your best in everything.keep up with new things Treat the people of the company as your family.

Apprentice Trainee Interview Questions asked at other Companies

Q1. # Modes of heat transfer and how do they work? #Thermodynamics #performance curve of pump #priming (pump)
View answer (3)

Get interview-ready with Top Samsung Interview Questions

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

I applied via Referral and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is power circuit board
  • Ans. 

    A power circuit board is a board that distributes electrical power to various components in a system.

    • Power circuit boards are used in various electronic devices to regulate and distribute power.

    • They contain components such as resistors, capacitors, and transistors to control the flow of electricity.

    • Power circuit boards are commonly found in computers, televisions, and other electronic devices.

    • They play a crucial role i...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Samsung Electrical Maintenance Engineer interview:
  • PCB
Interview preparation tips for other job seekers - This company is best and best behaviour in all employees.

Electrical Maintenance Engineer Interview Questions asked at other Companies

Q1. Is that you know Digital Multimeter? Show me how to use for different components. They provided me HV diode, HV capacitor, Industrial X'mer etc
View answer (2)

Jobs at Samsung

View all

I appeared for an interview in Aug 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

This was an online coding round where we had 3 questions to solve under 120 minutes. The questions were of medium to hard difficulty level.

  • Q1. 

    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 above each bar by taking the minimum of the maximum heights on the left and right.

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

  • Answered by AI
  • Q2. 

    Shortest Path in a Binary Matrix Problem Statement

    Given a binary matrix of size N * M where each element is either 0 or 1, find the shortest path from a source cell to a destination cell, consisting only...

  • Ans. 

    Find the shortest path in a binary matrix from a source cell to a destination cell consisting only of 1s.

    • Use Breadth First Search (BFS) algorithm to find the shortest path.

    • Initialize a queue with the source cell and keep track of visited cells.

    • Explore all 4 directions from each cell and update the path length accordingly.

    • Return the shortest path length or -1 if no valid path exists.

  • Answered by AI
  • Q3. 

    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 count nodes with both children as NULL.

    • Use recursion to traverse the tree efficiently.

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

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

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

In this round I was first asked 2 questions related to DSA where I was expected to first explain my approach to the interviewer along with proper complexity analysis and then code the implementation in any of my preferred IDE. This was followed by some questions related to OOPS and C++.

  • Q1. 

    Find The Repeating And Missing Number Problem Statement

    You are provided with an array nums which contains the first N positive integers. In this array, one integer appears twice, and one integer is missi...

  • Ans. 

    Given an array of first N positive integers with one number repeating and one missing, find the repeating and missing numbers.

    • Iterate through the array and keep track of the sum of elements and sum of squares to find the missing and repeating numbers.

    • Use a set to identify the repeating number and calculate the missing number based on the sum of elements.

    • Example: For nums = [1, 2, 3, 4, 4, 5], the repeating number is 4

  • Answered by AI
  • Q2. 

    Count Pairs with Given Sum

    Given an integer array/list arr and an integer 'Sum', determine the total number of unique pairs in the array whose elements sum up to the given 'Sum'.

    Input:

    The first line c...
  • Ans. 

    Count the total number of unique pairs in an array whose elements sum up to a given value.

    • Use a hashmap to store the frequency of each element in the array.

    • Iterate through the array and for each element, check if (Sum - current element) exists in the hashmap.

    • Increment the count of pairs if the complement exists in the hashmap.

    • Divide the count by 2 to avoid counting duplicates like (arr[i], arr[j]) and (arr[j], arr[i])

  • Answered by AI
  • Q3. What is the difference between a structure and a union, and what are the pros and cons of both?
  • Ans. 

    Structure and union are both used to group different data types, but structure allocates memory for each member separately while union shares the same memory space for all members.

    • Structure allocates memory for each member separately, while union shares the same memory space for all members.

    • Structures are used when each member needs its own memory space and unions are used when only one member is accessed at a time.

    • Str...

  • Answered by AI
  • Q4. How does C++ support polymorphism?
  • Ans. 

    C++ supports polymorphism through virtual functions and inheritance.

    • C++ supports polymorphism through virtual functions and inheritance

    • Virtual functions allow a function to be overridden in a derived class

    • Base class pointers can point to derived class objects, allowing for dynamic binding

    • Example: class Animal { virtual void speak() { cout << 'Animal speaks'; } }; class Dog : public Animal { void speak() { cout &l...

  • Answered by AI
Round 3 - Video Call 

(5 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 3 questions from DSA which I had to code under 60 minutes and then the interviewer asked some questions from Operating Systems and Android as I did a project in Mobile App Development.

  • Q1. 

    Spiral Order Traversal of a Binary Tree

    Given a binary tree with N nodes, your task is to output the Spiral Order traversal of the binary tree.

    Input:

    The input consists of a single line containing elem...
  • Ans. 

    Implement a function to return the spiral order traversal of a binary tree.

    • Traverse the binary tree level by level, alternating between left to right and right to left.

    • Use a queue to keep track of nodes at each level.

    • Append the values of nodes in each level to the result list in the desired order.

  • Answered by AI
  • Q2. 

    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 with specified operations.

    • Create a stack class with two queue data members.

    • Implement push(data) by enqueuing the data into one of the queues.

    • Implement pop() by dequeuing all elements from one queue to another until the last element is reached and return it.

    • Implement top() by dequeuing all elements from one queue to another until the last element is reached, ret...

  • Answered by AI
  • Q3. 

    Convert a Binary Tree to its Sum Tree

    Given a binary tree of integers, convert it to a sum tree where each node is replaced by the sum of the values of its left and right subtrees. Set leaf nodes to zero.

    ...
  • Ans. 

    Convert a binary tree to a sum tree by replacing each node with the sum of its left and right subtrees.

    • Traverse the tree in postorder fashion.

    • For each node, calculate the sum of its left and right subtrees and update the node value.

    • Set leaf nodes to zero.

    • Return the level order traversal of the modified tree.

  • Answered by AI
  • Q4. What is meant by multitasking and multithreading in operating systems?
  • Ans. 

    Multitasking refers to the ability of an operating system to run multiple tasks concurrently, while multithreading involves executing multiple threads within a single process.

    • Multitasking allows multiple processes to run simultaneously on a single processor, switching between them quickly.

    • Multithreading enables a single process to execute multiple threads concurrently, sharing resources like memory and CPU.

    • Multitasking...

  • Answered by AI
  • Q5. What is Android?
  • Ans. 

    Android is a mobile operating system developed by Google, based on the Linux kernel and designed primarily for touchscreen devices.

    • Developed by Google

    • Based on Linux kernel

    • Designed for touchscreen devices

  • 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)

Sales Officer Interview Questions & Answers

user image Anonymous

posted on 15 Feb 2024

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

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

Round 1 - HR 

(7 Questions)

  • Q1. What's your skill
  • Q2. Tell me about your self
  • Q3. Why are you intrested in this job
  • Q4. Tell me about an experiance when you faced difficulty at working on a project
  • Q5. What are your strenghts and weakness
  • Q6. Where do you see yourself in the next 5 year
  • Q7. Would you like to work overtime or odd hours

Interview Preparation Tips

Interview preparation tips for other job seekers - Good listening, communication Skills, tasking and many more skill

Sales Officer Interview Questions asked at other Companies

Q1. Amit What is Cross sale tell me The Types of Cross sales
View answer (29)

Accountant Interview Questions & Answers

user image Anonymous

posted on 2 Jun 2022

I appeared for an interview in May 2022.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself.
  • Ans. My name is sweety Rajoriya and I am 21 year old. for the past 1 year, I've been working as a Data entry at company Om service. i am graduate i have just completed my studies
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - 'This opportunity is really exciting for me as I will be able to…' 'I see the role as a way of developing my career in a forward-thinking/well-established company/industry as…' 'I feel I will succeed in the role because I have experience in/softs skills that demonstrate/ I've taken this course…'

Accountant Interview Questions asked at other Companies

Q1. What journal is made when purchase requisition is created
View answer (26)

I applied via Recruitment Consulltant

Round 1 - Technical 

(1 Question)

  • Q1. What is the CDU,RDU? How many types card used in CDU And RDU?, Which port is used for login ?
  • Ans. 

    CDU and RDU are types of card readers used in LSMR engineering. Login is done through a specific port.

    • CDU stands for Card Dispenser Unit and RDU stands for Card Reader Unit.

    • CDU and RDU are used in LSMR engineering for reading and dispensing cards.

    • There are different types of cards used in CDU and RDU, such as magnetic stripe cards and EMV chip cards.

    • The port used for login depends on the specific system and configurati...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Knowledge and concepts should be clear.

Lsmr Engineer Interview Questions asked at other Companies

Q1. What is the CDU,RDU? How many types card used in CDU And RDU?, Which port is used for login ?
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