Upload Button Icon Add office photos
Engaged Employer

i

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

Aptiv Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Aptiv Embedded Software Engineer Interview Questions and Answers for Freshers

Updated 30 Aug 2023

Aptiv Embedded Software Engineer Interview Experiences for Freshers

1 interview found

I applied via Campus Placement and was interviewed in Jul 2022. There were 3 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 - Coding Test 

They will share the link of different languages for code test,
we need to select one language.
I had chosen c.

Round 3 - Technical 

(4 Questions)

  • Q1. 1. Introduce yourself
  • Q2. 2. About Project in detail what is ur role in it ..? define it..
  • Q3. 3. 1)Do you know about Autosar. 2)define function definition and function declaration. 3)difference between structure and union. 4) define Enumeration 5)what is microcontroller and microprocessor and its a...
  • Ans. 

    Interview questions for Embedded Software Engineer including Autosar, function definition, structure and union, microcontroller and microprocessor, and communication protocols.

    • Autosar is an automotive software architecture standard.

    • Function definition specifies the code to be executed by a function.

    • Function declaration specifies the function's name, return type, and parameters.

    • Structure is a collection of variables of ...

  • Answered by AI
  • Q4. Write a program on structure.? and by using pointers how we declare structures.
  • Ans. 

    A program on structures using pointers to declare them.

    • Use the 'struct' keyword to define a structure

    • Use the 'typedef' keyword to create a new type name for the structure

    • Use the '->' operator to access structure members through a pointer

    • Example: typedef struct { int x; int y; } Point; Point *p;

    • Example: p->x = 5; p->y = 10;

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Aptiv Embedded Software Engineer interview:
  • c
  • C++
  • Microcontroller
  • Protocols
  • AUTOSAR
Interview preparation tips for other job seekers - Good at basics is enough.
good at programing in which u know.?

Skills evaluated in this interview

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: more of experience gaining and learning new tricks of codding a program.
Tips: must focus on bugging and debugging the program.
Duration: 60 mins minutes

Skills: Coding Skills,
College Name: Invertis university
Motivation: bosch is a multinational company stating its rank worldwide.so anyone would to work with outstanding company.

I applied via Walk-in and was interviewed before Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Data structure and STA

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and don't try to be oversmart.

I applied via Approached by Company and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Embedded c ....................
Round 2 - Behavioral 

(1 Question)

  • Q1. Project ........,........
Round 3 - HR 

(1 Question)

  • Q1. Salary ....................

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy .........,..................................
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Dec 2021. There were 3 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. Basic digital electronics, micro controller related questions, c program, projects experience
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation, family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare motor control FOC theory to get higher chance

I applied via Naukri.com and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Technical understanding on ETHERNET AVB protocol.
  • Q2. Bluetooth Audio profile A2DP,Hfp
  • Q3. Linux device tree configuration
  • Q4. I2c speed in linux
  • Ans. 

    I2C is a communication protocol used to connect multiple devices in a network. In Linux, the speed of I2C can be configured.

    • I2C speed can be set using the 'i2cset' command in Linux

    • The speed can also be configured in the device tree

    • The maximum speed supported by the hardware should be considered when setting the speed

    • Different devices may require different speeds for optimal performance

  • Answered by AI
  • Q5. Gstreamer pipeline related question
  • Q6. Pulseaudio related
  • Q7. Compilation steps
  • Q8. What is pure virtual function
  • Ans. 

    A pure virtual function is a function declared in a base class without implementation, which must be overridden by derived classes.

    • Pure virtual functions are declared with the syntax: virtual void functionName() = 0;

    • Classes containing pure virtual functions are called abstract classes and cannot be instantiated.

    • Pure virtual functions provide a way to achieve polymorphism in C++.

    • Example: virtual void draw() = 0; // decl...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well have confidence in what u say. If u don't knw say it don't bluff

Skills evaluated in this interview

Round 1 - Technical 

(2 Questions)

  • Q1. Diff b/w c and embedded c
  • Ans. 

    Embedded C is a subset of the C programming language, specifically designed for programming embedded systems.

    • Embedded C is optimized for resource-constrained systems with limited memory and processing power.

    • It includes additional keywords and features for controlling hardware directly.

    • Embedded C often involves working with microcontrollers, sensors, and other hardware components.

    • Regular C can be used for general-purpos

  • Answered by AI
  • Q2. Diff b/w structure and union
  • Ans. 

    Structure is a collection of variables of different data types while union is a collection of variables of same data type.

    • Structure allocates memory for all its variables while union allocates memory for only one variable at a time.

    • Structure is used when we want to store different types of data while union is used when we want to store only one type of data.

    • Structure is accessed using dot operator while union is access...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well on basics of coding. c language , python, autosar

Skills evaluated in this interview

Round 1 - Aptitude Test 

