Upload Button Icon Add office photos

Filter interviews by

Samsung Display RPA Developer Interview Questions and Answers

Updated 29 Aug 2023

Samsung Display RPA Developer Interview Experiences

1 interview found

RPA Developer Interview Questions & Answers

user image Anonymous

posted on 29 Aug 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 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 

Basic Python programming language for RPA

Round 3 - One-on-one 

(1 Question)

  • Q1. HR questions only for proper conduct

Interview Preparation Tips

Interview preparation tips for other job seekers - Get ready to be grilled on past work experience

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Top frequent element
  • Q2. SQL query to remove duplicates
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Mostly about .Net, AWS, Angular
Round 2 - Technical 

(1 Question)

  • Q1. Mostly about AWS, .Net
Round 3 - HR 

(1 Question)

  • Q1. Behavioral Round + Salary Discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. What is your Salary?
  • Ans. 

    I am looking for a competitive salary based on my experience and skills.

    • I am open to discussing salary based on the responsibilities and requirements of the position.

    • I have researched the average salary range for Application Developers in this location.

    • I am seeking a salary that reflects my qualifications and contributions to the company.

    • I am flexible and willing to negotiate based on the overall compensation package o

  • Answered by AI

Software Developer Interview Questions & Answers

Sanmina Sci user image LALITHVIGASHINIS 20UG0078

posted on 11 Oct 2023

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basics of apti like ratio , probablity etc..

Round 2 - Group Discussion 

Technical group discussion

Round 3 - One-on-one 

(1 Question)

  • Q1. About skills and resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Pool drive and tough
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. Basics of Opps virtual functions , destructor
  • Q2. Basics of MFC and its structure

I applied via campus placement at KJ Somaiya Institute of Engineering and Information Technology and was interviewed before Nov 2021. There were 4 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 tips
Round 2 - Coding Test 

Their were 2 medium level leetcode questions and mcq on core subjects.

Round 3 - Technical 

(2 Questions)

  • Q1. 30 min technical round. It was mainly focus on core subject questions on oops, os , dbms and cn. 2 dsa questions were asked.
  • Q2. It was an hour long technical round. All the questions were dsa almost 8-10 questions were asked also you are supposed to provide the optimised code for the same.
Round 4 - HR 

(1 Question)

  • Q1. It was an hour long hr round which was also a elimination round.

Interview Preparation Tips

Topics to prepare for nVent Software Developer interview:
  • OS
  • DBMS
  • Computer Networking
  • DSA
  • OOPS
Interview preparation tips for other job seekers - Just have confidence on your dsa skills and do core subjects well.

I was interviewed in Dec 2016.

Interview Questionnaire 

1 Question

  • Q1. How you will work under a supervisor.

Interview Preparation Tips

Round: Test
Experience: I got selected for next round.
Tips: Do not loses hope.
Duration: 1 hour
Total Questions: 10

Round: Technical + HR Interview
Experience: It was nice experience.
Tips: Do not loses hope.

Skills: Technical Analysis, Managing People
College Name: IIT Kharagpur
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-
Round 1 - HR 

(3 Questions)

  • Q1. Basic family and behaviour
  • Q2. How is your strength?
  • Q3. What is family background?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Oct 2022. There were 3 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 - One-on-one 

(4 Questions)

  • Q1. What is a data structure?
  • Ans. 

    A data structure is a way of organizing and storing data in a computer so that it can be accessed and modified efficiently.

    • Data structures define the way data is stored, accessed, and manipulated in a computer program.

    • Examples include arrays, linked lists, stacks, queues, trees, and graphs.

    • Choosing the right data structure is crucial for optimizing the performance of algorithms and applications.

  • Answered by AI
  • Q2. What is a linked list?
  • Ans. 

    A linked list is a data structure where each element is connected to the next element through pointers.

    • Consists of nodes where each node contains data and a reference to the next node

    • Can easily insert or delete elements without shifting other elements

    • Examples: singly linked list, doubly linked list, circular linked list

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

    HashSet is a collection that does not allow duplicate elements and does not guarantee the order of elements.

    • HashSet implements the Set interface in Java.

    • It uses a hash table for storage.

    • Example: HashSet set = new HashSet<>();

Answered by AI
  • Q4. Explain recursion.
  • Ans. 

    Recursion is a programming technique where a function calls itself in order to solve a problem.

    • Recursion involves breaking down a problem into smaller subproblems and solving them recursively.

    • A base case is needed to stop the recursion and prevent infinite loops.

    • Recursion can be used to solve problems like factorial calculation, Fibonacci sequence, and tree traversal.

  • Answered by AI
    Round 3 - One-on-one 

    (1 Question)

    • Q1. What is a static constructor?
    • Ans. 

      A static constructor is a special type of constructor in a class that is used to initialize static data members.

      • Static constructors are called only once when the class is first accessed.

      • They are used to initialize static variables or perform any necessary setup for the class.

      • Static constructors do not take any parameters and cannot be called explicitly.

      • Example: public class MyClass { static MyClass() { // initializatio

    • Answered by AI

    Skills evaluated in this interview

    Samsung Display Interview FAQs

    How many rounds are there in Samsung Display RPA Developer interview?
    Samsung Display interview process usually has 3 rounds. The most common rounds in the Samsung Display interview process are One-on-one Round, Resume Shortlist and Coding Test.

    Tell us how to improve this page.

    Interview Questions from Similar Companies

    Foxconn Interview Questions
    4.0
     • 145 Interviews
    Navitasys India Interview Questions
    4.2
     • 91 Interviews
    Wistron Interview Questions
    3.9
     • 81 Interviews
    TE Connectivity Interview Questions
    4.2
     • 80 Interviews
    Sony Interview Questions
    4.3
     • 64 Interviews
    Secure Meters Interview Questions
    4.1
     • 63 Interviews
    DBG Technology Interview Questions
    3.9
     • 63 Interviews
    View all
    Assistant Engineer
    218 salaries
    unlock blur

    ₹3 L/yr - ₹6 L/yr

    Senior Engineer
    177 salaries
    unlock blur

    ₹4.1 L/yr - ₹9.5 L/yr

    Assistant Manager
    175 salaries
    unlock blur

    ₹4.9 L/yr - ₹16 L/yr

    Senior Assistant Engineer
    139 salaries
    unlock blur

    ₹3.8 L/yr - ₹10 L/yr

    Associate
    40 salaries
    unlock blur

    ₹1.8 L/yr - ₹9 L/yr

    Explore more salaries
    Compare Samsung Display with

    Indel Corporation

    4.3
    Compare

    Auvitronics

    3.6
    Compare

    Sharp Corporation

    4.2
    Compare

    Toshiba

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