Upload Button Icon Add office photos

Samsung

Compare button icon Compare button icon Compare

Filter interviews by

Samsung Interview Questions and Answers for Freshers

Updated 10 Jul 2025
Popular Designations

123 Interview questions

A Sdet Automation Test Engineer was asked 1mo ago
Q. What status codes are used for API testing?
Ans. 

API status codes indicate the result of an API request, helping to identify success or failure of operations.

  • 200 OK: The request was successful, and the server returned the requested data.

  • 201 Created: The request was successful, and a new resource was created.

  • 400 Bad Request: The server could not understand the request due to invalid syntax.

  • 401 Unauthorized: Authentication is required, and the request has not been...

View all Sdet Automation Test Engineer interview questions
A Software Developer was asked 6mo ago
Q. How do you find the second largest salary in a DBMS?
Ans. 

The second largest salary in a database management system (DBMS) can be found by using the ORDER BY and LIMIT clauses in a SQL query.

  • Use the ORDER BY clause to sort the salaries in descending order

  • Use the LIMIT clause to retrieve the second row in the sorted result set

  • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1,1

View all Software Developer interview questions
A Software Developer was asked 6mo ago
Q. Given an array of numbers, find the sum of the elements closest to the target value.
Ans. 

Calculate the sum of elements in an array that are closest to a given target value.

  • Iterate through the array and calculate the absolute difference between each element and the target value.

  • Keep track of the element with the smallest difference and update the sum accordingly.

  • Return the sum of elements closest to the target value.

View all Software Developer interview questions
A Software Developer Intern was asked 7mo ago
Q. Suppose an array of length n sorted in ascending order is rotated between 1 and n times. Given the sorted rotated array nums, return the minimum element of this array. You must write an algorithm that runs ...
Ans. 

Binary search on rotated array involves finding a target element in a sorted array that has been rotated.

  • Find the pivot point where the array is rotated

  • Determine which half of the array the target element lies in

  • Perform binary search on the appropriate half of the array

View all Software Developer Intern interview questions
A Software Developer Intern was asked 7mo ago
Q. What are the ACID properties in DBMS?
Ans. 

ACID is a set of properties that guarantee database transactions are processed reliably.

  • ACID stands for Atomicity, Consistency, Isolation, Durability.

  • Atomicity ensures that all operations in a transaction are completed successfully or none at all.

  • Consistency ensures that the database remains in a consistent state before and after the transaction.

  • Isolation ensures that multiple transactions can be executed concurre...

View all Software Developer Intern interview questions
A Senior Engineer was asked
Q. What does the piping at suction look like?
Ans. 

Piping at suction typically includes a strainer, isolation valve, and a suction line connected to the pump.

  • Includes a strainer to prevent debris from entering the pump

  • Isolation valve for maintenance purposes

  • Suction line connected to the pump for fluid intake

View all Senior Engineer interview questions
A Software Engineer was asked
Q. Tell me about the Spark architecture and data modeling.
Ans. 

Spark architecture is a distributed computing system that provides high-level APIs for big data processing.

  • Spark architecture consists of a cluster manager, a distributed storage system, and a computing engine.

  • Data in Spark is represented as Resilient Distributed Datasets (RDDs) or DataFrames.

  • Spark supports various data models, including batch processing, streaming, machine learning, and graph processing.

  • Spark's a...

View all Software Engineer interview questions
Are these interview questions helpful?
An Intern was asked
Q. Given two sorted arrays, merge them into one sorted array.
Ans. 

Merge two sorted arrays into a single sorted array

  • Create a new array to store the merged result

  • Iterate through both arrays simultaneously and compare elements to add to the new array

  • Handle cases where one array is longer than the other

View all Intern interview questions
An Intern was asked
Q. Write a function to add a new node with a given value to a Binary Search Tree (BST).
Ans. 

To add a node to a binary search tree (BST), compare the value of the new node with the current node and traverse left or right accordingly until a suitable spot is found.

  • Start at the root node

  • Compare the value of the new node with the current node

  • If the new node value is less than the current node, move to the left child node

  • If the new node value is greater than the current node, move to the right child node

  • Repea...

View all Intern interview questions
A Software Developer was asked
Q. What is the basic role of JAVA in software development?
Ans. 

JAVA is a versatile programming language used for developing various software applications.

  • JAVA is platform-independent and can run on any operating system

  • It is object-oriented and supports multithreading

  • JAVA is widely used for developing web applications, mobile applications, and enterprise software

  • It provides a vast library of pre-built classes and APIs for developers to use

  • JAVA is also used for developing games...

View all Software Developer interview questions

Samsung Interview Experiences for Freshers

121 interviews found

Chief Manager Interview Questions & Answers

user image Anonymous

posted on 19 Feb 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Share your entire work experiences and challenges and howvwe responded
  • Ans. 

    I have over 10 years of experience in various management roles, facing challenges such as team conflicts and budget constraints.

    • Managed a team of 20 employees, resolving conflicts through open communication and team-building activities

    • Implemented cost-saving measures to address budget constraints, resulting in a 15% reduction in expenses

    • Led a project to streamline processes, overcoming resistance to change by involving...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Required depth subject knowledge pertaining to your position
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jul 2024, where I was asked the following questions.

  • Q1. He ask me about product knowledge
  • Q2. How to handle customer and asking thear need and canverd to avoiding to ask

Interview Preparation Tips

Interview preparation tips for other job seekers - Customer first fall you have to grave the knowledge about product and how to handle customer and ther queries

Software Developer Interview Questions & Answers

user image Priyadharshini AP

posted on 19 Dec 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Array based coding test
  • Q2. Second largest salary in DBMS
  • Q3. Sum of elements close to target
  • Ans. 

    Calculate the sum of elements in an array that are closest to a given target value.

    • Iterate through the array and calculate the absolute difference between each element and the target value.

    • Keep track of the element with the smallest difference and update the sum accordingly.

    • Return the sum of elements closest to the target value.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy Binary search and tree questions were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Binary search on rotated array
  • Ans. 

    Binary search on rotated array involves finding a target element in a sorted array that has been rotated.

    • Find the pivot point where the array is rotated

    • Determine which half of the array the target element lies in

    • Perform binary search on the appropriate half of the array

  • Answered by AI
  • Q2. ACID in dbms was asked
  • Ans. 

    ACID is a set of properties that guarantee database transactions are processed reliably.

    • ACID stands for Atomicity, Consistency, Isolation, Durability.

    • Atomicity ensures that all operations in a transaction are completed successfully or none at all.

    • Consistency ensures that the database remains in a consistent state before and after the transaction.

    • Isolation ensures that multiple transactions can be executed concurrently ...

  • Answered by AI

Skills evaluated in this interview

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Copy a string. This was supposed to be done using for loop and extracting character by character and concatenating.
  • Ans. 

    This function copies a string character by character using a for loop and concatenates them into a new string.

    • Use a for loop to iterate through each character of the original string.

    • Initialize an empty string to hold the copied characters.

    • Concatenate each character to the new string during each iteration.

    • Return the new string after the loop completes.

    • Example: For input 'hello', output will be 'hello'.

  • Answered by AI
  • Q2. Status codes used for API testing.
  • Ans. 

    API status codes indicate the result of an API request, helping to identify success or failure of operations.

    • 200 OK: The request was successful, and the server returned the requested data.

    • 201 Created: The request was successful, and a new resource was created.

    • 400 Bad Request: The server could not understand the request due to invalid syntax.

    • 401 Unauthorized: Authentication is required, and the request has not been appl...

  • Answered by AI

SDE Intern Interview Questions & Answers

user image Anonymous

posted on 6 Nov 2024

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

I applied via Job Portal and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

One question 3 hours. 10 submissions allowed. Question comes from github repository.

Round 2 - HR 

(1 Question)

  • Q1. What are your strengths and weakness?

Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - HR 

(1 Question)

  • Q1. How do your values align with the values of the company?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Discussion about my previous work. GPU speccific questions, C++, OS and C questions as this was for a GPU drivers role
  • Q2. Bit manipulation C++
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Can you provide some information about yourself?
  • Ans. 

    Dedicated Service Executive with a passion for customer satisfaction and a proven track record in problem-solving and communication.

    • Over 5 years of experience in customer service roles, enhancing client relationships and ensuring satisfaction.

    • Skilled in conflict resolution, successfully de-escalated a situation with an unhappy customer, resulting in a positive outcome.

    • Proficient in using CRM software to track customer ...

  • Answered by AI
  • Q2. What motivates you to seek a position at Samsung?
  • Ans. 

    I'm motivated by Samsung's innovation, commitment to quality, and the opportunity to contribute to a global leader in technology.

    • Samsung's reputation for innovation inspires me; I admire their cutting-edge technology like the Galaxy series.

    • The company's commitment to sustainability aligns with my values; I want to be part of initiatives that promote eco-friendly practices.

    • Working in a diverse and dynamic environment at...

  • Answered by AI

Intern Interview Questions & Answers

user image Anonymous

posted on 11 Feb 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 medium level DSA questions based on Arrays, priority queue and DP

Round 2 - Technical 

(2 Questions)

  • Q1. Discussion on Projects, one medium DSA question and operating system
  • Q2. Questions based on Implementation of Stacks, queues and linked list, discussion on projects
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to Join company
  • Q2. Basic strength weakness questions quite easy, lasted on a phone call for 10 mins

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Samsung?
Ask anonymously on communities.

Samsung Interview FAQs

How many rounds are there in Samsung interview for freshers?
Samsung interview process for freshers usually has 2-3 rounds. The most common rounds in the Samsung interview process for freshers are Resume Shortlist, Technical and One-on-one Round.
How to prepare for Samsung interview for freshers?
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 Manual Testing, Ad Operations, Black Box Testing, Business Process Management and Campaign Management.
What are the top questions asked in Samsung interview for freshers?

Some of the top questions asked at the Samsung interview for freshers -

  1. What do you think is an area of improvement for y...read more
  2. What is feedback in amplifiers? What are the types of feedbac...read more
  3. Write a C program that will COMPILE and RUN to reverse a string in-pl...read more
What are the most common questions asked in Samsung HR round for freshers?

The most common HR questions asked in Samsung interview are for freshers -

  1. Why should we hire y...read more
  2. Where do you see yourself in 5 yea...read more
  3. What are your salary expectatio...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.

Overall Interview Experience Rating

4.3/5

based on 35 interview experiences

Difficulty level

Easy 36%
Moderate 52%
Hard 12%

Duration

Less than 2 weeks 71%
2-4 weeks 13%
4-6 weeks 8%
6-8 weeks 4%
More than 8 weeks 4%
View more

Interview Questions from Similar Companies

Dell Interview Questions
3.9
 • 405 Interviews
HARMAN Interview Questions
3.8
 • 277 Interviews
OPPO Interview Questions
4.0
 • 230 Interviews
LG Electronics Interview Questions
3.9
 • 228 Interviews
vivo Interview Questions
4.1
 • 209 Interviews
Philips Interview Questions
3.8
 • 169 Interviews
Apple Interview Questions
4.3
 • 150 Interviews
Voltas Interview Questions
4.0
 • 149 Interviews
View all

Samsung Reviews and Ratings

based on 7.7k reviews

3.9/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

3.8

Salary

3.6

Job security

3.6

Company culture

3.2

Promotions

3.6

Work satisfaction

Explore 7.7k Reviews and Ratings
Ultrasound Application Specialist

Chennai

4-9 Yrs

Not Disclosed

Area Business Manager

Bangalore Rural

7-12 Yrs

Not Disclosed

Area Business Manager

Mangaluru,

Bangalore Rural

6-11 Yrs

₹ 14.1-27 LPA

Explore more jobs
Assistant Manager
1k salaries
unlock blur

₹9.3 L/yr - ₹15.1 L/yr

Software Engineer
949 salaries
unlock blur

₹11.6 L/yr - ₹20 L/yr

Sales Executive
893 salaries
unlock blur

₹1.8 L/yr - ₹5.5 L/yr

Manager
520 salaries
unlock blur

₹15.5 L/yr - ₹28.3 L/yr

Senior Engineer
470 salaries
unlock blur

₹7.9 L/yr - ₹14.7 L/yr

Explore more salaries
Compare Samsung with

Apple

4.3
Compare

vivo

4.1
Compare

OPPO

4.0
Compare

Dell

3.9
Compare
write
Share an Interview