Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Red Lion Controls Team. If you also belong to the team, you can get access from here

Red Lion Controls Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Red Lion Controls Interview Questions and Answers

Updated 15 Nov 2022

Red Lion Controls Interview Experiences

Popular Designations

5 interviews found

I applied via Approached by Company and was interviewed in Oct 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 

(1 Question)

  • Q1. Altium, microprocessor, hardware design, schematic related questions
Round 3 - Behavioral 

(1 Question)

  • Q1. HW design related questions
Round 4 - HR 

(1 Question)

  • Q1. He asked about career history and reasons behind leaving each company along with comparison of what i was earning with each past employer. It was a nice conversation. The intent was to understand my idea o...

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have end to end HW design experience. HR round - be prepared to justify your job switches.

Hardware Design Engineer Interview Questions asked at other Companies

Q1. What does a capacitor do? How do you decide what capacitors (You'll have to tell them why did you choose, what you choose), Other than this I was asked to draw basic Electronic Schematics for Analog circuits using resistors, diodes, inducto... read more
View answer (2)

I applied via Naukri.com and was interviewed in Mar 2022. There were 5 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. It's regarding Testing,STLC,Bug life cycle,Agile, Python with coding expertise. Testing methods, tools,JIRA
Round 2 - Technical 

(1 Question)

  • Q1. This is Software manager round,All experience in testing, Critical condition, World load distribution,
Round 3 - Technical 

(1 Question)

  • Q1. Hardware Manager round, with all hardware experience and testing
Round 4 - Technical 

(1 Question)

  • Q1. Program Manager round
Round 5 - One-on-one 

(1 Question)

  • Q1. HR related questions and self information

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all the technical skills as per JD. It's was not easy to crack all rounds.

Embedded Engineer Interview Questions asked at other Companies

Q1. What is the difference between sensors and actuators
View answer (1)

I applied via Recruitment Consulltant and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Behavioral 

(1 Question)

  • Q1. Software engineering manager asked questions related to my work profile and my expectations from this role and my future goals. Manager made me feel comfortable during the interview. I really liked the way...
Round 2 - HR 

(1 Question)

  • Q1. HR discussion was light hearted and comforting. It was more of a conversation with someone i felt i knew from ages. I was offered little bit more than my expectations and it was delight.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics of the role should be clear. Brush up your basics and then appear for the interview. The questions asked in the interview are more of logic based and test your subject understanding rather than the theory.

Firmware Engineer Interview Questions asked at other Companies

Q1. In DSA part, 1. Code for merge sort 2. Check if two trees are mirror 3. Find element in rotated sorted array 4. Check if linked list is palindrome 5. Detect a loop in linked list 6. Remove loop in linked list
View answer (1)

Interview Questionnaire 

1 Question

  • Q1. Marketing & Events related
  • Ans. All actions plans and daily works taken care of
  • Answered by Sourabh Thorushe

Interview Preparation Tips

Interview preparation tips for other job seekers - HR response is very slow

Marketing Executive Interview Questions asked at other Companies

Q1. What is Service Scape ? After going through website, what do you think, how can we make better Servicescape for B2B marketplaces throgh Brandsmith Worldwide?
View answer (3)

Red Lion Controls interview questions for popular designations

 Hardware Design Engineer

 (1)

 Embedded Engineer

 (1)

 Marketing Executive

 (1)

 Firmware Engineer

 (1)

Interview Questions & Answers

user image Anonymous

posted on 8 Sep 2022

I applied via Recruitment Consulltant and was interviewed before Sep 2021. 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 

(1 Question)

  • Q1. My technical interview was conducted by RLC Hardware expert.
Round 3 - Technical 

(1 Question)

  • Q1. This was the manager round wherein technical and personal interview took place.
Round 4 - HR 

(1 Question)

  • Q1. HR asked questions about my employment history, skill sets, future plans and compensation expectations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the job description carefully and prepare accordingly. You need to be good with basics.

Interview questions from similar companies

I appeared for an interview before Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

This was an online MCQ + coding round where we had 1 hour to solve the MCQ's and another 1 hour to solve 2 coding
questions. The MCQ's were related to both General and Technical Aptitude.

  • Q1. 

    Path Sum Calculation

    You are provided with the root node of a binary tree containing 'N' nodes and an integer value 'TARGET'. Your task is to determine the number of leaf nodes for which the sum of the no...

  • Ans. 

    Calculate the number of leaf nodes in a binary tree with a path sum equal to a given target.

    • Traverse the binary tree from root to leaf nodes while keeping track of the sum along the path.

    • Recursively check if the current node is a leaf node and if the sum equals the target.

    • Increment a counter if the conditions are met and return the counter as the result.

  • Answered by AI
  • Q2. 

    Check If Numbers Are Coprime

    Determine if two given numbers 'a' and 'b' are coprime, meaning they have no common divisors other than 1.

    Input:

    t
    a_1 b_1
    a_2 b_2
    ...
    a_t b_t

    Output:

    true / false
    ...

    Exampl...

  • Ans. 

    Check if two numbers are coprime by finding their greatest common divisor (GCD) and determining if it is 1.

    • Calculate the GCD of the two numbers using Euclidean algorithm.

    • If GCD is 1, the numbers are coprime; otherwise, they are not.

    • Iterate through all pairs of numbers provided in the input.

    • Return true if GCD is 1, false otherwise.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was a standard DSA round where I was given 2 coding questions - the first one was related to DP and the second one was of Linked List. I first explained my approach and then coded the solutions in a production ready manner by applying proper coding principles.

  • Q1. 

    Maximum Length Pair Chain Problem Statement

    You are provided with 'N' pairs of integers such that in any given pair (a, b), the first number is always smaller than the second number, i.e., a < b. A pai...

  • Ans. 

    Find the length of the longest pair chain that can be formed using given pairs.

    • Sort the pairs based on the second element in increasing order.

    • Iterate through the sorted pairs and keep track of the maximum chain length.

    • Update the chain length if the current pair can be added to the chain.

    • Return the maximum chain length at the end.

  • Answered by AI
  • Q2. 

    Palindrome Linked List Problem Statement

    You are provided with a singly linked list of integers. Your task is to determine whether the given singly linked list is a palindrome. Return true if it is a pali...

  • Ans. 

    Check if a given singly linked list is a palindrome or not.

    • Use two pointers approach to find the middle of the linked list.

    • Reverse the second half of the linked list.

    • Compare the first half with the reversed second half to determine if it's a palindrome.

  • Answered by AI
Round 3 - Video Call 

(5 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round started with 2 preety decent coding questions - one from DP and the other one was from Binary Search. This was followed by some questions from OOPS and then the interview ended with the interviewer asking me the famous 3-Ants and the Triangle Puzzle.

  • Q1. 

    Subset Sum Equal To K Problem Statement

    Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    Provide true if such a subset exists, otherwise r...

  • Ans. 

    Given an array of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    • Use dynamic programming to solve this problem efficiently

    • Create a 2D array to store if a subset sum is possible for each element and each sum value

    • Iterate through the array and update the 2D array accordingly

    • Check if the value at the last element and K is true to determine if a subset sum equals K

  • Answered by AI
  • Q2. 

    Search In Rotated Sorted Array Problem Statement

    Given a rotated sorted array ARR of size 'N' and an integer 'K', determine the index at which 'K' is present in the array.

    Note:
    1. If 'K' is not present...
  • Ans. 

    Given a rotated sorted array, find the index of a given integer 'K'.

    • Use binary search to find the pivot point where the array is rotated.

    • Based on the pivot point, perform binary search on the appropriate half of the array to find 'K'.

    • Handle cases where 'K' is not present in the array by returning -1.

  • Answered by AI
  • Q3. What is meant by static and dynamic polymorphism?
  • Ans. 

    Static polymorphism is resolved at compile time, while dynamic polymorphism is resolved at runtime.

    • Static polymorphism is achieved through function overloading and operator overloading.

    • Dynamic polymorphism is achieved through virtual functions and function overriding.

    • Example of static polymorphism: function overloading in C++.

    • Example of dynamic polymorphism: virtual functions in C++.

  • Answered by AI
  • Q4. What is abstraction in Object-Oriented Programming?
  • Ans. 

    Abstraction in OOP is the concept of hiding complex implementation details and showing only the necessary features to the outside world.

    • Abstraction allows us to focus on what an object does rather than how it does it.

    • It helps in reducing complexity and improving maintainability of code.

    • Example: In a car, we don't need to know the internal working of the engine to drive it. We just need to know how to operate the pedals

  • Answered by AI
  • Q5. You have 3 ants located at the corners of a triangle. The challenge is to determine the movement pattern of the ants if they all start moving towards each other. What will be the outcome?
Round 4 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This was a Technical Cum HR round where I was first asked some basic OOPS related concepts and then we discussed
about my expectations from the company , learnings and growth in the forthcomig years. I would suggest be honest and
try to communicate your thoughts properly in these type of rounds to maximise your chances of getting selected.

  • Q1. What do you know about the company?
  • Q2. Why should we hire you?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASiemens interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Scenario based to be solved with python

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the core concepts very well.

Interview Questionnaire 

1 Question

  • Q1. 1. What are delegates? 2. Question on Linq C# 3. Most of the questions were on design patterns and SOLID principles 4. OOPS concepts 5. Puzzles were also there.

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. What's your strength
  • Q2. What's the role of your job

Interview Preparation Tips

Interview preparation tips for other job seekers - Be practical and only tell what you know and explain well

Interview Questionnaire 

1 Question

  • Q1. Basic OOPs concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics.

Red Lion Controls Interview FAQs

How many rounds are there in Red Lion Controls interview?
Red Lion Controls interview process usually has 3-4 rounds. The most common rounds in the Red Lion Controls interview process are Technical, HR and Behavioral.
What are the top questions asked in Red Lion Controls interview?

Some of the top questions asked at the Red Lion Controls interview -

  1. It's regarding Testing,STLC,Bug life cycle,Agile, Python with coding expertise....read more
  2. HR discussion was light hearted and comforting. It was more of a conversation w...read more
  3. This is Software manager round,All experience in testing, Critical condition, W...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 425 Interviews
Johnson Controls Interview Questions
3.5
 • 262 Interviews
Falcon Autotech Interview Questions
3.9
 • 45 Interviews
Wipro PARI Interview Questions
3.3
 • 44 Interviews
TMEIC Interview Questions
3.8
 • 19 Interviews
View all

Red Lion Controls Reviews and Ratings

based on 21 reviews

4.4/5

Rating in categories

4.3

Skill development

4.6

Work-life balance

4.1

Salary

4.2

Job security

4.5

Company culture

3.8

Promotions

4.2

Work satisfaction

Explore 21 Reviews and Ratings
Commercial Manager
5 salaries
unlock blur

₹11.9 L/yr - ₹13.1 L/yr

Firmware Engineer
5 salaries
unlock blur

₹11.4 L/yr - ₹13 L/yr

Applications Engineer
4 salaries
unlock blur

₹12.5 L/yr - ₹16.5 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹12 L/yr - ₹25 L/yr

Senior Hardware Design Engineer
4 salaries
unlock blur

₹13 L/yr - ₹19.5 L/yr

Explore more salaries
Compare Red Lion Controls with

Siemens

4.1
Compare

Schneider Electric

4.1
Compare

Johnson Controls

3.5
Compare

GKN

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