Upload Button Icon Add office photos

Samsung Research

Compare button icon Compare button icon Compare

Filter interviews by

Samsung Research Intern Interview Questions, Process, and Tips

Updated 20 Oct 2024

Top Samsung Research Intern Interview Questions and Answers

Samsung Research Intern Interview Experiences

5 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 20 Oct 2024

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

I applied via campus placement at Indian Institute of Technology (IIT), Kharagpur and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Coding Test 

3 questions medium leetcode

Round 2 - Technical 

(3 Questions)

  • Q1. Dfs write whole pseudo code.
  • Ans. 

    Depth First Search (DFS) pseudo code

    • Initialize a stack to keep track of nodes to visit

    • Start with the initial node and push it onto the stack

    • While the stack is not empty, pop a node from the stack and visit its neighbors

    • Push unvisited neighbors onto the stack

    • Repeat until all nodes are visited

  • Answered by AI
  • Q2. Bfs write whole pseudo code.
  • Ans. 

    BFS (Breadth First Search) algorithm pseudo code

    • Start by enqueueing the starting node

    • While the queue is not empty, dequeue a node and process it

    • Enqueue all adjacent nodes that have not been visited yet

    • Repeat until all nodes have been visited

  • Answered by AI
  • Q3. Find the middle of the linked list.
  • Ans. 

    To find the middle of a linked list, use the slow and fast pointer technique.

    • Initialize two pointers, slow and fast, both pointing to the head of the linked list.

    • Move the slow pointer by one step and the fast pointer by two steps until the fast pointer reaches the end of the list.

    • The position of the slow pointer at this point will be the middle of the linked list.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Cv grilling some questions on projects.

Skills evaluated in this interview

Intern Interview Questions & Answers

user image Anonymous

posted on 24 Sep 2023

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

I applied via campus placement at Netaji Subhas Institute of Technology (NSIT) and was interviewed before Sep 2022. There were 3 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 - Coding Test 

Coding test had medium-hard leetcode questions

Round 3 - Technical 

(2 Questions)

  • Q1. Mostly resume based questions were asked. Since they were research based, I got shortlisted in first round itself
  • Q2. Resumebased reinforcement learning

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be thorough in your resume

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. Case. There is a housing society “The wasteful society”, you coll ... read more
Q2. Which programming language you are comfortable with?
asked in Deloitte
Q3. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q4. Huffman Coding Challenge Given an array ARR of integers containin ... read more
asked in Accenture
Q5. A marketing strategy case. Client is a perfume seller in Jaipur. ... read more

Intern Interview Questions & Answers

user image Anonymous

posted on 14 Jul 2021

Interview Questionnaire 

1 Question

  • Q1. What's you name

Interview Preparation Tips

Interview preparation tips for other job seekers - See GFG for answers

Intern Interview Questions & Answers

user image Anonymous

posted on 31 May 2021

