Samsung R&D Institute interview experience Real time questions & tips from candidates to crack your interview

SDE - 1

Samsung R&D Institute
upvote
share-icon
3 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 3 Months
Topics: PYTHON, DSA, DP, PROBLEM SOLVING, PROJECTS
Tip
Tip

Tip 1 : Be honest with the work you have done in projects
Tip 2 : Problem solving skills should be good, go through concepts of DSA
Tip 3 : Practice at least 60-70 coding problems on DSA and try to write coding in more efficient and readable way

Application process
Where: Campus
Eligibility: Project work (Game project 2048) and the Teaching intern, CGPA should be more than 6.0
Resume Tip
Resume tip

Tip 1 : Go through Novoresume for template and place all the skills in proper manner and make sure to add the certificates
Tip 2 : Mention the work done in points so that proper keyword will get selected

Interview rounds

01
Round
Hard
Online Coding Test
Duration180 Minutes
Interview date13 Jun 2022
Coding problem1

Only one question is asked to solve and there are 50 test cases, use recursion in proper manner, practice that topic for many questions, 3 hours are enough to solve and it took me only 1 hour to solve.

1. Bursting Balloons

Moderate
40m average time
60% success
0/80
Asked in companies
Samsung ElectronicsAdobeMicrosoft

You are given an array 'ARR' of N integers. Each integer represents the height of a balloon. So, there are N balloons lined up.

Your aim is to destroy all these balloons. Now, a balloon can only be destroyed if the player shoots its head. So, to do the needful, he/ she shoots an arrow from the left to the right side of the platform, from an arbitrary height he/she chooses. The arrow moves from left to right, at a chosen height ARR[i] until it finds a balloon. The moment when an arrow touches a balloon, the balloon gets destroyed and disappears and the arrow continues its way from left to right at a height decreased by 1. Therefore, if the arrow was moving at height ARR[i], after destroying the balloon it travels at height ARR[i]-1. The player wins this game if he destroys all the balloons in minimum arrows.

You have to return the minimum arrows required to complete the task.

Try solving now
02
Round
Hard
Video Call
Duration60 Minutes
Interview date15 Jun 2022
Coding problem3

I have been asked a lot of questions on my project work 2048 game and he asked me about the libraries which are been used. I was asked to write code for choosing probability for appearing of '2' and '4'. He was impressed with my problem solving skills and yeah you can also ask hints but dont get carried away, if he feels like you are good enough to catch the hints then he will ask you a bonus question. I skipped the bonus question as I thought that its syntax specific.

I was then given a code on nested loop and tell him what was its time complexity.

After that I was asked 3 coding questions and I have to implement and share the approach.
I have done it properly and he was impressed by my coding skills.

1. Move Zeros To Left

Easy
10m average time
90% success
0/40
Asked in companies
AdobeDell TechnologiesAcko

You are given an array 'ARR' of integers. Your task is to modify the array so that all the array elements having zero values get pushed to the left and all the array elements having non-zero value come after them while maintaining their relative order.

For example :
Consider the array { 1, 1, 0, 2, 0 }. 
For the given array the modified array should be {0,0,1,1,2} . 
Arrays { 0, 0, 1, 2, 1 } and  { 0, 0, 2, 1, 1 } are not the correctly reorganized array even if they have all the zero values pushed to the left as in both the arrays the relative order of non-zero elements is not maintained.
Follow Up :
Can you solve the problem in linear time, and constant space?
Problem approach

share the naive approach which is to sort and then tell him better approach which is to shift the zeroes using 2 pointer index

Try solving now

2. Majority element

Easy
0/40
Asked in companies
AmazonSamsung R&D InstituteQualcomm

Given an array/list of length ‘N’, you are supposed to return the majority element of the array/list.

The majority element is the element that appears more than floor(N/2) times in the given array/list.

Note:
You may assume that the given array/list is non-empty and the majority element always exists in the array.
Problem approach

simply use map and store the frequency of the elements

Try solving now

3. Is it a Circular Linked List?

Easy
15m average time
85% success
0/40
Asked in companies
MicrosoftSAP LabsSamsung R&D Institute

You are given a Singly Linked List of integers. You have to find if the given linked list is circular or not.

image

Try solving now
03
Round
Easy
HR Round
Duration15 Minutes
Interview date21 Jun 2022
Coding problem1

simply asked about my family background and years gaps

1. Basic HR Questions

Asked me about my family background and year gaps

What keeps you motivated?

Problem approach

Tip 1 : be honest
Tip 2 : make sure you have a good answer if there is gap

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 3 problems
Interviewed by Samsung R&D Institute
0 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 6 problems
Interviewed by Samsung R&D Institute
1416 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 3 problems
Interviewed by Samsung R&D Institute
1300 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 6 problems
Interviewed by Samsung R&D Institute
1149 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 1
5 rounds | 12 problems
Interviewed by Amazon
115097 views
24 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
58237 views
5 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
35147 views
7 comments
0 upvotes