Upload Button Icon Add office photos

Filter interviews by

Forvia Hella Software Engineer Interview Questions and Answers

Updated 12 Aug 2023

Forvia Hella Software Engineer Interview Experiences

1 interview found

Interview experience
2
Poor
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 - Group Discussion 

Understanding around sap pp, manufacturing strategies and basic pp setup

Round 3 - HR 

(1 Question)

  • Q1. Basic details like understanding my self, willingness to join and discussion on notice period

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear about the roles and they are determined about the profile what they are looking for

Interview questions from similar companies

Interview experience
4
Good
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. Prepare embedded concepts
  • Q2. Adc resolution for microcontroller pins
  • Ans. 

    ADC resolution refers to the number of bits used to represent the analog signal in digital form on a microcontroller pin.

    • ADC resolution is typically specified in bits, with common values being 8, 10, 12, or 16 bits.

    • Higher resolution ADCs provide more accurate representation of the analog signal.

    • For example, a 10-bit ADC can represent the analog signal in 1024 (2^10) discrete levels.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2020. There was 1 interview round.

Round 1 - Aptitude Test 

Assignments with Reasoning and maths etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - More related to the project I did and database query and the info we provide in resume
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Campus Placement and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitute questions

Round 2 - Coding Test 

Python Programming, Leet Code, everyday 1 hour

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical on Projects-- ML , python all algorithms write code print op

Interview Preparation Tips

Interview preparation tips for other job seekers - STUDY RESUME Perfectly
Learn Python and ML very well.

I applied via Instahyre and was interviewed in Feb 2022. There were 9 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 - Aptitude Test 
Round 3 - Coding Test 
Round 4 - Coding Test 
Round 5 - Coding Test 
Round 6 - Aptitude Test 

Aptitude ralated questions

Round 7 - Group Discussion 

To take one topic and explain

Round 8 - Technical 

(1 Question)

  • Q1. Taken by technical round
Round 9 - HR 

(9 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.
  • Q9. Why are you interested this job

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparing for a job interview can be pretty intimidating. Especially when it’s being done for the first time or if it’s been a long time since the last one. There is no easy way when it comes to facing an interviewer
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Mar 2023.

Round 1 - Coding Test 

Coding test, on C, around 1 hr, on teams

Round 2 - Technical 

(1 Question)

  • Q1. C basics Embedded C Aptitude
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2023. There were 4 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 - HR 

(3 Questions)

  • Q1. Do you have 3+ years of experience in WPF, C# .NET development & MVVM design patterns?
  • Ans. 

    Yes, I have over 5 years of experience in WPF, C# .NET development, and MVVM design patterns.

    • Yes, I have 5+ years of experience in WPF development.

    • Yes, I have 5+ years of experience in C# .NET development.

    • Yes, I have 5+ years of experience in MVVM design patterns.

  • Answered by AI
  • Q2. Tell me about the projects you worked with WPF
  • Q3. Why do you relive your current company?
Round 3 - Technical 

(3 Questions)

  • Q1. 1. How do you implement multiple inheritance in C#? 2. What is INotifiedPropertyChanged?
  • Ans. 

    1. Multiple inheritance in C# can be achieved using interfaces. 2. INotifyPropertyChanged is an interface used for data binding in WPF and Silverlight applications.

    • Multiple inheritance in C# can be implemented using interfaces, as C# does not support multiple inheritance of classes.

    • Create multiple interfaces and implement them in a single class to achieve multiple inheritance.

    • Example: interface Interface1 { void Method...

  • Answered by AI
  • Q2. How to avoid "While Loop" to acquire Data?
  • Ans. 

    Use alternative methods like callbacks, promises, or async/await to avoid blocking while loops for data acquisition.

    • Use callbacks to handle asynchronous data retrieval without blocking the main thread.

    • Utilize promises to handle asynchronous operations and avoid the need for while loops.

    • Implement async/await to write asynchronous code in a synchronous manner without the need for while loops.

  • Answered by AI
  • Q3. What is Delegates? Explain its Use cases
  • Ans. 

    Delegates are a type-safe function pointers used in C# to reference methods.

    • Delegates allow methods to be passed as parameters

    • Delegates can be used to define callback methods

    • Delegates are commonly used in event handling

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

(1 Question)

  • Q1. 1. How to do bit manipulation? 2. write a code for numeric text box using MVVM design pattern 3. how do you connect motor with PC? 4. difference between threads & timers in C#? 5. how do you handle Race Co...
  • Ans. 

    Answers to various technical questions related to software engineering.

    • 1. Bit manipulation involves manipulating individual bits in a binary number to perform operations like setting, clearing, toggling, or shifting.

    • 2. MVVM (Model-View-ViewModel) design pattern separates the user interface from the business logic by introducing a ViewModel to manage the data and behavior.

    • 3. Connecting a motor to a PC typically involves...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Tell me about yourself?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Dec 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Related to dbms,os,networking

Round 3 - HR 

(5 Questions)

  • Q1. Basics of computer science
  • Q2. Introduce yourself, about family etc..
  • Q3. What is unix shell
  • Ans. 

    Unix shell is a command-line interpreter that provides a user interface for interacting with the operating system.

    • It is a program that takes commands from the keyboard and gives them to the operating system to perform.

    • It allows users to execute commands, run scripts, manage files, and perform various other tasks.

    • Common Unix shells include Bash, Zsh, and Ksh.

    • Shell scripting is a powerful tool for automating tasks and wr

  • Answered by AI
  • Q4. Python basics such as list, tuples
  • Q5. Why should we hire you

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Coding Test 

Interviu de o ora despre bazele programării în C.

Round 3 - Technical 

(1 Question)

  • Q1. Intraberi basic electorinicăa

Interview Preparation Tips

Interview preparation tips for other job seekers - keep calm

Forvia Hella Interview FAQs

How many rounds are there in Forvia Hella Software Engineer interview?
Forvia Hella interview process usually has 3 rounds. The most common rounds in the Forvia Hella interview process are Resume Shortlist, Group Discussion and HR.
How to prepare for Forvia Hella Software Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Forvia Hella. The most common topics and skills that interviewers at Forvia Hella expect are Javascript, .Net Core, Agile, Backend and C#.

Tell us how to improve this page.

Forvia Hella Software Engineer Salary
based on 25 salaries
₹5 L/yr - ₹11 L/yr
11% less than the average Software Engineer Salary in India
View more details

Forvia Hella Software Engineer Reviews and Ratings

based on 4 reviews

4.6/5

Rating in categories

4.8

Skill development

4.4

Work-Life balance

4.3

Salary & Benefits

4.8

Job Security

4.8

Company culture

4.6

Promotions/Appraisal

4.6

Work Satisfaction

Explore 4 Reviews and Ratings
Senior Engineer
252 salaries
unlock blur

₹4.8 L/yr - ₹19 L/yr

Assistant Manager
149 salaries
unlock blur

₹6 L/yr - ₹19 L/yr

Technical Lead
133 salaries
unlock blur

₹10.6 L/yr - ₹32 L/yr

Senior Software Engineer
101 salaries
unlock blur

₹6 L/yr - ₹22.2 L/yr

Senior Design Engineer
96 salaries
unlock blur

₹3.3 L/yr - ₹10.5 L/yr

Explore more salaries
Compare Forvia Hella with

Bosch

4.2
Compare

Spark Minda

3.9
Compare

Varroc Group

3.7
Compare

Exide Industries

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview