Upload Button Icon Add office photos

Filter interviews by

Elektrobit Automotive India Interview Questions and Answers

Updated 30 Jul 2022
Popular Designations

9 Interview questions

A Graduate Engineer Trainee (Get) was asked
Q. What is the difference between a structure and a union?
Ans. 

Structure is a user-defined data type that groups related variables of different data types. Union is a data type that allows storing different data types in the same memory location.

  • Structure allocates memory for all its members separately.

  • Union allocates memory for only one member at a time.

  • Structure is used when all members need to be accessed at the same time.

  • Union is used when only one member needs to be acce...

View all Graduate Engineer Trainee (Get) interview questions
A Graduate Engineer Trainee (Get) was asked
Q. Explain the volatile keyword.
Ans. 

Volatile is a keyword in programming that indicates a variable's value can change at any time.

  • Volatile is used to declare variables whose values can be changed by external factors.

  • It is commonly used in multi-threaded programming to ensure that the latest value of a variable is always used.

  • Volatile variables are not optimized by the compiler and are always read from memory.

  • Examples of volatile variables include ha...

View all Graduate Engineer Trainee (Get) interview questions
A Graduate Engineer Trainee (Get) was asked
Q. What is a Stack?
Ans. 

A stack is a data structure that follows the Last-In-First-Out (LIFO) principle.

  • Elements are added and removed from the top of the stack.

  • Common operations include push (add element), pop (remove element), and peek (access top element).

  • Stacks can be implemented using arrays or linked lists.

  • Example: Undo/Redo functionality in a text editor.

View all Graduate Engineer Trainee (Get) interview questions
A Graduate Engineer Trainee (Get) was asked
Q. What is the condition for a stack overflow?
Ans. 

Stack overflow occurs when the call stack exceeds its maximum limit.

  • Stack overflow happens when a function calls itself indefinitely, causing the call stack to fill up.

  • It can also occur when a function recursively calls other functions, causing the call stack to exceed its limit.

  • Stack overflow can be prevented by optimizing recursive functions or increasing the maximum stack size.

View all Graduate Engineer Trainee (Get) interview questions
A Graduate Engineer Trainee (Get) was asked
Q. Write an ISR that accepts an integer argument and returns an integer value.
Ans. 

An ISR that accepts an int argument and returns an int value.

  • An ISR (Interrupt Service Routine) is a function that is executed in response to an interrupt.

  • The ISR should have a return type of int and accept an int argument.

  • The ISR can perform any necessary operations and return an int value.

  • Here's an example of an ISR in C language: int myISR(int arg) { // code goes here }

View all Graduate Engineer Trainee (Get) interview questions
A Graduate Engineer Trainee (Get) was asked
Q. Explain Maskable Interrupts.
Ans. 

Maskable interrupts are interrupts that can be disabled or enabled by the programmer.

  • Maskable interrupts can be controlled by setting or clearing bits in a register.

  • They can be used to prioritize interrupts and prevent lower priority interrupts from interrupting higher priority ones.

  • Examples of maskable interrupts include keyboard interrupts and timer interrupts.

  • Maskable interrupts are different from non-maskable ...

View all Graduate Engineer Trainee (Get) interview questions
A Graduate Engineer Trainee (Get) was asked
Q. Explain interrupts.
Ans. 

Interrupts are signals that temporarily halt the CPU's current task to execute a higher priority task.

  • Interrupts are used to handle events that require immediate attention

  • They can be hardware or software generated

  • Interrupts have a priority level that determines which one is executed first

  • Examples include keyboard input, mouse movement, and system calls

View all Graduate Engineer Trainee (Get) interview questions
Are these interview questions helpful?
A Graduate Engineer Trainee (Get) was asked
Q. How can a single variable be used across three different files such that accessing it always returns the updated value?
Ans. 

Use a shared variable across multiple files by utilizing global variables or external storage methods.

  • 1. Use a global variable in a header file: Define the variable in a header file and include it in all source files.

  • 2. Use extern keyword: Declare the variable as extern in other files to access the same instance.

  • 3. Use a configuration file: Store the variable in a file and read/write it using file I/O functions.

View all Graduate Engineer Trainee (Get) interview questions
A Graduate Engineer Trainee (Get) was asked
Q. What is RAM and ROM explain the difference.
Ans. 

RAM and ROM are types of computer memory. RAM is volatile and used for temporary storage, while ROM is non-volatile and used for permanent storage.

  • RAM stands for Random Access Memory and is used for temporary storage of data and programs while the computer is running.

  • ROM stands for Read-Only Memory and is used for permanent storage of data and programs that cannot be changed.

  • RAM is volatile, meaning that its conte...

View all Graduate Engineer Trainee (Get) interview questions

Elektrobit Automotive India Interview Experiences

3 interviews found

