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 11 Feb 2025

Top Samsung 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, consi ...read more
    asked in Software Developer interview
  • Q2. Remove Consecutive Duplicates Problem Statement For a given string str , remove all the consecutive duplicate characters. Example: Input: Input String: "aaaa" Output: Ex ...read more
    asked in Software Developer Intern interview
  • Q3. 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 re ...read more
    asked in Software Engineer interview
View all 395 questions

Samsung Interview Experiences

Popular Designations

556 interviews found

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

The round consisted of 3 questions of medium difficulty to be completed in 60 minutes.

  • Q1. 

    Minimum Insertions to Make a Palindrome

    Given a string STR of length N composed of lowercase English letters, your task is to determine the minimum number of characters that need to be added to make the s...

  • Q2. 

    Cousins of a Given Node in a Binary Tree

    Given a binary tree with 'N' nodes and a specific node in this tree, you need to determine and return a sorted list of the values of the node's cousins. The cousin...

  • Q3. 

    Move All Negative Numbers To Beginning

    Rearrange a given array 'ARR' with 'N' integers so that all negative numbers appear before all positive numbers.

    Follow Up:
    Can you solve this in O(1) auxiliary sp...
Round 2 - Face to Face 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

One interviewer asked the same question to two of us.
Both of us could qualify if we solved it correctly.

  • Q1. 

    Convert Binary Tree to Mirror Tree

    Convert a given binary tree into its mirror tree, where the left and right children of all non-leaf nodes are interchanged.

    Input:

    An integer ‘T’ denoting the number o...

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Jadavpur University. I applied for the job as SDE - Intern in BangaloreEligibility criteriaAbove 7.5 CGPASamsung interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, DBMS, NetworkingTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Before diving aimlessly into a sea of questions, try to create a roadmap for yourself. This roadmap will take into account your strengths and weaknesses and you should be allotting time accordingly.
Tip 2 : Companies like Samsung do check your resume and grill you accordingly. Make sure to have atleast 3 projects with 1 of them being pretty good.
Tip 3 : Ideally, all your projects should be deployed publicly: either on Github/Heroku/Kaggle/App Store depending on the type of development. This will give you an advantage over others.

Application resume tips for other job seekers

Tip 1 : Try not to lie. Only put things you are extremely confident about. You don't want to get blacklisted by the company.
Tip 2 : Try not to put trivial skills like Git/Github. Every developer is expected to know of these.
Tip 3 : Do not make any spelling mistakes on your CV. This just goes to show your carelessness.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

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

I was interviewed before Sep 2020.

Round 1 - Coding Test 

Round duration - 180 minutes
Round difficulty - Medium

In this round, you have to do a coding question on Samsung Coding Platform, which was installed earlier on our lab's system by the company guys. There is only a single question and time limit is of 3 hrs. There are 50 test cases, and you have to pass all the test cases in order to get selected for next round. Also you cannot use any inbuilt library and you have to implement everything from scratch (like stack, queue, hashmap, etc). You can test your code on sample test cases multiple times but the submission limit in only 5, to test the hidden test cases.
Note : Even passing 49 test cases will lead to rejection.

Round 2 - Face to Face 

(3 Questions)

Round duration - 30 minutes
Round difficulty - Medium

There were two questions based on data structures and algorithms and some discussion on the Projects mentioned in resume (Major Project based on Arduino - It's programming and its functionality) .

  • Q1. 

    Rain Water Trapping Problem Statement

    Given an array/list ARR of size N, representing an elevation map where each element ARR[i] denotes the elevation of the i-th bar. Your task is to calculate and print ...

  • Ans. 

    Firstly tried using Brute force approach.
    Then I was asked to optimize the space complexity and do it in O(1) space comlpexity.
    Was able to code on paper in time.

  • Answered Anonymously
  • Q2. 

    Implement a Stack using Queues

    Create a Stack data structure designed specifically to store integer data using two queues.

    Explanation:

    You need to implement a stack using two internal queues. You can u...

  • Ans. 

    It was a pretty straightforward question.

  • Answered Anonymously
  • Q3. 

    Implement a Stack Using Two Queues

    You are tasked with implementing a Stack data structure specifically designed to store integer data using two Queues. Utilize the inbuilt Queue for this purpose.

    Functio...

  • Ans. 

    It was a pretty straightforward question.

  • Answered Anonymously
Round 3 - Face to Face 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Medium

There were two coding questions and I had to write the code on paper. 
After that there was a discussion on OOPS concepts like polymorphism and Inheritance.
The interviewer also discussed about padding concept in structures (Indirectly via an example).

  • Q1. 

    Maximum Gold Collection from Gold Mine

    Imagine a gold mine represented by a 2D matrix with dimensions 'N' by 'M', where 'N' is the number of rows and 'M' is the number of columns. Each cell in this matrix...

  • Ans. 

    1. Create a 2-D matrix goldTable[][]) of the same as given matrix mat[][].

    2. Amount of gold is positive, so we would like to cover maximum cells of maximum values under given constraints.
    In every move, we move one step toward right side. So we always end up in last column. If we are at the last column, then we are unable to move right.

    3. If we are at the first row or last column, then we are unable to move right-up so ...

  • Answered Anonymously
  • Q2. 

    Rod Cutting Problem Statement

    Given a rod of length 'N' units, you can cut the rod into different sizes, each with a specific cost associated. The task is to determine the maximum obtainable cost by cutti...

  • Ans. 

    First I tried to solve using recursive approach by considering all the possible combinations. Interviewer asked to optimize the solution as the time complexity was exponential.
    I observed that we can store the previous answers in an array. Thus I was able to solve the problem using an extra array using dynamic programming concept. I was asked to write the optimized code on paper.

  • Answered Anonymously
Round 4 - HR 

Round duration - 15 minutes
Round difficulty - Easy

Interviewer was friendly. He asked why Samsung, are you comfortable relocating to Bangalore. Also asked about my experience in previous rounds.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in BangaloreEligibility criteria7 CGPASamsung interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS, DBMS, Operating Systems, Dynamic ProgrammingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Do practice a lot of coding problems specially Dynamic Programming. I pursued Coding Ninjas Interview preparation Course for cracking the interviews. Also prepared for DBMS, Operating systems and OOPS from Coding Ninjas notes.
Tip 2 : Always start with Brute force approach and then try to optimize it. Practice problems on paper more.
Tip 3 :Be confident during the interview and interact with the interviewer.

Application resume tips for other job seekers

Tip 1:Keep your Resume short and crisp, in 1 Page. Have a complete understanding of the Projects mentioned in your resume.
Tip 2:Your interview always revolves around your resume. Go through it thoroughly before the interview.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Samsung Software Developer Interview Questions and Answers

Q1. Minimum Time in Wormhole NetworkYou will be given a starting point (sx, sy) and a destination point (dx, dy) in the two-dimensional coordinate system representing the universe. Your spacecraft can move only in X(left or right) or Y(up or do... read more
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

I applied via Walk-in and was interviewed before Mar 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about your self
  • Q2. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - B confident speak as much as u can don't miss your words your descriptions

Customer Service Executive Interview Questions asked at other Companies

Q1. How u deal to the customer if he get non veg food instead of veg food ?
View answer (34)

Sales Interview Questions & Answers

user image Anonymous

posted on 10 Oct 2020

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

Interview Questionnaire 

1 Question

  • Q1. Technical questions about mobiles

Interview Preparation Tips

Interview preparation tips for other job seekers - Who are going interview they should prepare well

Sales Interview Questions asked at other Companies

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

Samsung interview questions for popular designations

 Software Engineer

 (53)

 Software Developer

 (39)

 Research and Development

 (15)

 Sales Executive

 (12)

 Software Developer Intern

 (12)

 Intern

 (9)

 Senior Software Engineer

 (9)

 Area Sales Manager

 (8)

I applied via No and was interviewed before Jul 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Hazard kya hay work at height kya hay hierarchy ke bare me bataiye safety policy ke bare me kya jante ho excavation ke bare me kya jante hay risk defin with example safety sampling ke bare me bataiye

Interview Preparation Tips

Interview preparation tips for other job seekers - No advance

Safety Supervisor, Safety Officer Interview Questions asked at other Companies

Q1. What is positive isolation?
View answer (3)

Get interview-ready with Top Samsung Interview Questions

I was interviewed in Jun 2019.

Interview Questionnaire 

1 Question

  • Q1. What is bfs , and solve given problem with it? What is copy constructer? Kubernetes? Docker? Socket? Tcp/up?
  • Ans. 

    Answering questions related to bfs, copy constructor, Kubernetes, Docker, Socket, TCP/UP

    • BFS stands for Breadth First Search, a graph traversal algorithm

    • Copy constructor is a special constructor that creates a new object as a copy of an existing object

    • Kubernetes is an open-source container orchestration platform

    • Docker is a platform for developing, shipping, and running applications in containers

    • Socket is a software endp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is easy if you cleared their test swc test.

Skills evaluated in this interview

Core Network Engineer Interview Questions asked at other Companies

Q1. What is bfs , and solve given problem with it? What is copy constructer? Kubernetes? Docker? Socket? Tcp/up?
View answer (1)

Jobs at Samsung

View all

I applied via Naukri.com and was interviewed before Mar 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Do the study about samsung equipment like cdu,RDU,rru,rrh,cipri, Cisco routers Asr series 910/920, microwave radio commissioning .

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident always it's not matter you know the answer of that question or not.

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)