It had quants,verbal and logical qns

Round 2 - Technical 

(2 Questions)

  • Q1. Asked me abt my project
  • Q2. Tell me about the webinars you attended

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready to answer all type of qns Be confident while you present yourself Take care of your manners
Round 1 - Technical 

(3 Questions)

  • Q1. Difference between structure and union?
  • Ans. 

    Structure is a collection of variables of different data types while union is a collection of variables of same data type.

    • Structure allocates memory for all its variables while union allocates memory for only one variable at a time.

    • Structure is used when we want to store different types of data while union is used when we want to store only one type of data.

    • Structure is accessed using dot operator while union is access...

  • Answered by AI
  • Q2. How to avoid dangling pointers?
  • Ans. 

    Dangling pointers can be avoided by setting them to NULL after freeing the memory they point to.

    • Always initialize pointers to NULL.

    • Set pointers to NULL after freeing the memory they point to.

    • Avoid accessing memory through a pointer after it has been freed.

    • Use smart pointers or garbage collection to automate memory management.

  • Answered by AI
  • Q3. Write a program to print Fibonacci series using recursion
  • Ans. 

    A program to print Fibonacci series using recursion.

    • Define a recursive function that takes an integer n as input

    • Base case: if n is 0 or 1, return n

    • Recursive case: return the sum of the previous two Fibonacci numbers

    • Call the recursive function with the desired number of terms and print the result

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

(1 Question)

  • Q1. What are your strengths in computer science?

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to focus more on coding. Try to solve coding challenges and learn from mistakes.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Embedded qns and oops qns
  • Q2. What is virtual function
  • Ans. 

    A virtual function is a function in a base class that is declared using the keyword 'virtual' and can be overridden by a function with the same signature in a derived class.

    • Virtual functions allow for dynamic polymorphism in object-oriented programming.

    • They are used to achieve runtime polymorphism by allowing a function to be called based on the type of object it is called on.

    • Virtual functions are declared in a base cl...

  • Answered by AI
  • Q3. 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.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q4. Please don't attend this interview
  • Q5. Idon'tknow hahab

Interview Preparation Tips

Interview preparation tips for other job seekers - Useless company w9rstu behaviour no offer

Skills evaluated in this interview

Aptiv Interview FAQs

How many rounds are there in Aptiv Embedded Software Engineer interview for freshers?
Aptiv interview process for freshers usually has 3 rounds. The most common rounds in the Aptiv interview process for freshers are Resume Shortlist, Coding Test and Technical.
How to prepare for Aptiv Embedded Software Engineer interview for freshers?
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 Aptiv. The most common topics and skills that interviewers at Aptiv expect are Embedded C, Embedded Software, Embedded Linux, C++ and Information Technology.
What are the top questions asked in Aptiv Embedded Software Engineer interview for freshers?

Some of the top questions asked at the Aptiv Embedded Software Engineer interview for freshers -

  1. 3. 1)Do you know about Autosar. 2)define function definition and function decla...read more
  2. write a program on structure.? and by using pointers how we declare structur...read more
  3. If technical goes well, it's almost done. This is just about company, CTC and o...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Bosch Interview Questions
4.2
 • 333 Interviews
MRF Tyres Interview Questions
3.7
 • 311 Interviews
Yazaki Interview Questions
3.8
 • 136 Interviews
JK Tyres Interview Questions
3.6
 • 96 Interviews
Valeo Interview Questions
4.0
 • 91 Interviews
Lucas-TVS Interview Questions
3.9
 • 74 Interviews
Brakes India Interview Questions
4.0
 • 71 Interviews
View all
Aptiv Embedded Software Engineer Salary
based on 67 salaries
₹4.5 L/yr - ₹16 L/yr
31% more than the average Embedded Software Engineer Salary in India
View more details

Aptiv Embedded Software Engineer Reviews and Ratings

based on 17 reviews

3.2/5

Rating in categories

3.7

Skill development

3.0

Work-life balance

2.9

Salary

2.7

Job security

3.0

Company culture

2.6

Promotions

3.3

Work satisfaction

Explore 17 Reviews and Ratings
Senior Software Engineer
755 salaries
unlock blur

₹8.7 L/yr - ₹22 L/yr

Software Engineer
408 salaries
unlock blur

₹4 L/yr - ₹14.2 L/yr

Advanced Software Engineer
395 salaries
unlock blur

₹11.4 L/yr - ₹26 L/yr

Technical Lead
388 salaries
unlock blur

₹14.2 L/yr - ₹33.5 L/yr

Engineer
175 salaries
unlock blur

₹3 L/yr - ₹10.5 L/yr

Explore more salaries
Compare Aptiv with

Bosch

4.2
Compare

Samvardhana Motherson Group

3.7
Compare

MRF Tyres

3.7
Compare

Yazaki

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