Upload Button Icon Add office photos

Samsung Research

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Samsung Research Software Development Engineer Interview Questions, Process, and Tips

Updated 4 Aug 2017

Samsung Research Software Development Engineer Interview Experiences

1 interview found

I was interviewed in Jan 2017.

Interview Questionnaire 

6 Questions

  • Q1. You are given a thread and you are unlocked in a room.Measure the height of the room using string.
  • Ans. 

    Measure the height of a room using a thread.

    • Tie one end of the thread to a known height point, such as a door handle.

    • Hold the other end of the thread and let it hang down to the floor.

    • Mark the point where the thread touches the floor.

    • Repeat the process at different points in the room to get multiple measurements.

    • Take the average of the measurements to estimate the height of the room.

  • Answered by AI
  • Q2. Process Scheduling in operating system
  • Ans. 

    Process scheduling is the method by which the operating system decides the order in which processes are executed.

    • Process scheduling determines the fairness and efficiency of resource allocation.

    • Different scheduling algorithms prioritize different factors such as CPU utilization, response time, and throughput.

    • Examples of scheduling algorithms include First-Come, First-Served (FCFS), Round Robin, and Shortest Job Next (S

  • Answered by AI
  • Q3. Print linked list in reverse order
  • Ans. 

    To print a linked list in reverse order, we can use recursion or a stack data structure.

    • Recursion: Traverse the linked list recursively until the end, then print the current node.

    • Stack: Traverse the linked list and push each node onto a stack. Then pop and print the nodes from the stack.

  • Answered by AI
  • Q4. Dijkstra algorithm
  • Ans. 

    Dijkstra algorithm is a graph search algorithm that finds the shortest path between nodes in a weighted graph.

    • Dijkstra algorithm uses a priority queue to select the node with the smallest distance from the source node.

    • It maintains a distance array to keep track of the shortest distance from the source node to each node in the graph.

    • The algorithm iteratively selects the node with the smallest distance and updates the di...

  • Answered by AI
  • Q5. Bankers algorithm
  • Ans. 

    Banker's algorithm is a resource allocation and deadlock avoidance algorithm used in operating systems.

    • Banker's algorithm is used to prevent deadlock in a system with multiple processes and resources.

    • It works by simulating the allocation of resources to processes and checking if it leads to a safe state.

    • The algorithm considers the current allocation, maximum needs, and available resources to make decisions.

    • If a request...

  • Answered by AI
  • Q6. Deadlock in operating system
  • Ans. 

    Deadlock is a situation in which two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Deadlock occurs when two or more processes are stuck in a circular wait.

    • Four necessary conditions for deadlock are mutual exclusion, hold and wait, no preemption, and circular wait.

    • Examples of deadlock prevention techniques include resource allocation graphs and bankers' algorithm.

    • Dea...

  • Answered by AI

Interview Preparation Tips

Skills: Coding Skills And Knowledge On Data Structures, Operating Systems, Aptitude
College Name: LNMIIT , JAIPUR

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

Interview Questionnaire 

1 Question

  • Q1. A-Z in MySQL, programming languages(only concepts)

I applied via Company Website and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Self introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - say individual ideas,plans, story's.say different opinions,speek confidentially, correctly answer Yes or no questions, correctly say interested and confidential job,

Interview Questionnaire 

1 Question

  • Q1. Time management

I applied via Campus Placement and was interviewed in Nov 2020. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What are oops concept
  • Ans. 

    OOPs concepts are the fundamental principles of object-oriented programming.

    • Encapsulation - binding data and functions that manipulate the data

    • Inheritance - creating new classes from existing ones

    • Polymorphism - ability of objects to take on many forms

    • Abstraction - hiding implementation details and showing only functionality

  • Answered by AI
  • Q2. What is storage classes in c
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • There are four storage classes in C: auto, register, static, and extern.

    • Auto variables are local to a block and have automatic storage duration.

    • Register variables are stored in CPU registers for faster access.

    • Static variables have a lifetime throughout the program and are initialized only once.

    • Extern variables are declared outside any function and can be a

  • Answered by AI
  • Q3. Describe about your final year project and internship

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidence,and positive and answer your question confidently.

Skills evaluated in this interview

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

Samsung Research Interview FAQs

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

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

  1. You are given a thread and you are unlocked in a room.Measure the height of the...read more
  2. Print linked list in reverse or...read more
  3. Process Scheduling in operating sys...read more

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

Hindustan Coca Cola Beverages

No Interviews

INTERVIEWS

Tata Power Solar

No Interviews

INTERVIEWS

Xcaliber Infotech

No Interviews

INTERVIEWS

Sehaj Synergy Technologies

No Interviews

INTERVIEWS

Procter & Gamble

No Interviews

Tell us how to improve this page.

Samsung Research Software Development Engineer Salary
based on 140 salaries
₹7 L/yr - ₹20 L/yr
11% more than the average Software Development Engineer Salary in India
View more details

Samsung Research Software Development Engineer Reviews and Ratings

based on 9 reviews

2.0/5

Rating in categories

2.1

Skill development

2.4

Work-life balance

2.3

Salary

1.7

Job security

1.8

Company culture

1.4

Promotions

1.4

Work satisfaction

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

₹0 L/yr - ₹0 L/yr

Lead Engineer
639 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
548 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Chief Engineer
377 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
322 salaries
unlock blur

₹0 L/yr - ₹0 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent