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 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 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 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
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Elektrobit Automotive India?
Ask anonymously on communities.

Interview questions from similar companies

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

Interview Questionnaire 

3 Questions

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

Interview Questionnaire 

1 Question

  • Q1. About GD&T

I applied via Monster and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared
Are these interview questions helpful?

Interview Preparation Tips

Round: Test
Experience: Approx. 30.questions in 50 min
Tips: Try solving each que in less than a minute ,don't waste time on difficult questions, complete easier once first
Duration: 50 minutes
Total Questions: 30

College Name: Pimpri chinchwad college of engineering

Interview Questionnaire 

2 Questions

  • Q1. Salary discussion and notice period
  • Q2. Core java, collections and coding

Interview Preparation Tips

Round: Manager Round
Experience: About project and previous company experience , daily activity

Interview Questionnaire 

2 Questions

  • Q1. About what we worked in previous company project
  • Q2. General C programming questions and previous company project questions

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, Python, AUTOSAR, Linux 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
 • 892 Interviews
Oracle Interview Questions
3.7
 • 892 Interviews
Zoho Interview Questions
4.3
 • 533 Interviews
Amdocs Interview Questions
3.7
 • 529 Interviews
KPIT Technologies Interview Questions
3.3
 • 304 Interviews
SAP Interview Questions
4.2
 • 291 Interviews
Adobe Interview Questions
3.9
 • 247 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.9
Compare

Automatic Data Processing (ADP)

4.0
Compare
write
Share an Interview