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

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

I applied via Referral and was interviewed before Feb 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 - One-on-one 

(2 Questions)

  • Q1. Distribution basics of telecom implementation in CD industry
  • Q2. Reason for leaving previous job

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Distribution basics and Key Account management

Sales & Marketing Interview Questions asked at other Companies

Q1. 1) what are the benefits of mutual fund and why someone should invest in mutual fund rather than direct equity?
View answer (10)

Fire Guard Interview Questions & Answers

user image Anonymous

posted on 7 May 2021

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

Interview Questionnaire 

3 Questions

  • Q1. Had been asked about fire ,fire classes,put off fire methods and fire extinguishers
  • Q2. Read and go through well fire controllable methods
  • Q3. Try to learn about smoke,fire,beam detector and sprinkler systems

Interview Preparation Tips

Interview preparation tips for other job seekers - Never get panic try to be calm and cool should be given answers straight forward and clear prepare well what you mentioned on cv about your skills all the best

Fire Guard Interview Questions asked at other Companies

Q1. How many types of fire? Ans-There are four types of fire.
View answer (1)

Manager Security Administration Facilities Interview Questions & Answers

user image Anonymous

posted on 17 Jun 2023

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

I applied via Naukri.com and was interviewed before Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. What was your failure What is your next plan
Round 3 - HR 

(1 Question)

  • Q1. What was best in your life

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing and never miss your opportunities

I applied via Job Portal and was interviewed before Dec 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

You need to be well versed in Data Structures and Algorithms. The coding round will have a not so straight forward implementation solution. You'll be given 3 hours to solve one question.

Round 3 - One-on-one 

(3 Questions)

  • Q1. Discussions about my past projects.
  • Q2. Deep learning basics, like what algorithm/architecture I had used previously.
  • Q3. Small discussion about the paper I had published
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself, past exp and current salary.
  • Ans. 

    I am an experienced software engineer with a strong background in developing and maintaining software applications.

    • Over 5 years of experience in software development

    • Proficient in multiple programming languages such as Java, C++, and Python

    • Worked on various projects including web development, mobile app development, and database management

    • Strong problem-solving and analytical skills

    • Excellent communication and teamwork a...

  • Answered by AI
  • Q2. Any questions for the HR? Ask atleast 1 question

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm during the interviews. Be prepared to talk about your past projects for 5-10 mins atleast.

Top Samsung Software Engineer Interview Questions and Answers

Q1. Reverse Alternate K nodesYou are given a Singly Linked List of integers and a positive integer 'K'. Modify the linked list by reversing every alternate 'K' nodes of the linked list. A singly linked list is a type of linked list that is unid... read more
View answer (3)

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

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)

Interview Questionnaire 

2 Questions

  • Q1. About mobile
  • Q2. As far working mobile technician experienced

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was based on technical najorly stress test ! Interview wanted to test both of my knowledge and communication skills I wass able to answer most of the questions currently ! I tried to answer each question with example and also used props an to explain my theories! You need to stay calm and should be presence off mind

Mobile Technician Interview Questions asked at other Companies

Q1. Mi note 7 how a display reaplcement
View answer (2)

Get interview-ready with Top Samsung Interview Questions

I was interviewed in Dec 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

This round was scheduled in the evening hours and all the participants were required to fill a form which was shared 15 minutes prior to the start of the online coding round. This form was filled out probably for the security reasons and to ensure that no one disinterested participant gives the test.

  • Q1. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

  • Ans. Brute Force
    • The most trivial approach would be to find all triplets of the array and count all such triplets whose ‘SUM’ = 'K'.
    • We can find the answer using three nested loops for three different indexes and check if the values at those indexes sum up to 'K'.
    • Create a set  to keep the track of triplets we have visited. Run first loop from i = 0 to i = ‘N’ - 3, second loop from j = i + 1 to j = ‘N’ - 2 and third loop ...
  • Answered Anonymously
  • Q2. 

    BST to Greater Tree Conversion

    Convert a given binary search tree (BST) with 'N' nodes into a Greater Tree. In this transformation, each node's data is modified to the sum of the original node's data plus...

  • Ans. Using Stack
    • Using stack, we can perform the reverse inorder traversal on the BST iteratively.
    • Firstly, initialize the temporary variable ‘node’ with the root node, and maintain a variable ‘sum’ with an initial value of 0.
    • Loop through until the stack is empty or the node becomes null.
    • Now iteratively traverse to the rightmost node of the tree and while traversing push each node onto the stack.
    • Now pop an element from the st...
  • Answered Anonymously
Round 2 - Assignment 

