Upload Button Icon Add office photos
Engaged Employer

i

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

Tata Elxsi Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Tata Elxsi Interview Questions and Answers

Updated 24 Jun 2025
Popular Designations

150 Interview questions

A Senior Engineer - AUTOSAR Core Embedded was asked 3w ago
Q. What is the method to find duplicate elements in an array?
Ans. 

To find duplicate elements in an array, use a hash set to track occurrences efficiently.

  • 1. Use a hash set to store unique elements as you iterate through the array.

  • 2. For each element, check if it exists in the set. If it does, it's a duplicate.

  • 3. Example: For array ['apple', 'banana', 'apple', 'orange'], 'apple' is a duplicate.

  • 4. Alternatively, sort the array and check adjacent elements for duplicates.

A Java Developer was asked 1mo ago
Q. What is abstraction?
Ans. 

Abstraction is a fundamental OOP concept that hides complex implementation details, exposing only essential features to the user.

  • Abstraction allows focusing on what an object does instead of how it does it.

  • Example: In a car, you use the steering wheel to drive without knowing the mechanics behind it.

  • In Java, abstraction can be achieved using abstract classes and interfaces.

  • Example: An abstract class 'Animal' can d...

View all Java Developer interview questions
A Senior Engineer was asked 2mo ago
Q. Write a Gherkin test case for performing a backup process.
Ans. 

Gherkin test cases define the steps for a backup process in a clear, structured format for behavior-driven development.

  • Feature: Backup Process - This section describes the overall functionality being tested, e.g., 'Backing up user data to a secure location.'

  • Scenario: Successful Backup - A scenario that outlines the steps for a successful backup, e.g., 'Given the user is logged in, when they initiate a backup, then...

View all Senior Engineer interview questions
A Senior Engineer was asked 2mo ago
Q. What would be a sample test case for a pen writing mechanism?
Ans. 

A pen's writing mechanism should be tested for ink flow, durability, and user comfort during writing.

  • Ink Flow Test: Verify that the pen writes smoothly without skipping or blotting. Example: Write continuously for 5 minutes and check for consistency.

  • Durability Test: Assess the pen's ability to withstand drops or pressure. Example: Drop the pen from a height of 1 meter and check for functionality.

  • Comfort Test: Eval...

View all Senior Engineer interview questions
A Senior Engineer was asked 3mo ago
Q. What is a Data Structure?
Ans. 

Data structures are organized formats for storing and managing data efficiently for various operations.

  • 1. Definition: A data structure is a way of organizing data to enable efficient access and modification.

  • 2. Types: Common types include arrays, linked lists, stacks, queues, trees, and graphs.

  • 3. Arrays: Fixed-size structures that store elements of the same type in contiguous memory locations.

  • 4. Linked Lists: Colle...

View all Senior Engineer interview questions
A Senior Engineer was asked 3mo ago
Q. What are the core concepts of OOPS?
Ans. 

