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

Trainer Interview Questions & Answers

user image Anonymous

posted on 16 Sep 2022

I applied via Referral and was interviewed before Sep 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 - HR 

(1 Question)

  • Q1. Past overall experience with education
Round 3 - Technical 

(1 Question)

  • Q1. Techanical questions about product technology
Round 4 - One-on-one 

(1 Question)

  • Q1. Panel interview with product head

Interview Preparation Tips

Interview preparation tips for other job seekers - Just shows your skill and you are quick learner

Trainer Interview Questions asked at other Companies

Q1. Many times you know that customer will be angry or rude if you give the correct solution then how to manage for customer satisfaction?
View answer (2)

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

Intern Interview Questions & Answers

user image Anonymous

posted on 5 Sep 2021

I applied via Campus Placement and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What are your biggest strengths?

Interview Preparation Tips

Interview preparation tips for other job seekers - The Ability to never give up

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

I was interviewed in Oct 2020.

Round 1 - Face to Face 

(5 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round was a face to face round held on Cisco webex.
This round was completely on DS-Algo and OOPS.
The level of the questions asked was from medium level to hard level.

  • 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. Approach 1
    • This method ensures that every new element entered in the queue ‘q1’ is always at the front.
    • Hence, during pop operation, we just dequeue from ‘q1’.
    • For this, we need another queue ‘q2., which is used to keep every new element to the front of ‘q1’.
    • During push operation :
      • Enqueue new element ‘x’ to queue ‘q2’.
      • One by one, dequeue everything from ‘q1’ and enqueue to ‘q2’.
      • Swap the names of ‘q1’ and ‘q2’.
    • During pop o...
  • Answered Anonymously
  • Q2. 

    Remove Duplicates from String Problem Statement

    You are provided a string STR of length N, consisting solely of lowercase English letters.

    Your task is to remove all duplicate occurrences of characters i...

  • Ans. 

    I provided both recursive and iterative solution

     

  • Answered Anonymously
  • Q3. 

    Palindrome Linked List Problem Statement

    You are provided with a singly linked list of integers. Your task is to determine whether the given singly linked list is a palindrome. Return true if it is a pali...

  • Ans. 

    Was not able to provide the optimized solution using stack. The interviewer gave hints but I was not able to provide optimized solution.

  • Answered Anonymously
  • Q4. 

    Word Search Problem Statement

    Given a two-dimensional grid with 'N' rows and 'M' columns consisting of uppercase characters, and a string 'WORD', your task is to determine the number of times the word app...

  • Ans. 

    He only asked for explanation that how would I implement Tries.

     

  • Answered Anonymously
  • Q5. 

    Merge Sort Problem Statement

    You are given a sequence of numbers, ARR. Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Explanation:

    The Merge Sort...

  • Ans. 

    I was able to provide the optimized solution which requires O(1) space.

  • Answered Anonymously

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 - Intern in NoidaEligibility criteria8 CGPASamsung interview preparation:Topics to prepare for the interview - Resume, C++, Data Structures and Algorithms, Projects, OOPS, Operating System, Database management system, System DesignTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare your resume well. 
Tip 2 : Deploy your projects so that the interviewer can view it. Also provide a hyperlink on your resume.
Tip 3 : Be thorough with Data Structures and Algorithms. Also prepare well topics such as OS,DBMS.

Application resume tips for other job seekers

Tip 1 : Deploy your projects so that the interviewer can view it. Also provide a hyperlink on your resume
Tip 2 : It's not important to have fancy projects. Only mention those on which you're confident.

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)

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 Campus Placement and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Something ask about my theory
  • Q2. What is refrigeration?
  • Ans. 

    Refrigeration is a process of removing heat from a space or substance to lower its temperature.

    • Refrigeration involves the transfer of heat from one location to another.

    • It is used to preserve perishable items by keeping them at low temperatures.

    • Refrigeration systems typically consist of a compressor, condenser, expansion valve, and evaporator.

    • Examples of refrigeration include refrigerators, air conditioners, and industr

  • Answered by AI
  • Q3. What is 1 ton . explain briefly?
  • Ans. 

    1 ton is a unit of measurement used in refrigeration to indicate the cooling capacity of an air conditioning system.

    • 1 ton refers to the amount of heat required to melt one ton (2,000 pounds) of ice in 24 hours.

    • It is equivalent to 12,000 British Thermal Units (BTUs) per hour.

    • A 1-ton air conditioner can cool approximately 400-600 square feet of space.

    • The cooling capacity of an air conditioning system is often measured in

  • Answered by AI
  • Q4. Explain work function of thermostate?
  • Ans. 

    Thermostat regulates temperature by turning heating or cooling system on/off based on set temperature.

    • Thermostat senses temperature and compares it to the set temperature

    • If the temperature is too high, the thermostat turns on the cooling system

    • If the temperature is too low, the thermostat turns on the heating system

    • Once the temperature reaches the set temperature, the thermostat turns off the system

    • Thermostats can be p

  • Answered by AI
  • Q5. What is deffrent between suction and discharge line
  • Ans. 

    The suction line carries low-pressure refrigerant vapor from the evaporator to the compressor, while the discharge line carries high-pressure refrigerant vapor from the compressor to the condenser.

    • The suction line is larger in diameter compared to the discharge line.

    • The suction line carries refrigerant vapor at low pressure and low temperature.

    • The discharge line carries refrigerant vapor at high pressure and high tempe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have bielve in hard work not luck.

Refrigeration Operator Interview Questions asked at other Companies

Q1. What is deffrent between suction and discharge line
View answer (2)

Get interview-ready with Top Samsung Interview Questions

Coustomer Service Officer Interview Questions & Answers

user image Anonymous

posted on 17 Nov 2020

Interview Questionnaire 

3 Questions

  • Q1. How should you prepare yr interview to person
  • Q2. Do you hssitage her/him
  • Q3. Do you feel around to nervousness to person

Interview Preparation Tips

Interview preparation tips for other job seekers - I think you should feel around to good don't ask to question fast ask to one by one don't see wht they look like see confidence to her/him by face.

Jobs at Samsung

View all

Promoter Interview Questions & Answers

user image Anonymous

posted on 30 Aug 2022

I applied via campus placement at Dr Ram Manohar Lohia Avadh University, Faizabad and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Getting A Job At Samsung

Round 2 - Technical 

(1 Question)

  • Q1. What is the name full name of Ram?
  • Ans. 

    Ram is a common name in India and can refer to many people. It is not possible to determine the full name of Ram without additional context.

    • Ram is a common first name in India

    • There are many people with the first name Ram, so the full name would depend on the individual

    • Some common full names for Ram include Ramakrishna, Ramachandra, and Ramakant

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Samsung Promoter interview:
  • Organise your documents....
  • Review the job description...
  • Learn more about the company...
  • Updated your social media profil
Interview preparation tips for other job seekers - *Market your self ...
*Apply even if you're not fully qualified....
*Job search like it's your job....

Promoter Interview Questions asked at other Companies

Q1. How to sell a mobile phone to a customer?
View answer (5)

I applied via Naukri.com and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is future in tech?
  • Ans. 

    The future in tech is filled with advancements in artificial intelligence, automation, virtual reality, and internet of things.

    • Artificial intelligence will continue to evolve and impact various industries.

    • Automation will revolutionize the way we work and increase efficiency.

    • Virtual reality will transform entertainment, gaming, and even education.

    • Internet of things will connect devices and enable smart homes and cities.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Maintain your data
learn lot of new things

Seiner Executive Interview Questions asked at other Companies

Q1. What is future in tech?
View answer (2)

Fire Officer Interview Questions & Answers

user image Anonymous

posted on 18 Aug 2021

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

Interview Questionnaire 

1 Question

  • Q1. Fire Standards

Interview Preparation Tips

Interview preparation tips for other job seekers - Fire Standards knowledge is must.
Extinguisher installation
Hydrant installation
Hose reel installation
Sprinkler installation
Fire tank installation

Fire Officer Interview Questions asked at other Companies

Q1. What' is tha fire and how many extinguiser of fire fighting
View answer (1)

I applied via Walk-in and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is your name
  • Q2. Prakash

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one but was majorly a stress test. It lasted for about 1 hour 10 minutes. The interviewer wanted to test both my knowledge and communication

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