Round duration - 30 minutes
Round difficulty - Medium

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in HyderabadEligibility criteriaabove 8 cgpa, CS/IT branches allowedSamsung interview preparation:Topics to prepare for the interview - Recursion, Dynamic programming, OOPS, Sysytem Design, TreesTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 3 major web dev project
Tip 2 : Practice from interview bit

Application resume tips for other job seekers

Tip 1 : Resume should not be more than 1 page
Tip 2 : Be precise and honest

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Samsung Software Developer Intern Interview Questions and Answers

Q1. Remove Consecutive DuplicatesFor a given string(str), remove all the consecutive duplicate characters. Example: Input String: "aaaa" Expected Output: "a" Input String: "aabbbcc" Expected Output: "abc"  Input Format: The first and only... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Jobs at Samsung

View all

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 16 Sep 2021

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

The first Round was held on Hackerrank and the questions were of medium difficulty based on Data Structures and Algorithms.
The time of test was 1:00 PM and it was of 45 minutes with 2 coding questions to be solved.

  • Q1. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

  • Q2. 

    Maximum Product Subarray Problem Statement

    Given an array of integers, determine the contiguous subarray that produces the maximum product of its elements.

    Explanation:

    A subarray can be derived from th...

Round 2 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

The face to face round was held on Google Meet where initially Interviewer asked a DS/Algo problem and then Later Manager Joined and asked about our resume projects in detail.
The time was 10:00 AM

  • Q1. 

    Maximum Sum Rectangle Problem

    Given an M x N matrix of integers ARR, your task is to identify the rectangle within the matrix that has the greatest sum of its elements.

    Input:

    The first line of input co...

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASamsung interview preparation:Topics to prepare for the interview - Dynamic Programming, Data Science, Data Structures, OOPs, DBMS, Graph TheoryTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Prepare OS,DBMS,OOPs too
Tip 2 : Mention atleast one project or past work experience in your resume
Tip 3 : Try maintaining 8+ CGPA as sometimes shortlist is done based on CGPA

Application resume tips for other job seekers

Tip 1 : Try to Keep Resume 1 Pager
Tip 2 : Have atleast one project or past work experience mentioned
Tip 3 : Don't put false things on Resume as questions are asked in detail from Resume

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions asked at other Companies

Q1. Maximum Frequency Number Problem Statement Given an array of integers with numbers in random order, write a program to find and return the number which appears the most frequently in the array. If multiple elements have the same maximum fre... read more
View answer (4)

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 180 minutes
Round difficulty - Easy

1) 1 coding question need to be solved in 3 hours.there will be 50 test cases, need to pass all the test cases to go to the next rounds.STL in c++ cannot be used, we need to code anything we use from scratch


2) Coding questions will mainly be based on dynamic programming, graphs and backtracking, so prepare those topics well.

  • Q1. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

The technical interview 1 has some questions based on basics of oops, Os and one/two coding questions.
Students who clear this round have to go for another technical round

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Q2. 

    Delete a Given Node from Doubly Linked List

    Ninja is learning about doubly linked lists and wants to remove a specified element from the list. Can you assist Ninja in doing this and returning the modified...

Round 3 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

The interview again began with my resume but it was very exhaustive. While my friends were asked about both resume and DSA concepts, my interview focused entirely on my resume. I had done a project on distributed computing and the interviewer asked me an application question on multi-threading and synchronisation. It was quite difficult because I was trying to explain my approach and I couldn’t make out if the interviewer was happy with my approach or not. Then he asked to design a contact database without the actual use of DBMS in java. Again I tried to explain my approach but it was tough. The interview ended after asing one or more coding questions.

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

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was about 30 minutes long interview. First, she asked introduction, after that she was very interested in my internship that I did in summer and about my interests. She asked few common questions on that.


 

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteria7 CGPASamsung interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, oops(c++), dbms, operating systemsTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : learn the graphs,dp,backtracking coding problem to pass the coding round
Tip 2 : brush upon your basics for the interview round
Tip 3 : linked list & tree coding questions are mainly asked in interview

Application resume tips for other job seekers

Tip 1 : Be ready to explain your projects fluently
Tip 2 : Android development knowledge will be beneficial

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

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

Interview Questionnaire 

1 Question

  • Q1. Questions are always basic about yourself, why do you want to join to, why you left previous job

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice, practice and practice. Be clear while speaking. Improve your English, study some topics because then can ask you on social media, global warming, online shopping merit and demerits. For private job seekers make English your primary language and bring some confident in you

Senior Customer Care Associate Interview Questions asked at other Companies

Q1. Introduction What is the full form of BPO? Why you want to join us? What do understand by customer service?
View answer (1)

Interview Questionnaire 

2 Questions

  • Q1. Core java concept and a programme with multithreading, and and some questions of SQL
  • Q2. Some questions related to my project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare oops concepts. And SQL

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
860 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