I applied via Campus Placement and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Whats c
  • Ans. 

    C is a general-purpose programming language developed by Dennis Ritchie in 1972.

    • C is used for developing operating systems, embedded systems, and system software.

    • It is a compiled language and has a low-level memory access.

    • C is the predecessor of many modern programming languages like C++, Java, and Python.

  • Answered by AI
  • Q2. Whats loop
  • Ans. 

    A loop is a programming structure that repeats a set of instructions until a certain condition is met.

    • Loops are used to iterate over a collection of data or to repeat a set of instructions a certain number of times.

    • There are three types of loops in most programming languages: for, while, and do-while.

    • Example: for (int i = 0; i < 10; i++) { // do something }

  • Answered by AI
  • Q3. Why mi good samsung bad

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy peasy interieds

Samsung Research interview questions for designations

 Research Intern

 (4)

 Summer Intern

 (1)

 Project Intern

 (1)

 Software Developer Intern

 (5)

 Software Trainee Intern

 (1)

 Software Engineer Intern Trainee

 (1)

 Engineer

 (10)

 Senior Engineer

 (8)

Intern Interview Questions & Answers

user image Anonymous

posted on 30 Aug 2017

I was interviewed in Aug 2017.

Interview Preparation Tips

Round: Test
Experience: 20 English questions
Rest of the 40 were quant.
There was a severe shortage of time in this test. English was a piece of cake but the rest of the questions were pretty time consuming.
Tips: Its better to finish those questions first which aren't time consuming.
Duration: 1 hour
Total Questions: 60

Round: Test
Experience: There was one three mark question and two five mark questions.
The three marker was either on linked list or array sorting.
The second question was based on dynamic programming.
The third question was on algorithms and number theory. Eg. My question was to find the units digit in a^b.
You could code in C,C++, Java or C#
Duration: 1 hour 10 minutes
Total Questions: 3

Round: Group Discussion
Experience: It wasn't exactly a group discussion. It was more of extempore. We were given ten minutes to note down points on the topic and each of us had to speak for two minutes. And then at the end there was a brief discussion on the arguments.
Tips: Don't start making philosophical arguments. You are expected to give technical arguments and reasons.
Don't contradict yourself ever. Make your stand on the topic clear and stick to it.
Don't cut off people in the middle. Hear them out.
It's not about who is speaking the most. It's about who is most effective.
Duration: 1 hour

College Name: IIT Madras

Interview questions from similar companies

Intern Interview Questions & Answers

HARMAN user image Anonymous

posted on 20 Aug 2024

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

I applied via Walk-in and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It contains 35 question

Round 2 - Technical 

(2 Questions)

  • Q1. Explain the project
  • Ans. 

    The project is a web application that helps users track their daily water intake and reminds them to stay hydrated.

    • Users can input their daily water consumption and set goals for themselves.

    • The application sends notifications to remind users to drink water throughout the day.

    • Users can view their water intake history and track their progress over time.

  • Answered by AI
  • Q2. Write the code for even number
  • Ans. 

    Code to identify even numbers

    • Use the modulo operator (%) to check if a number is divisible by 2

    • If the remainder is 0, then the number is even

    • Example: int num = 6; if(num % 2 == 0) { // num is even }

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Strong communication and teamwork skills

    • Experience with programming languages such as Java, Python, and C++

  • Answered by AI
  • Q2. Some situational question

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while answering

Intern Interview Questions & Answers

OPPO user image Anonymous

posted on 4 Oct 2024

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

I applied via Campus Placement and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Prepare thoroughly for aptitude...

Round 2 - Technical 

(3 Questions)

  • Q1. Write code of multiplication
  • Ans. 

    Code for multiplication operation in programming languages

    • Use the * operator in most programming languages to perform multiplication

    • Example: int result = num1 * num2;

    • Remember to handle overflow cases if working with large numbers

  • Answered by AI
  • Q2. Say ur semester subjects
  • Ans. 

    My semester subjects include Computer Science, Mathematics, and Economics.

    • Computer Science - Programming, Algorithms, Data Structures

    • Mathematics - Calculus, Linear Algebra, Statistics

    • Economics - Microeconomics, Macroeconomics, Econometrics

  • Answered by AI
  • Q3. Introduce yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Experience with programming languages such as Java, Python, and C++

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Strong communication and teamwork skills

  • Answered by AI
  • Q2. Asked detail abt hobbies

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on wht u r saying...

Intern Interview Questions & Answers

Sony user image Anonymous

posted on 24 May 2024

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

I applied via LinkedIn

Round 1 - Technical 

(1 Question)

  • Q1. Probability of bit error in a binary symmetric channel
  • Ans. 

    The probability of bit error in a binary symmetric channel can be calculated using the formula P = 1/2 * erfc(sqrt(Eb/N0)), where erfc is the complementary error function.

    • Probability of bit error in a binary symmetric channel is influenced by the signal-to-noise ratio (Eb/N0).

    • The error function erfc is used to calculate the probability of bit error.

    • The formula for calculating the probability of bit error is P = 1/2 * e

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Self intro and myself

Interview Preparation Tips

Interview preparation tips for other job seekers - all the best

Intern Interview Questions & Answers

Signify user image Surya Teja T

posted on 24 Sep 2023

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

I applied via campus placement at Amrita Vishwa Vidyapeetham, Amritapuri Campus and was interviewed in Aug 2023. 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 - Coding Test 

2 coding questions of medium level

Round 3 - Technical 

(1 Question)

  • Q1. OOPS,project questions,DBMS Queries
Round 4 - HR 

(1 Question)

  • Q1. About Yourself,Projects,General questions

Samsung Research Interview FAQs

How many rounds are there in Samsung Research Intern interview?
Samsung Research interview process usually has 3 rounds. The most common rounds in the Samsung Research interview process are Coding Test, Technical and Resume Shortlist.
What are the top questions asked in Samsung Research Intern interview?

Some of the top questions asked at the Samsung Research Intern interview -

  1. Find the middle of the linked li...read more
  2. Dfs write whole pseudo co...read more
  3. Bfs write whole pseudo co...read more

Tell us how to improve this page.

Samsung Research Intern Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Intern Interview Questions from Similar Companies

TCS Intern Interview Questions
3.7
 • 35 Interviews
Infosys Intern Interview Questions
3.6
 • 22 Interviews
Intel Intern Interview Questions
4.2
 • 14 Interviews
Wipro Intern Interview Questions
3.7
 • 11 Interviews
HCLTech Intern Interview Questions
3.5
 • 7 Interviews
HARMAN Intern Interview Questions
3.7
 • 3 Interviews
OPPO Intern Interview Questions
4.0
 • 3 Interviews
View all
Samsung Research Intern Salary
based on 8 salaries
₹4 L/yr - ₹9.2 L/yr
38% more than the average Intern Salary in India
View more details

Samsung Research Intern Reviews and Ratings

based on 24 reviews

4.0/5

Rating in categories

3.5

Skill development

4.2

Work-life balance

3.3

Salary

3.5

Job security

3.6

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 24 Reviews and Ratings
Software Engineer
1.6k salaries
unlock blur

₹7 L/yr - ₹22 L/yr

Lead Engineer
635 salaries
unlock blur

₹10 L/yr - ₹39.8 L/yr

Senior Software Engineer
535 salaries
unlock blur

₹7.8 L/yr - ₹33 L/yr

Chief Engineer
377 salaries
unlock blur

₹14 L/yr - ₹51 L/yr

Engineer
320 salaries
unlock blur

₹6.7 L/yr - ₹22 L/yr

Explore more salaries
Compare Samsung Research with

Microsoft Research

4.5
Compare

IBM Research

4.4
Compare

Intel

4.2
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview