Upload Button Icon Add office photos

Barco Electronic Systems

Compare button icon Compare button icon Compare

Filter interviews by

Barco Electronic Systems Sdet (Software Development Engineer in Test) Interview Questions and Answers

Updated 1 Jul 2022

Barco Electronic Systems Sdet (Software Development Engineer in Test) Interview Experiences

1 interview found

I applied via Recruitment Consulltant and was interviewed in Jun 2022. There were 5 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Python Questions. 1. Difference between List and Tuples 2. What is mutable and immutable? 3. OOps concepts 4. Framework related questions 5. Output questions on List and Tuples
  • Q2. Coding: 1. Remove the duplicate characters from a string. 2. Sort an array 3. Find the indices of resulting sum. 4. Find the equilibrium point of a list/array
  • Ans. 

    Coding questions related to string manipulation, array sorting, and finding indices and equilibrium point.

    • To remove duplicate characters from a string, use a hash set to keep track of seen characters and remove duplicates.

    • To sort an array, use built-in sorting functions or implement a sorting algorithm like quicksort or mergesort.

    • To find the indices of resulting sum, use a hash map to store the complement of each eleme...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. 1. Questions related to framework and previous experience. 2. Update of dictionary. 3. PyTest framework questions. Marking and grouping of tests. 4. Decorators in Python. 5. Fixtures in Python
  • Q2. Coding 1. Sort an array 2. Count number of times each user logged in from a log file. 3. Print the name and length of each name from the same log file.
  • Ans. 

    Coding questions for SDET interview

    • 1. Use built-in sorting functions like Array.sort()

    • 2. Read log file line by line and count occurrences of each user

    • 3. Parse log file to extract names and use string.length to get length

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Managerial Round. Questions were related to understand my current and previous roles.
Round 4 - One-on-one 

(1 Question)

  • Q1. Discussion with Sr. VP.
Round 5 - HR 

(1 Question)

  • Q1. Behavioral related questions.

Interview Preparation Tips

Topics to prepare for Barco Electronic Systems Sdet (Software Development Engineer in Test) interview:
  • Python
  • Problem Solving
Interview preparation tips for other job seekers - Focus on core problem solving skills and develop a good understanding of python and how the framework is working. Technical rounds are very good.

Skills evaluated in this interview

Interview questions from similar companies

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

I was interviewed in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Some basic questions related to java like final, finally, finalize and selenium related questions like how to select drop down in selenium and playwright
  • Q2. How to take screenshot in selenium and playwright and also related to agile methodologies
Round 2 - Technical 

(2 Questions)

  • Q1. Write a test script for a given scenario in any of your suitable framework
  • Ans. 

    Write a test script for a given scenario in any suitable framework

    • Identify the scenario to be tested

    • Create test data if needed

    • Write test steps using the chosen framework

    • Execute the test script and analyze results

  • Answered by AI
  • Q2. What is test strategies and test plans
  • Ans. 

    Test strategies and test plans are essential documents that outline the approach and scope of testing activities.

    • Test strategy defines the overall testing approach, including objectives, resources, and timelines.

    • Test plan details the specific tests to be conducted, including test cases, test data, and expected results.

    • Test strategy is high-level and focuses on the big picture, while test plan is more detailed and speci...

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jun 2022. 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 - Technical 

(2 Questions)

  • Q1. Coding question max sum subarray- DP
  • Q2. Clone graph - coding
Round 3 - Technical 

(2 Questions)

  • Q1. Dp- grid problem- max no of coins picked and basic android development questions
  • Q2. Project based questions
Round 4 - HR 

(1 Question)

  • Q1. Basic hr questions such are why you want to join our organization

Interview Preparation Tips

Interview preparation tips for other job seekers - Should be good in competitive coding and clear your basics as much as possible
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Trees linked list stacks queues etc

Round 2 - Case Study 

Lenskart boat and emcure was asked about it

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy cool intresting and luck asked on data structures and display screen was easy

I applied via Hackerearth contest and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list

    • Iterate through the linked list and change the direction of the pointers

    • Use three pointers to keep track of the current, previous, and next nodes

    • Make sure to update the head and tail pointers accordingly

  • Answered by AI
  • Q2. Swap 2 numbers without using a third variable
  • Ans. 

    Swap 2 numbers without using a third variable

    • Use the XOR operation to swap the numbers

    • Assign the first number to the second number using XOR

    • Assign the second number to the first number using XOR

  • Answered by AI
  • Q3. Height of a binary tree
  • Ans. 

    Height of a binary tree is the maximum number of edges from the root node to any leaf node.

    • The height of an empty tree is 0.

    • The height of a tree with only one node is 1.

    • The height of a tree can be calculated recursively by finding the height of its left and right subtrees and adding 1 to the maximum of the two heights.

    • The time complexity of finding the height of a binary tree is O(n), where n is the number of nodes in

  • Answered by AI
  • Q4. Sum queries on a 2D matrix
  • Ans. 

    Sum queries on a 2D matrix

    • Iterate through each query and calculate the sum of elements in the given range

    • Use prefix sum technique to optimize the solution

    • Preprocess the matrix to store the sum of elements in each row and column for faster calculation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice competitive programming and it will be most helpful because all the problems asked in the interview were related to DSA only.

Skills evaluated in this interview

I applied via campus placement at National Institute of Technology,(NIT), Agartala and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. 1) Tell me about yourself.
  • Q2. 2) 4 pillars of oops concept.
  • Ans. 

    4 pillars of OOPs: Abstraction, Encapsulation, Inheritance, Polymorphism.

    • Abstraction: Hiding implementation details and showing only necessary information.

    • Encapsulation: Binding data and functions together and restricting access to them.

    • Inheritance: Creating new classes from existing ones, inheriting properties and methods.

    • Polymorphism: Ability of objects to take on multiple forms or behaviors.

  • Answered by AI
  • Q3. 3) implement queue using stack
  • Ans. 

    Implement a queue using stack

    • Use two stacks, one for enqueue and one for dequeue

    • When dequeue is called, pop all elements from enqueue stack and push to dequeue stack

    • Then pop from dequeue stack to get the first element added to the queue

    • When enqueue is called, simply push the element to enqueue stack

  • Answered by AI
  • Q4. 4)Merge sort
  • Q5. 5) Dynamic programming question

Interview Preparation Tips

Interview preparation tips for other job seekers - One need to have a good knowledge of Dats structure and Algorithms

Skills evaluated in this interview

I applied via LinkedIn and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Easy tree questions from basic DSA sheets

Round 2 - Technical 

(1 Question)

  • Q1. Tree question from DSA sheet

Interview Preparation Tips

Topics to prepare for Samsung Research SDE (Software Development Engineer) interview:
  • Binary tree
Interview preparation tips for other job seekers - Stay calm and focus on things written in resume don't write things which u don't know about jwbebjsidkdnns

Barco Electronic Systems Interview FAQs

How many rounds are there in Barco Electronic Systems Sdet (Software Development Engineer in Test) interview?
Barco Electronic Systems interview process usually has 5 rounds. The most common rounds in the Barco Electronic Systems interview process are Technical, HR and One-on-one Round.
What are the top questions asked in Barco Electronic Systems Sdet (Software Development Engineer in Test) interview?

Some of the top questions asked at the Barco Electronic Systems Sdet (Software Development Engineer in Test) interview -

  1. Coding 1. Sort an array 2. Count number of times each user logged in from a log...read more
  2. Coding: 1. Remove the duplicate characters from a string. 2. Sort an array 3. ...read more
  3. Basic Python Questions. 1. Difference between List and Tuples 2. What is mutabl...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Samsung Interview Questions
4.0
 • 560 Interviews
Siemens Interview Questions
4.1
 • 429 Interviews
Dell Interview Questions
4.0
 • 391 Interviews
Bosch Interview Questions
4.2
 • 334 Interviews
OPPO Interview Questions
4.0
 • 210 Interviews
LG Electronics Interview Questions
4.0
 • 193 Interviews
Philips Interview Questions
3.9
 • 157 Interviews
Daikin Interview Questions
4.2
 • 144 Interviews
Samsung Research Interview Questions
3.2
 • 130 Interviews
View all
Senior Software Engineer
48 salaries
unlock blur

₹11.6 L/yr - ₹30 L/yr

Associate Technical Specialist
42 salaries
unlock blur

₹15 L/yr - ₹41 L/yr

Lead Engineer
33 salaries
unlock blur

₹10.2 L/yr - ₹32 L/yr

Senior Engineer
30 salaries
unlock blur

₹7 L/yr - ₹30 L/yr

Assistant Manager
24 salaries
unlock blur

₹11.5 L/yr - ₹31.3 L/yr

Explore more salaries
Compare Barco Electronic Systems with

Samsung

3.9
Compare

LG Electronics

4.0
Compare

Sony

4.2
Compare

Philips

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