Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Samsung SDS Team. If you also belong to the team, you can get access from here

Samsung SDS Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Samsung SDS Software Developer Intern Interview Questions and Answers

Updated 15 May 2024

Samsung SDS Software Developer Intern Interview Experiences

5 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Online HackerRank 2 coding and 30 MCQ based test

Round 2 - Technical 

(1 Question)

  • Q1. Questions like sorting techniques and their worst case time complexity comparison, hashmap, grid question based on dfs
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 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 Resume tips
Round 2 - Aptitude Test 

Aptitude + Coding Round (Easy)

Round 3 - One-on-one 

(3 Questions)

  • Q1. Interview with basic oops, SQL, DSA
  • Q2. What is OOPS, Ranking in DBMS.
  • Ans. 

    OOPS stands for Object-Oriented Programming System. Ranking in DBMS refers to the ordering of data in a database table.

    • OOPS is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • Ranking in DBMS refers to the process of arranging data in a specific order based on certain criteria, such as numerical values or alphabetical order.

    • Examples ...

  • Answered by AI
  • Q3. Questions from Resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't take inter offer if you have PPO from other company. They hired 150 interns in 2023 and selected only 22 for PPO and that too with joinings being late. They have a Advanced Samsung Software Test to get PPO, but in 2023 80 interns cleared it and they hired only 23.

Skills evaluated in this interview

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more
Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell about yourself
  • Q2. Tell about the projects you have done
  • Q3. Verbal approach for 2 sum problem

I applied via Campus Placement and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1) Firstly they asked questions related to projects. 2) Basics of java - oops concepts, exception handling, garbage collections. 3) DS/Algo - searching sorting algos, time complexities. 4) BDMS basic quest...

Interview Preparation Tips

Topics to prepare for Samsung SDS Software Developer Intern interview:
  • Core Java
  • DBMS
  • Data Structures
  • Algorithms
Interview preparation tips for other job seekers - This round was for internship program at Samsung SDS and after internship there happens a software test of high level and on the basis of that FTE is offered.
So for clearing intership round you just need to have your basics right.

Samsung SDS interview questions for designations

 Intern

 (2)

 Software Engineer

 (1)

 SQL Developer

 (1)

 Senior Software Tester

 (1)

 Devops Engineer

 (1)

 Sde1

 (1)

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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Coding question and general questions
Round 3 - HR 

(1 Question)

  • Q1. Intro, ready to relocate

Interview Preparation Tips

Interview preparation tips for other job seekers - After rejected by 4 companies I get placed in Samsung

Interview questions from similar companies

I was interviewed before Sep 2016.

Interview Preparation Tips

Round: Test
Experience: This was a group test. We were asked to answer and complete all questions from both sections. Test was conducted in TCS campus in Pune
Tips: Learning basic level Maths and English will help clear this test
Duration: 2 hours
Total Questions: 45

Round: Test Selection
Experience: This was a direct shortlist from all who cleared the test

College Name: Sinhgad Academy of Engineering

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. 

    Counting Even and Odd Occurrences

    You are provided with an array or list of integers named ARR of size N. The task is to determine two things:

    1. How many elements appear an odd number of times?
    2. How many...
  • Ans. 

    Count the number of elements with odd and even occurrences in an array of integers.

    • Iterate through the array and use a hashmap to store the count of each element.

    • After counting, iterate through the hashmap to determine odd and even occurrences.

    • Return the counts of elements with odd and even occurrences.

  • Answered by AI
  • Q2. 

    Delete Nodes with Greater Values On Right

    You are given a singly linked list where each node contains an integer value and a reference to the next node or NULL if it is the last node. The task is to remov...

  • Ans. 

    Remove nodes in a singly linked list with a greater value on the right.

    • Traverse the linked list and compare each node's value with the values of nodes to its right.

    • If a node has a greater value on the right, remove it from the linked list.

    • Update the references of the previous node to skip the removed node.

  • Answered by AI

Interview Preparation Tips

Eligibility criteria6+ CGPATech Mahindra interview preparation:Topics to prepare for the interview - Data Structures, OOPS, DBMS, OOPs, Algorithms, DP, GreedyTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Try solving Love Babbar 450 Prog questions
Tip 2 : Have a good resume
Tip 3 : Do learn some extra technologies eg. ML/AI

Application resume tips for other job seekers

Tip 1 : Do not lie at all
Tip 2 : Have some projects listed

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

It is from 12 to 1:30 pm. Environment was very friendly and interviewer was very nice.

  • Q1. 

    Nth Term of Geometric Progression Problem

    Given the first term A, the common ratio R, and an integer N, your task is to find the Nth term of a geometric progression (GP) series.

    Explanation:

    The general...

  • Ans. 

    Calculate the Nth term of a geometric progression series modulo 10^9 + 7.

    • Use the formula A * R^(N-1) to find the Nth term of the GP series.

    • Remember to calculate the result modulo 10^9 + 7.

    • Handle multiple test cases efficiently to stay within the time limit.

  • Answered by AI
Round 2 - Face to Face 

Round duration - 90 minutes
Round difficulty - Easy

Very friendly environment 

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Netaji Subhas University Of Technology. I applied for the job as SDE - Intern in GurgaonEligibility criteriaAbove 6 CGPAWipro Limited interview preparation:Topics to prepare for the interview - Array,Recursion,Maths,Pointer and stringsTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice DS algorithm
Tip 2 : Practice as many question you can 
Tip 3 : Also practice different MCQ question

Application resume tips for other job seekers

Tip 1 : Write only things you know 
Tip 2 : Be truthful with your resume

Final outcome of the interviewSelected
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Project discussion

Interview Preparation Tips

Topics to prepare for LTIMindtree Software Developer Intern interview:
  • Node.Js
  • React.Js

I was interviewed in Dec 2020.

Round 1 - Video Call 

(3 Questions)

Round duration - 45 Minutes
Round difficulty - Easy

This round was held on Google Meet Video Call at 10 A.M.
There were 2 Interviewers and they were very helpful.

  • Q1. 

    Kth Largest Element Problem

    Given an array containing N distinct positive integers and a number K, determine the Kth largest element in the array.

    Example:

    Input:
    N = 6, K = 3, array = [2, 1, 5, 6, 3, ...
  • Ans. 

    Find the Kth largest element in an array of distinct positive integers.

    • Sort the array in non-increasing order and return the Kth element.

    • Handle multiple test cases efficiently.

    • Ensure all elements in the array are distinct.

  • Answered by AI
  • Q2. Can you draw an E-R Diagram for Uber?
  • Ans. 

    An E-R Diagram for Uber would include entities like User, Driver, Ride, Payment, and Location.

    • Entities: User, Driver, Ride, Payment, Location

    • Relationships: User requests Ride, Driver provides Ride, Payment for Ride

    • Attributes: User ID, Driver ID, Ride ID, Payment ID, Location ID

    • Example: User (1) requests Ride (A) from Location (X) to Location (Y) with Driver (Z) providing the Ride and Payment (123) made for the Ride.

  • Answered by AI
  • Q3. 

    Maximum Sum Path from Leaf to Root

    Given a binary tree with 'N' nodes, identify the path from a leaf node to the root node that has the maximum sum among all root-to-leaf paths.

    Example:

    All the possibl...

  • Ans. 

    Find the path from a leaf node to the root node with the maximum sum in a binary tree.

    • Traverse the binary tree from leaf nodes to the root while keeping track of the sum of each path.

    • Compare the sums of all paths and return the path with the maximum sum.

    • Use recursion to traverse the tree efficiently.

    • Consider edge cases such as when the tree is empty or has only one node.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

The round was 2nd technical round conducted through Google Meet.
There were 2 interviewers and they were helpful.
Timing was from 11:10 A.M - 12:00 P.M

  • Q1. 

    Add Two Numbers Represented as Linked Lists

    Given two linked lists representing two non-negative integers, where the digits are stored in reverse order (i.e., starting from the least significant digit to ...

  • Ans. 

    Add two numbers represented as linked lists and return the sum as a linked list.

    • Traverse both linked lists simultaneously while keeping track of carry from previous sum

    • Create a new linked list to store the sum digits

    • Handle cases where one list is longer than the other by adding remaining digits with carry

    • Remember to handle the case where there is a carry after adding all digits

  • Answered by AI
Round 3 - HR 

Round duration - 15 Minutes
Round difficulty - Easy

Timing was 12:30 P.M. to 1:00 P.M.
It was held on Google Meet and HR was helpful.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in ChennaiEligibility criteria70% aboveHexaware Technologies interview preparation:Topics to prepare for the interview - Dynamic Programming, Sort and Search Algorithms, Graphs, Data Structures ( Priority Queue, stack, sets), Greedy Algorithms, OOPS, DBMSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Contribute time for course subjects also like OS,DBMS,OOPS.
Tip 2 : Start practicing on Leetcode and InterviewBit 1 month before your Placement Drive and try solving approx 300+ questions.
Tip 3 : Regularly Participate in Coding Contests on CodeForces and try to be Expert.

Application resume tips for other job seekers

Tip 1 : Don't try to lie in resume as questions can be asked on the same in depth.
Tip 2 : Mention atleast 1 project or past work experience.

Final outcome of the interviewSelected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Samsung SDS Interview FAQs

How many rounds are there in Samsung SDS Software Developer Intern interview?
Samsung SDS interview process usually has 2 rounds. The most common rounds in the Samsung SDS interview process are Technical, Resume Shortlist and One-on-one Round.
What are the top questions asked in Samsung SDS Software Developer Intern interview?

Some of the top questions asked at the Samsung SDS Software Developer Intern interview -

  1. What is OOPS, Ranking in DB...read more
  2. 1) Firstly they asked questions related to projects. 2) Basics of java - oops c...read more
  3. Questions like sorting techniques and their worst case time complexity comparis...read more

Recently Viewed

REVIEWS

Hewlett Packard Enterprise

No Reviews

SALARIES

Futures First info Services

INTERVIEWS

Evalueserve

No Interviews

INTERVIEWS

Tata Motors

No Interviews

INTERVIEWS

Company Interviews

No Interviews

INTERVIEWS

TVS Motor

No Interviews

INTERVIEWS

Einfochips

No Interviews

SALARIES

HCLTech

JOBS

Hewlett Packard Enterprise

No Jobs

INTERVIEWS

Accenture

No Interviews

Tell us how to improve this page.

Samsung SDS Software Developer Intern Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more
Samsung SDS Software Developer Intern Salary
based on 8 salaries
₹2 L/yr - ₹13.5 L/yr
9% more than the average Software Developer Intern Salary in India
View more details

Samsung SDS Software Developer Intern Reviews and Ratings

based on 4 reviews

2.0/5

Rating in categories

2.0

Skill development

4.5

Work-life balance

3.2

Salary

2.8

Job security

2.3

Company culture

3.0

Promotions

2.0

Work satisfaction

Explore 4 Reviews and Ratings
Assistant Manager
280 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
209 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
111 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Manager
82 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
59 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Samsung SDS with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent