Upload Button Icon Add office photos

Filter interviews by

Faurecia Software Developer Intern Interview Questions and Answers

Updated 20 Jul 2022

Faurecia Software Developer Intern Interview Experiences

1 interview found

I applied via Company Website and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. To introduce urself. About ur career background. Your educational details. Previous job details related yo project.
  • Q2. Maily focus on the projects u done. All question related what u mentions in CV. Basic of Embedded C, communication protocol.
  • Q3. CAN, LIN related questions, logical question
Round 2 - HR 

(1 Question)

  • Q1. Intro about Ur Self, last CTC, Whole Communication process takes in CAR? And some technical question

Interview Preparation Tips

Interview preparation tips for other job seekers - Do all basics things. And Be confident.
All the best. Whole process takes place in 1day only so get result in day.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Silchar and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Normal Math and Logical reasoning

Round 2 - Coding Test 

Solving a puzzle using Code

Round 3 - Technical 

(2 Questions)

  • Q1. Explain About the Project in the Resume
  • Q2. DBMS and SQL quries
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Asked about projects

Round 2 - Technical 

(1 Question)

  • Q1. Some basic C coding question
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 Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance allows a child class to override a method from its parent class, providing different func

  • Answered by AI
  • Q2. Why You choose java
  • Ans. 

    I chose Java for its platform independence, strong community support, and extensive libraries.

    • Platform independence allows Java code to run on any device with a JVM

    • Strong community support ensures access to resources and help when needed

    • Extensive libraries provide pre-built solutions for common programming tasks

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How would you preprocess the raw data
  • Ans. 

    Preprocessing raw data involves cleaning, transforming, and organizing data to make it suitable for analysis.

    • Remove any irrelevant or duplicate data

    • Handle missing values by imputation or deletion

    • Normalize or standardize numerical data

    • Encode categorical variables using techniques like one-hot encoding

    • Feature scaling for machine learning algorithms

    • Perform text preprocessing like tokenization and stemming

  • Answered by AI
  • Q2. How would you specify a solution that has been already existing
  • Ans. 

    Specify the existing solution by documenting its architecture, components, technologies used, and any modifications made.

    • Document the architecture of the solution, including high-level components and their interactions

    • List the technologies used in the solution, such as programming languages, frameworks, and databases

    • Describe any modifications or customizations made to the existing solution

    • Include any performance metric...

  • Answered by AI

Skills evaluated in this interview

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:
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 - 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 - HR 

(1 Question)

  • Q1. What was your most difficult taks at work and how did you deal with it?
Round 2 - Technical 

(1 Question)

  • Q1. What is difference between mallock ( C ) and "new" ( C++ )
  • Ans. 

    malloc is a function in C used to allocate memory dynamically, while 'new' is an operator in C++ used for the same purpose.

    • malloc is a function in C, while 'new' is an operator in C++.

    • malloc returns a void pointer, while 'new' returns a pointer of the specified type.

    • malloc does not call constructors, while 'new' calls constructors for the allocated memory.

    • malloc requires manual memory deallocation with free(), while 'n...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Moderate level aptitude but cutoff was at 75%

Round 2 - Technical 

(1 Question)

  • Q1. Mainly c, aptitude
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:
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 

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

Faurecia Interview FAQs

How many rounds are there in Faurecia Software Developer Intern interview?
Faurecia interview process usually has 2 rounds. The most common rounds in the Faurecia interview process are Technical and HR.

Tell us how to improve this page.

People are getting interviews through

based on 1 Faurecia interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Bosch Interview Questions
4.2
 • 328 Interviews
Varroc Group Interview Questions
3.7
 • 170 Interviews
UNO Minda Interview Questions
4.0
 • 158 Interviews
Yazaki Interview Questions
3.8
 • 128 Interviews
Valeo Interview Questions
4.0
 • 85 Interviews
DENSO Interview Questions
4.1
 • 70 Interviews
View all
Design Engineer
408 salaries
unlock blur

₹2.8 L/yr - ₹9 L/yr

Senior Design Engineer
330 salaries
unlock blur

₹4.2 L/yr - ₹13.5 L/yr

Product Design Engineer
141 salaries
unlock blur

₹6.5 L/yr - ₹15.3 L/yr

Production Engineer
108 salaries
unlock blur

₹1.5 L/yr - ₹6 L/yr

Senior Engineer
102 salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Explore more salaries
Compare Faurecia with

Bharat Forge

3.8
Compare

Samvardhana Motherson Group

3.8
Compare

Endurance Technologies

3.9
Compare

Sundaram Clayton

4.1
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