Upload Button Icon Add office photos

Filter interviews by

Elektrobit India Module Lead Interview Questions and Answers

Updated 18 Jan 2025

Elektrobit India Module Lead Interview Experiences

5 interviews found

Module Lead Interview Questions & Answers

user image Anonymous

posted on 24 Oct 2024

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

(1 Question)

  • Q1. Salary discussion

Module Lead Interview Questions & Answers

user image Anonymous

posted on 26 Mar 2022

Round 1 - Technical 

(1 Question)

  • Q1. Basic automotive questions
Round 2 - Technical 

(1 Question)

  • Q1. Managerial round and basic technical
Round 3 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basic Autosar questions

Module Lead Interview Questions Asked at Other Companies

Q1. 1) describe the Cloud architecture for the azure storage, blob , ... read more
asked in Mphasis
Q2. Java QuestionHow can you create a Singleton class in Java?
asked in LTIMindtree
Q3. 1. Difference between calculate and filter function. 2. What is p ... read more
asked in LTIMindtree
Q4. 1. Difference between sum and sumx function in power bi. 2. What ... read more
asked in Ciena
Q5. Given a list of numbers in an array ,traverse the array in a way ... read more

Module Lead Interview Questions & Answers

user image Abhishek Tiwari

posted on 22 May 2023

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

I applied via Naukri.com and was interviewed before May 2022. 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 - Technical 

(1 Question)

  • Q1. Questions related to skills in Resume Questions related to Job Requirement Questions related to SDLC
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round Questions on how process followed Questions related to previous work experience
Round 4 - HR 

(1 Question)

  • Q1. Questions on EB

Module Lead Interview Questions & Answers

user image Anonymous

posted on 29 Aug 2021

I applied via Naukri.com and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Please go through data structures in any programming language.
  • Ans. 

    Data structures are used to organize and store data in a way that enables efficient access and modification.

    • Common data structures include arrays, linked lists, stacks, queues, trees, and graphs.

    • Arrays are used to store a collection of elements of the same data type.

    • Linked lists are used to store a collection of elements where each element points to the next element in the list.

    • Stacks are used to store elements in a la...

  • Answered by AI
  • Q2. Find a loop in a linked list
  • Ans. 

    Loop in a linked list can be found using Floyd's cycle-finding algorithm.

    • Floyd's cycle-finding algorithm uses two pointers, one moving at twice the speed of the other.

    • If there is a loop in the linked list, the two pointers will eventually meet.

    • To detect the starting point of the loop, reset one of the pointers to the head and move both pointers at the same speed.

    • The point at which they meet again will be the starting p

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on your concept and answers.

Skills evaluated in this interview

Elektrobit India interview questions for designations

 Technical Specialist

 (2)

 Senior Software Developer

 (1)

 Senior Software Engineer

 (1)

Module Lead Interview Questions & Answers

user image Anonymous

posted on 18 Jan 2025

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. No major deep technical questions. Just generic C++ usually which everyone asks. From Oops concepts till smart pointers
Round 2 - HR 

(1 Question)

  • Q1. HR discussion was ok.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

90 min MCQ +coding test on hackerrank.

Round 2 - Technical 

(2 Questions)

  • Q1. Sort colors DSA question
  • Q2. Detect cycle in a linked list
  • Ans. 

    Use Floyd's Tortoise and Hare algorithm to detect cycle in a linked list.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps.

    • If they meet at some point, there is a cycle in the linked list.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Was asked about why you want to join the company,my experience etc.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops concept ? SQL Queries ?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

60 MCQ questions are there

Round 2 - Technical 

(2 Questions)

  • Q1. Simple java questions are there
  • Q2. Array list vs Linked List
  • Ans. 

    Array list is faster for accessing elements by index, while Linked List is better for frequent insertions and deletions.

    • Array list has constant time access to elements by index, while Linked List requires traversing the list to find an element.

    • Linked List is better for frequent insertions and deletions as it only requires changing pointers, while Array list may require shifting elements.

    • Array list uses contiguous memor...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

About front end , html, css, reasoning,

Round 2 - Technical 

(1 Question)

  • Q1. What.is let , var, const
  • Ans. 

    let, var, and const are keywords used in JavaScript to declare variables with different scopes and mutability.

    • let is used to declare variables with block scope and allows reassignment

    • var is used to declare variables with function scope and allows redeclaration

    • const is used to declare variables with block scope and does not allow reassignment, but the value can still be mutable

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is angular
  • Ans. 

    Angular is a popular open-source front-end web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem of libraries and tools.

    • Examples: AngularJS, Angular 2, A...

  • Answered by AI
  • Q2. Services in angular
  • Ans. 

    Services in Angular are singleton objects that can be used to share data and functionality across components.

    • Services are used to encapsulate reusable functionality, such as data fetching, logging, or authentication.

    • Services can be injected into components, directives, or other services using Angular's dependency injection system.

    • Services are typically defined using the @Injectable decorator.

    • Example: A DataService serv...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Communication skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good for freshers

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is angular
  • Ans. 

    Angular is a popular open-source front-end web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem with many libraries and tools available.

  • Answered by AI
  • Q2. What is an angular
  • Ans. 

    Angular is a popular open-source web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem with many libraries and tools available.

  • Answered by AI

Skills evaluated in this interview

Elektrobit India Interview FAQs

How many rounds are there in Elektrobit India Module Lead interview?
Elektrobit India interview process usually has 2-3 rounds. The most common rounds in the Elektrobit India interview process are Technical, HR and Resume Shortlist.
How to prepare for Elektrobit India Module Lead 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 India. The most common topics and skills that interviewers at Elektrobit India expect are Automotive, AUTOSAR, Embedded C, Information Technology and Configuration management.
What are the top questions asked in Elektrobit India Module Lead interview?

Some of the top questions asked at the Elektrobit India Module Lead interview -

  1. Please go through data structures in any programming langua...read more
  2. Find a loop in a linked l...read more
  3. Questions related to skills in Resume Questions related to Job Requirement Ques...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 Elektrobit India interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
NTT Data Interview Questions
3.9
 • 593 Interviews
Bosch Interview Questions
4.2
 • 328 Interviews
Tata Elxsi Interview Questions
3.9
 • 291 Interviews
KPIT Technologies Interview Questions
3.5
 • 290 Interviews
HARMAN Interview Questions
3.8
 • 252 Interviews
View all
Elektrobit India Module Lead Salary
based on 76 salaries
₹10.7 L/yr - ₹24 L/yr
24% more than the average Module Lead Salary in India
View more details

Elektrobit India Module Lead Reviews and Ratings

based on 9 reviews

4.1/5

Rating in categories

4.0

Skill development

4.2

Work-Life balance

3.7

Salary & Benefits

4.8

Job Security

3.9

Company culture

3.8

Promotions/Appraisal

3.8

Work Satisfaction

Explore 9 Reviews and Ratings
Executive Engineer
91 salaries
unlock blur

₹6.2 L/yr - ₹17.7 L/yr

Senior Engineer
89 salaries
unlock blur

₹9.2 L/yr - ₹20.3 L/yr

Module Lead
76 salaries
unlock blur

₹10.6 L/yr - ₹24 L/yr

Senior Technical Specialist
42 salaries
unlock blur

₹22 L/yr - ₹33.3 L/yr

Senior Software Engineer
34 salaries
unlock blur

₹10 L/yr - ₹24.8 L/yr

Explore more salaries
Compare Elektrobit India with

Bosch

4.2
Compare

Continental

3.9
Compare

HARMAN

3.8
Compare

Tata Elxsi

3.9
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