Upload Button Icon Add office photos

Samsung Research

Compare button icon Compare button icon Compare

Filter interviews by

Samsung Research Engineer 1 Interview Questions and Answers

Updated 30 Jan 2022

Samsung Research Engineer 1 Interview Experiences

1 interview found

Engineer 1 Interview Questions & Answers

user image Anonymous

posted on 30 Jan 2022

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

Interview Questionnaire 

2 Questions

  • Q1. Implement Stack using Linked List.
  • Ans. 

    Stack can be implemented using a singly linked list where each node points to the next node.

    • Create a Node class with data and next pointer

    • Create a Stack class with top pointer

    • Push operation: create a new node and make it the top node

    • Pop operation: remove the top node and make the next node the new top node

    • Peek operation: return the data of the top node

    • isEmpty operation: check if the top node is null

  • Answered by AI
  • Q2. Implement Linked list and all the operation
  • Ans. 

    Implementing a linked list and its operations.

    • Create a Node class with data and next pointer

    • Create a LinkedList class with head pointer

    • Implement insert, delete, search, and print operations

    • Handle edge cases like empty list, inserting at beginning/end

    • Example: LinkedList ll = new LinkedList(); ll.insert(5); ll.print();

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do prepare Data Structures and Algorithms

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Samsung Research?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Walk-in and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About my last job description

Interview Preparation Tips

Interview preparation tips for other job seekers - Says limited and point to point thing, and be clear....

Engineer 1 Interview Questions Asked at Other Companies

Q1. How would you recover lost files from a system infected by a viru ... read more
Q2. What are the different types of RAM (Random Access Memory)?
Q3. What is the difference between a hard disk drive (HDD) and a soli ... read more
Q4. What is the slenderness ratio, and how does it relate to buckling ... read more
Q5. What is the importance of optical fiber for communication?

Senior Engineer Interview Questions & Answers

HP India user image Abhishek Bandejia

posted on 5 Feb 2015

Interview Questionnaire 

2 Questions

  • Q1. Coding questions on data structures and oops
  • Q2. Various questions on cv, projects, por's, etc

Interview Preparation Tips

Round: Test
Experience: Questions were normal like any other aptitude or coding tests.
Tips: Time given was enough for other sections but you need to hurry a little in aptitude part.
Duration: 60 minutes
Total Questions: 60

Round: Technical Interview
Experience: The questions were basic, some where well known like reversing a link list using recursion, designing of car parking lot using concept of oops, find tree height/diameter, etc.
Tips: 1. They ask you to write complete code on paper. This sometimes turn out to be a challenging task when you don't have compiler to correct you on basic things. Practice writing codes on paper.
2. They surely ask questions on oops, like polymorphism, inheritance, etc. besides their definition, also practice writing sudo codes to explain them

Round: HR Interview
Experience: Mainly i was asked questions on my internship experience and POR's.
Tips: They will try to grill you on some questions like 'Why we should hire you?', have a clear reason in your mind. Your other answers should not contradict with your reasons

General Tips: I don't know about other colleges but HP recruits small number of students from my university. Coding questions were average level and can easily be tackled. Many students were rejected after HR interview so don't take it lightly. They do grill you in a very good style if they are in doubt about your selection
Skills: willingness, Enthusiasm, Coding skills, Aptitude skills
College Name: IIT Guwahati

I appeared for an interview in Aug 2016.

Interview Questionnaire 

2 Questions

  • Q1. Questions related to my project, questions on binary tree, questions from OS (like paging and scheduling). Interviewer also asked about competitive coding
  • Q2. Formal questions regarding my background, family members etc

Interview Preparation Tips

Round: Test
Duration: 1 hour

Skills: General Coding And Problem Solving, Puzzle Solving Capability
College Name: NIT Jamshedpur

Interview Questionnaire 