I applied via Company Website and was interviewed before Jan 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Can u give all the answers of the questions in english
  • Q2. I say i well try my best to gave all the answers in english, they only want to see it out the reaction on me on this question so the Samsung provide me the opportunity to grew up the skills, Thank u

Interview Preparation Tips

Interview preparation tips for other job seekers - Give up all the answer in the free up way give each and every answer point to point what ever u have to be asked question on ur details..

Samsung experience Consultant Interview Questions asked at other Companies

Q1. What is hospital pharmacy
View answer (1)

ASE Interview Questions & Answers

user image Anonymous

posted on 2 May 2019

I applied via Referral and was interviewed before May 2018. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Knowledge about computer like excel and its use in current marketing condition.
  • Q2. If yes den why, can be on any situation

Interview Preparation Tips

General Tips: Nothing exclusive, I was myself and was really calm in the room. It's important to get some knowledge and market scenario regarding the companies with their completions, a nice smile always helps, it's important to say no or i dnt have proper info regarding certain topics asked then rather pretending to know the answer.
Skills: Communication, Leadership, Decision Making Skills
Duration: <1 week

ASE Interview Questions asked at other Companies

Q1. Given N gold wires, each wire has a length associated with it. At a time, only two adjacent small wires are assembled at the end of a large wire and the cost of forming is the sum of their length. Find the minimum cost when all wires are as... read more
View answer (2)

I applied via Referral and was interviewed before Oct 2017. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. When I went to the interview, first I filled out a form and then I was called and the hr asked me about my past job experience and I answered all the questions. Then hr told me that you got selected Yes, b...

Interview Preparation Tips

General Tips: My interview experience was very good, I got to learn a lot from my interviewer and got the advice of doing good in my life.
Duration: <1 week

Sales Executive/Officer Interview Questions asked at other Companies

Q1. If customer will be angry to you then what will you do
View answer (4)

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 388 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Dell Interview Questions
4.0
 • 391 Interviews
HARMAN Interview Questions
3.8
 • 257 Interviews
LG Electronics Interview Questions
4.0
 • 192 Interviews
Apple Interview Questions
4.3
 • 141 Interviews
Xiaomi Interview Questions
3.8
 • 86 Interviews
Sony Interview Questions
4.2
 • 65 Interviews
Lenovo Interview Questions
4.2
 • 38 Interviews
View all

Samsung Reviews and Ratings

based on 7.1k 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.3

Promotions

3.6

Work satisfaction

Explore 7.1k Reviews and Ratings
Ad Sales

Mumbai

5-7 Yrs

Not Disclosed

Area Business Manager

Mangaluru

5-10 Yrs

Not Disclosed

Explore more jobs
Sales Executive
1.1k salaries
unlock blur

₹1 L/yr - ₹6.9 L/yr

Assistant Manager
1k salaries
unlock blur

₹5.5 L/yr - ₹19 L/yr

Software Engineer
863 salaries
unlock blur

₹6.2 L/yr - ₹25 L/yr

Manager
535 salaries
unlock blur

₹10 L/yr - ₹32.9 L/yr

Senior Engineer
478 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