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 Resume 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)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview

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 Resume 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

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

Interview Questionnaire 

1 Question

  • Q1. Who is the most important person have to transform you in your life?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just speak your mind you will be selected.

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 Naukri.com and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Be clear on salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Say confidently what ever it is..

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

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

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

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

HEG

No Interviews

INTERVIEWS

Zenon

No Interviews

INTERVIEWS

Markem Imaje

No Interviews

Tell us how to improve this page.

Saint-Gobain

We thank our employees for rating us 4/5 on AmbitionBox

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Siemens Interview Questions
4.1
 • 416 Interviews
ABB Interview Questions
4.1
 • 233 Interviews
BHEL Interview Questions
4.1
 • 113 Interviews
View all

Red Lion Controls Reviews and Ratings

based on 21 reviews

4.5/5

Rating in categories

4.4

Skill development

4.7

Work-life balance

4.3

Salary

4.3

Job security

4.5

Company culture

3.9

Promotions

4.3

Work satisfaction

Explore 21 Reviews and Ratings
Commercial Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Firmware Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Applications Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Hardware Design Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Red Lion Controls with

Schneider Electric

4.1
Compare

Siemens

4.1
Compare

ABB

4.1
Compare

Honeywell Automation

3.8
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