OOP concepts are foundational principles in software development that enhance code organization and reusability.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism to create a new class based on an existing class, inheriting its properties (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present the same interface ...

View all Senior Engineer interview questions
An Automation Engineer was asked 3mo ago
Q. What are your expectations from the company?
Ans. 

I expect a collaborative environment, opportunities for growth, and a focus on innovation in automation technologies.

  • A supportive team culture that encourages knowledge sharing and collaboration, like regular team brainstorming sessions.

  • Opportunities for professional development, such as training programs or certifications in the latest automation tools.

  • A focus on innovative projects that challenge my skills and a...

View all Automation Engineer interview questions
Are these interview questions helpful?
A Regulatory Engineer was asked 4mo ago
Q. What is the difference between design input and design output?
Ans. 

Design input is what the product should do, design output is what the product actually does.

  • Design input is the requirements and specifications provided by the customer or user.

  • Design output is the final product or system that meets the design input requirements.

  • Design input is the 'what', design output is the 'how'.

  • Examples: Design input - product must be waterproof. Design output - product passed waterproof test...

View all Regulatory Engineer interview questions
A Regulatory Engineer was asked 4mo ago
Q. What is the difference between design verification and design validation?
Ans. 

Design verification ensures the product is designed correctly, while design validation ensures the correct product is designed.

  • Design verification confirms that the design output meets the design input requirements.

  • Design validation confirms that the product meets user needs and intended use.

  • Verification is done before validation in the design process.

  • Verification can include activities like reviews, inspections, ...

View all Regulatory Engineer interview questions
A Regulatory Engineer was asked 4mo ago
Q. What approach would you take to submit a product for MDR compliance if you do not have the time to perform any testing?
Ans. 

Outsource testing to accredited laboratories, gather documentation and evidence of compliance, and work closely with notified bodies.

  • Outsource testing to accredited laboratories to meet MDR requirements.

  • Gather documentation and evidence of compliance from suppliers and manufacturers.

  • Work closely with notified bodies to ensure all necessary steps are taken for MDR submission.

View all Regulatory Engineer interview questions

Tata Elxsi Interview Experiences

317 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Concepts of Business analyst, project experience, knowledge about the tools used for business processing
Round 2 - Technical 

(2 Questions)

  • Q1. Technical details about telecom domain
  • Q2. Use cases about 5G & AI ML
  • Ans. 

    5G and AI/ML use cases are revolutionizing industries by enabling faster data processing and decision-making.

    • 5G enabling real-time data transmission for AI/ML algorithms

    • AI/ML optimizing network performance and resource allocation in 5G networks

    • AI-powered predictive maintenance for 5G infrastructure

    • AI-driven personalized content delivery over 5G networks

    • AI/ML enhancing cybersecurity measures in 5G networks

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Multithreading, Collection list
  • Q2. Java Program on Strings, Threads
Round 2 - Technical 

(2 Questions)

  • Q1. Project Explanation
  • Q2. Git Commands, Linux Commands
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Swap two variables without temp
  • Ans. 

    Use XOR operation to swap two variables without using a temporary variable

    • Use XOR operation to swap two variables without using a temporary variable

    • Example: a = 5, b = 10. a = a XOR b, b = a XOR b, a = a XOR b. Now a = 10, b = 5

  • Answered by AI
  • Q2. Multiply two matrices in CUDA
  • Ans. 

    Matrix multiplication in CUDA involves parallelizing the computation across multiple threads on the GPU.

    • Use CUDA kernels to launch parallel threads for matrix multiplication.

    • Divide the matrices into blocks and load them into shared memory for faster access.

    • Implement the matrix multiplication algorithm in CUDA C/C++.

    • Ensure proper memory management and synchronization between threads.

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

(1 Question)

  • Q1. Merge two sorted arrays
  • Ans. 

    Merge two sorted arrays into a single sorted array

    • Create a new array to store the merged result

    • Iterate through both arrays simultaneously and compare elements

    • Add the smaller element to the new array and move to the next element in that array

    • Continue until all elements from both arrays are merged

  • Answered by AI

Skills evaluated in this interview

Technician Interview Questions & Answers

user image Anonymous

posted on 16 Nov 2024

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

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is transformers working principle of transformers
  • Ans. 

    Transformers work on the principle of electromagnetic induction to transfer electrical energy between two or more circuits.

    • Transformers have two coils of wire, known as primary and secondary coils, which are magnetically coupled.

    • When an alternating current flows through the primary coil, it creates a changing magnetic field which induces a voltage in the secondary coil.

    • The ratio of the number of turns in the primary an...

  • Answered by AI
  • Q2. If 22 kv line fuse blows up u and another Operator present at site how u will replace the fuse and what safety measures will you take to replace fuse , what are the safety PPE (personal protection Equipme...
  • Ans. 

    To replace a blown 22 kv line fuse, safety measures include de-energizing the line, using proper PPE, and following proper procedures.

    • De-energize the line before attempting to replace the fuse

    • Use insulated tools to avoid electrical shock

    • Wear appropriate PPE such as rubber gloves, safety glasses, and flame-resistant clothing

    • Follow proper lockout/tagout procedures to ensure the line remains de-energized during the replac...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong at technical , showcase ur experience and knowledge about what u know . Be confident & all the best 👍
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Project execution details
  • Q2. Signal conditioning circuits

Engineer Interview Questions & Answers

user image Sundaravalli .S

posted on 21 Nov 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Very easy and comfortable

Round 2 - Technical 

(2 Questions)

  • Q1. Oops and java is the most asked topic
  • Q2. Inheritance, family background, passion
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why you want this job
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

It had aptitude along with 3 coding question

Round 2 - Technical 

(1 Question)

  • Q1. They asked about array, pointers
Round 3 - HR 

(1 Question)

  • Q1. About yourself, fav show, how will you handle yourself in pressure situations
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

30 questions combination of Logical, numeric, verbal and 2 coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Self Introduction
  • Q2. Questions on core Java concepts
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Your strength and weakness
  • Ans. 

    Strength: Problem-solving skills. Weakness: Overthinking.

    • Strength: I have strong problem-solving skills which help me in finding efficient solutions to complex issues.

    • Weakness: Sometimes I tend to overthink situations, which can lead to unnecessary stress and delays in decision-making.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in you expertise and be confident of what you know.

Engineer Interview Questions & Answers

user image Anonymous

posted on 3 Dec 2024

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

(2 Questions)

  • Q1. OOPS concept questions asked
  • Q2. Basic programming questions asked
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was basics, computer fundamentals, quants, logical coding.

Round 2 - Technical 

(2 Questions)

  • Q1. C++ and c differnce
  • Ans. 

    C++ is an object-oriented programming language with additional features compared to C.

    • C++ supports object-oriented programming concepts like classes and inheritance, while C does not.

    • C++ has a richer standard library compared to C.

    • C++ allows for function overloading and templates, which are not available in C.

  • Answered by AI
  • Q2. Swapping of numbers without using 3rd var
Round 3 - HR 

(2 Questions)

  • Q1. Ready for reallocation?
  • Q2. Puzzle related question was asked

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Tata Elxsi?
Ask anonymously on communities.

Tata Elxsi Interview FAQs

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

Some of the top questions asked at the Tata Elxsi interview -

  1. What is Quality Assurance. Difference between Quality assurance and Quality con...read more
  2. 1. Truth table for AND and OR ? 2. Draw inverter diagram? 3. Explain your proje...read more
  3. What are the examples of Memory leaks and how to solve th...read more
What are the most common questions asked in Tata Elxsi HR round?

The most common HR questions asked in Tata Elxsi interview are -

  1. What are your salary expectatio...read more
  2. Why are you looking for a chan...read more
  3. where do you see yourself in 5 yea...read more
How long is the Tata Elxsi interview process?

The duration of Tata Elxsi interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 295 interview experiences

Difficulty level

Easy 32%
Moderate 65%
Hard 3%

Duration

Less than 2 weeks 62%
2-4 weeks 23%
4-6 weeks 5%
6-8 weeks 3%
More than 8 weeks 6%
View more

Interview Questions from Similar Companies

LTIMindtree Interview Questions
3.7
 • 3k Interviews
Mphasis Interview Questions
3.3
 • 843 Interviews
DXC Technology Interview Questions
3.7
 • 836 Interviews
EXL Service Interview Questions
3.7
 • 801 Interviews
Nagarro Interview Questions
4.0
 • 791 Interviews
Hexaware Technologies Interview Questions
3.5
 • 756 Interviews
Sutherland Global Services Interview Questions
3.5
 • 690 Interviews
Optum Global Solutions Interview Questions
4.0
 • 671 Interviews
NTT Data Interview Questions
3.8
 • 656 Interviews
Publicis Sapient Interview Questions
3.5
 • 642 Interviews
View all

Tata Elxsi Reviews and Ratings

based on 2.5k reviews

3.7/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

3.1

Salary

4.0

Job security

3.6

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 2.5k Reviews and Ratings
QEMU, SystemC, TLM based Virtual ECU developer

Pune,

Chennai

+1

7-12 Yrs

Not Disclosed

Sales Director/Senior Sales Director

Pune,

Bangalore / Bengaluru

18-28 Yrs

Not Disclosed

Hiring For Security Specialist

Bangalore / Bengaluru

9-14 Yrs

Not Disclosed

Explore more jobs
Senior Engineer
4.8k salaries
unlock blur

₹4.4 L/yr - ₹14 L/yr

Specialist
2.7k salaries
unlock blur

₹7.7 L/yr - ₹26 L/yr

Engineer
1.5k salaries
unlock blur

₹2.8 L/yr - ₹7.4 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹4 L/yr - ₹15 L/yr

Software Engineer
764 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Explore more salaries
Compare Tata Elxsi with

TCS

3.6
Compare

LTIMindtree

3.7
Compare

DXC Technology

3.7
Compare

Mphasis

3.3
Compare
write
Share an Interview