13 Questions

  • Q1. ISO / OSI Model all layers
  • Ans. 

    The ISO/OSI model is a conceptual framework that standardizes the functions of a communication system into seven layers.

    • The ISO/OSI model stands for International Organization for Standardization/Open Systems Interconnection model.

    • It is a layered model that helps in understanding and designing network protocols.

    • The seven layers are: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each la...

  • Answered by AI
  • Q2. Socket Programming
  • Q3. Linux : How to lock a file
  • Ans. 

    To lock a file in Linux, use the flock command or the fcntl system call.

    • The flock command can be used to lock a file by acquiring an exclusive or shared lock.

    • The fcntl system call can be used to lock a file by setting the F_SETLK or F_SETLKW command.

    • Locking a file prevents other processes from modifying or accessing it until the lock is released.

    • Locking can be done at the file level or at specific regions within a file...

  • Answered by AI
  • Q4. ACID property
  • Q5. Binary Search
  • Q6. Testing
  • Q7. Normalizaton
  • Q8. CSS Full form . Why we use CSS in HTML page
  • Ans. 

    CSS stands for Cascading Style Sheets. It is used to style the appearance of HTML elements on a webpage.

    • CSS helps in separating the content of a webpage from its design, making it easier to maintain and update.

    • It allows for consistent styling across multiple pages of a website.

    • CSS can be used to control layout, colors, fonts, and other visual aspects of a webpage.

    • It enables responsive design, making websites adapt to d...

  • Answered by AI
  • Q9. How to find a loop in linked list
  • Ans. 

    To find a loop in a linked list, we can use the Floyd's cycle-finding algorithm.

    • Use two pointers, one moving at a speed of one node at a time and the other at a speed of two nodes at a time.

    • If there is a loop, the two pointers will eventually meet at the same node.

    • To find the starting point of the loop, move one pointer back to the head and then move both pointers at a speed of one node at a time.

    • The point where they m...

  • Answered by AI
  • Q10. OOps Concept
  • Q11. Projects
  • Q12. Your interests
  • Ans. 

    I enjoy exploring new technologies, solving complex problems, and collaborating with others to create innovative solutions.

    • Exploring new technologies

    • Solving complex problems

    • Collaborating with others

    • Creating innovative solutions

  • Answered by AI
  • Q13. How do you see software industry after 10 years
  • Ans. 

    In 10 years, the software industry will be driven by AI, automation, and a focus on security and sustainability in development.

    • AI Integration: Software will increasingly leverage AI for tasks like code generation, testing, and bug fixing, enhancing developer productivity.

    • Low-Code/No-Code Platforms: These platforms will democratize software development, allowing non-developers to create applications with minimal coding.

    • ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: 1. Aptitute

2. DS & C : Maninly queue , Dequeue and linked list

3. C++ : Theory part

4. Network : OSI Layer's working

College Name: NA

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Dec 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Only experience .

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing

Interview Questionnaire 

1 Question

  • Q1. What is python
  • Ans. 

    Python is a high-level, interpreted programming language known for its simplicity and ease of use.

    • Python is used for web development, data analysis, artificial intelligence, and more.

    • It has a large standard library and supports multiple programming paradigms.

    • Python code is easy to read and write, making it a popular choice for beginners.

    • Python uses indentation to indicate blocks of code, rather than curly braces or key...

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. All technical questions raised
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Feb 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 - Technical 

(1 Question)

  • Q1. All questions are related to the fieldwork.
Round 3 - HR 

(1 Question)

  • Q1. Discuss about the previous company and their working projects, CTC and working cultures etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your field work and management.

I applied via Naukri.com and was interviewed before Nov 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. About your current company & your role in there, major activity of your which helping your department.
  • Q2. Draw some case study & explain improvements which you have done there
  • Ans. 

    Improved efficiency of production line at XYZ manufacturing plant

    • Implemented lean manufacturing principles to reduce waste and increase productivity

    • Introduced automation in certain processes to reduce manual labor and increase accuracy

    • Optimized supply chain management to ensure timely delivery of raw materials

    • Trained and empowered employees to identify and solve problems on the production line

    • Implemented a continuous i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Proper improvement list of your department & well capable for some case study & root cause analysis.

Samsung Research Interview FAQs

What are the top questions asked in Samsung Research Engineer 1 interview?

Some of the top questions asked at the Samsung Research Engineer 1 interview -

  1. Implement Linked list and all the operat...read more
  2. Implement Stack using Linked Li...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

OPPO Interview Questions
4.0
 • 230 Interviews
LG Electronics Interview Questions
3.9
 • 228 Interviews
vivo Interview Questions
4.1
 • 209 Interviews
Blue Star Interview Questions
4.0
 • 178 Interviews
Philips Interview Questions
3.8
 • 169 Interviews
HP India Interview Questions
4.0
 • 151 Interviews
Voltas Interview Questions
4.0
 • 149 Interviews
Bajaj Electricals Interview Questions
4.0
 • 133 Interviews
View all
Samsung Research Engineer 1 Salary
based on 48 salaries
₹12 L/yr - ₹18 L/yr
95% more than the average Engineer 1 Salary in India
View more details

Samsung Research Engineer 1 Reviews and Ratings

based on 5 reviews

3.0/5

Rating in categories

2.6

Skill development

3.6

Work-life balance

3.5

Salary

2.9

Job security

3.3

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer
1.7k salaries
unlock blur

₹12 L/yr - ₹20 L/yr

Lead Engineer
643 salaries
unlock blur

₹18.8 L/yr - ₹35 L/yr

Senior Software Engineer
598 salaries
unlock blur

₹16 L/yr - ₹25.1 L/yr

Chief Engineer
396 salaries
unlock blur

₹27 L/yr - ₹50 L/yr

Engineer
330 salaries
unlock blur

₹10.6 L/yr - ₹18 L/yr

Explore more salaries
Compare Samsung Research with

vivo

4.1
Compare

OPPO

4.0
Compare

LG Electronics

3.9
Compare

Bajaj Electricals

4.0
Compare
write
Share an Interview