I applied via Referral and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. How to use A single variable in 3 different files and when ever accessed it should give the updated value!
  • Ans. 

    Use a shared variable across multiple files by utilizing global variables or external storage methods.

    • 1. Use a global variable in a header file: Define the variable in a header file and include it in all source files.

    • 2. Use extern keyword: Declare the variable as extern in other files to access the same instance.

    • 3. Use a configuration file: Store the variable in a file and read/write it using file I/O functions.

  • Answered by AI
  • Q2. Explain Interrupts
  • Ans. 

    Interrupts are signals that temporarily halt the CPU's current task to execute a higher priority task.

    • Interrupts are used to handle events that require immediate attention

    • They can be hardware or software generated

    • Interrupts have a priority level that determines which one is executed first

    • Examples include keyboard input, mouse movement, and system calls

  • Answered by AI
  • Q3. Explain Maskable Interrupts
  • Ans. 

    Maskable interrupts are interrupts that can be disabled or enabled by the programmer.

    • Maskable interrupts can be controlled by setting or clearing bits in a register.

    • They can be used to prioritize interrupts and prevent lower priority interrupts from interrupting higher priority ones.

    • Examples of maskable interrupts include keyboard interrupts and timer interrupts.

    • Maskable interrupts are different from non-maskable inter...

  • Answered by AI
  • Q4. Write an ISR with Accepts an Int arguement and Returns an int value
  • Ans. 

    An ISR that accepts an int argument and returns an int value.

    • An ISR (Interrupt Service Routine) is a function that is executed in response to an interrupt.

    • The ISR should have a return type of int and accept an int argument.

    • The ISR can perform any necessary operations and return an int value.

    • Here's an example of an ISR in C language: int myISR(int arg) { // code goes here }

  • Answered by AI
  • Q5. Conditon for Stack overflow
  • Ans. 

    Stack overflow occurs when the call stack exceeds its maximum limit.

    • Stack overflow happens when a function calls itself indefinitely, causing the call stack to fill up.

    • It can also occur when a function recursively calls other functions, causing the call stack to exceed its limit.

    • Stack overflow can be prevented by optimizing recursive functions or increasing the maximum stack size.

  • Answered by AI
  • Q6. What is Stack
  • Ans. 

    A stack is a data structure that follows the Last-In-First-Out (LIFO) principle.

    • Elements are added and removed from the top of the stack.

    • Common operations include push (add element), pop (remove element), and peek (access top element).

    • Stacks can be implemented using arrays or linked lists.

    • Example: Undo/Redo functionality in a text editor.

  • Answered by AI
  • Q7. What is the difference between STRUCTURE AND union
  • Ans. 

    Structure is a user-defined data type that groups related variables of different data types. Union is a data type that allows storing different data types in the same memory location.

    • Structure allocates memory for all its members separately.

    • Union allocates memory for only one member at a time.

    • Structure is used when all members need to be accessed at the same time.

    • Union is used when only one member needs to be accessed ...

  • Answered by AI
  • Q8. Explain volatile
  • Ans. 

    Volatile is a keyword in programming that indicates a variable's value can change at any time.

    • Volatile is used to declare variables whose values can be changed by external factors.

    • It is commonly used in multi-threaded programming to ensure that the latest value of a variable is always used.

    • Volatile variables are not optimized by the compiler and are always read from memory.

    • Examples of volatile variables include hardwar...

  • Answered by AI
  • Q9. What is RAM and ROM explain the difference.
  • Ans. 

    RAM and ROM are types of computer memory. RAM is volatile and used for temporary storage, while ROM is non-volatile and used for permanent storage.

    • RAM stands for Random Access Memory and is used for temporary storage of data and programs while the computer is running.

    • ROM stands for Read-Only Memory and is used for permanent storage of data and programs that cannot be changed.

    • RAM is volatile, meaning that its contents a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Answersing Everything isn't Important. but you should be able to answer most of them. stay confident in what you know and what you dont!

Skills evaluated in this interview

I applied via Referral and was interviewed in Jun 2022. There were 5 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 questions on Java, Android Framework, testing setup and usage.
Round 3 - Technical 

(1 Question)

  • Q1. In depth questions in Android framework
Round 4 - Technical 

(1 Question)

  • Q1. Managerial round basic questions on past projects etc
Round 5 - HR 

(1 Question)

  • Q1. Normal introduction and salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for techincal qustions.
Test suite knowledge is must.

I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1.About C programming and basic questions of c , Protocols regarding SPI, I2C, UART and 8051 microcontroller and regarding graduation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and tell the genuine details and be prepare well. All the best guys

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Elektrobit Automotive India?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. Basic Electronics
  • Q2. Microcontrollers and Microprocessors
  • Q3. C Programming

Interview Questionnaire 

1 Question

  • Q1. About GD&T
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

They will ask two sections one is c competative coding and aptitude if you can answer one section clearly go with it they will surely select you for the next round

Round 2 - Coding Test 

They will give three questions based on your preferred language you have to answer atleast the logic behind each questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on what you are doing and be strong on the basics

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Core Java - OOPS features, Abstract classes and Interface, Inner Classes, String and Object Class, Equals and HashCode methods, Runtime and Compile time exception, Method overloading and overriding, Cus...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Clear Core java concepts firmly
2. Basic DB queries
3. Basic Unix commands
Are these interview questions helpful?

I applied via Campus Placement and was interviewed before Nov 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 - Aptitude Test 

Numerical and logical aptitude test

Round 3 - Coding Test 

There are 5 rounds on datastructure and algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice hr and all team is suportive
Good and smoth interview experiance

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

This was a Data Structural round.

  • Q1. 

    Distinct Islands Problem Statement

    Given a two-dimensional array/list consisting of integers 0s and 1s, where 1 represents land and 0 represents water, determine the number of distinct islands. A group of...

  • Ans. 

    Count the number of distinct islands in a 2D array of 0s and 1s.

    • Identify islands by performing depth-first search (DFS) on the grid

    • Use a set to store the shape of each island and check for duplicates

    • Consider translations to determine distinct islands

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

This was a Data Structural round.

  • Q1. 

    Word Wrap Problem Statement

    You are tasked with arranging 'N' words of varying lengths such that each line contains at most 'M' characters, with each word separated by a space. The challenge is to minimiz...

  • Ans. 

    The goal is to minimize the total cost of arranging 'N' words on each line with a maximum character limit 'M'.

    • Calculate the cost of each line as the cube of extra space characters needed to reach 'M'.

    • Minimize the total cost by arranging words to fit within the character limit on each line.

    • Ensure each word appears fully on one line without breaking across lines.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was a System Design round.

  • Q1. Can you design a system similar to Red Bus that can handle bookings and onboard both vendors and customers to the platform?
  • Ans. 

    Design a system similar to Red Bus for handling bookings and onboarding vendors and customers.

    • Implement a user-friendly interface for customers to search and book tickets

    • Create a vendor portal for vendors to manage their offerings and availability

    • Include payment gateway integration for secure transactions

    • Develop a robust backend system for managing bookings, cancellations, and refunds

    • Utilize a database to store user in...

  • Answered by AI
Round 4 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

This was a System Design round

Round 5 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

This was an HR round.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Indian Institute of Technology Roorkee. Microsoft interview preparation:Topics to prepare for the interview - Graphs, Dynamic Programming, Arrays, LinkedList, stringsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice as much as you can.
Tip 2 : Prepare for company, not in general.
Tip 3 : Your past work should be objective and your contribution should be very clear

Application resume tips for other job seekers

Tip 1 : Keep only relevant things for the job you are applying.
Tip 2 : Minimal data with measurable contribution and effect.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Referral and was interviewed before Aug 2020. There were 5 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and should communicate well in English. Be Truth.

Elektrobit Automotive India Interview FAQs

How many rounds are there in Elektrobit Automotive India interview?
Elektrobit Automotive India interview process usually has 5 rounds. The most common rounds in the Elektrobit Automotive India interview process are Technical, Resume Shortlist and HR.
How to prepare for Elektrobit Automotive India 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 Elektrobit Automotive India. The most common topics and skills that interviewers at Elektrobit Automotive India expect are Automotive, Linux, Python, AUTOSAR and C++.
What are the top questions asked in Elektrobit Automotive India interview?

Some of the top questions asked at the Elektrobit Automotive India interview -

  1. How to use A single variable in 3 different files and when ever accessed it sho...read more
  2. Write an ISR with Accepts an Int arguement and Returns an int va...read more
  3. what is RAM and ROM explain the differen...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 900 Interviews
Oracle Interview Questions
3.7
 • 896 Interviews
Zoho Interview Questions
4.2
 • 540 Interviews
Amdocs Interview Questions
3.7
 • 533 Interviews
KPIT Technologies Interview Questions
3.3
 • 307 Interviews
SAP Interview Questions
4.2
 • 291 Interviews
Adobe Interview Questions
3.9
 • 248 Interviews
View all

Elektrobit Automotive India Reviews and Ratings

based on 15 reviews

4.2/5

Rating in categories

4.3

Skill development

4.4

Work-life balance

4.0

Salary

4.3

Job security

4.3

Company culture

4.1

Promotions

4.2

Work satisfaction

Explore 15 Reviews and Ratings
Team Lead

Bangalore / Bengaluru

10-15 Yrs

Not Disclosed

Team Lead IT Infrastructure

Bangalore / Bengaluru

12-20 Yrs

Not Disclosed

Explore more jobs
Executive Engineer
26 salaries
unlock blur

₹6.8 L/yr - ₹13 L/yr

Senior Software Engineer
21 salaries
unlock blur

₹8.5 L/yr - ₹16.5 L/yr

Senior Engineer
20 salaries
unlock blur

₹9.4 L/yr - ₹15.5 L/yr

Module Lead
14 salaries
unlock blur

₹12.4 L/yr - ₹20.1 L/yr

Technical Specialist
7 salaries
unlock blur

₹17 L/yr - ₹24.9 L/yr

Explore more salaries
Compare Elektrobit Automotive India with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Carelon Global Solutions

3.8
Compare

Automatic Data Processing (ADP)

4.0
Compare
write
Share an Interview