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

Clear (1)

Tata Elxsi Graduate Trainee Interview Questions, Process, and Tips

Updated 4 Apr 2024

Top Tata Elxsi Graduate Trainee Interview Questions and Answers

Tata Elxsi Graduate Trainee Interview Experiences

2 interviews found

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

I applied via Campus Placement and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Time and work , Coding questions (if -else) ,

Round 2 - Technical 

(2 Questions)

  • Q1. Explain the OOPs concept
  • Ans. 

    OOPs concept stands for Object-Oriented Programming, which is a programming paradigm based on the concept of objects.

    • OOPs focuses on creating objects that contain data and methods to manipulate that data

    • It involves concepts like inheritance, encapsulation, polymorphism, and abstraction

    • Example: Inheritance allows a class to inherit properties and methods from another class

  • Answered by AI
  • Q2. Write code for palindrome check
  • Ans. 

    Code to check if a given string is a palindrome

    • Iterate through the string from both ends and compare characters

    • Use built-in functions like reverse() to simplify the code

    • Consider ignoring spaces and punctuation for a more accurate check

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why TATA elxsi ?
  • Q2. Will you relocate

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Sep 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 Resume tips
Round 2 - Aptitude Test 

Aptitude questions and coding questions

Round 3 - Technical 

(2 Questions)

  • Q1. Write code of Diagonals sum in 2 d matrix
  • Ans. 

    Code to calculate the sum of diagonals in a 2D matrix.

    • Iterate through the rows and columns of the matrix.

    • Add the values of the diagonal elements to a variable.

    • Return the sum of the diagonal elements.

  • Answered by AI
  • Q2. Write code for max and min element in array
  • Ans. 

    Code for finding max and min element in an array

    • Initialize max and min variables with first element of array

    • Loop through the array and compare each element with max and min variables

    • Update max and min variables accordingly

    • Return max and min variables

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. About personality questions and included techincal questions and about my clg

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice well and crack it
Be prepared with basics of all programming languages

Skills evaluated in this interview

Graduate Trainee Interview Questions Asked at Other Companies

asked in Flipkart
Q1. Given an array, how do you get the count of pairs that sum to eve ... read more
asked in Freshworks
Q2. Invert a Binary Tree You are provided with a Binary Tree and one ... read more
asked in Freshworks
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Freshworks
Q4. Deepest Left Leaf Node Problem Statement You are provided with a ... read more
asked in TCS
Q5. Consonant Counting Problem Statement Given a string STR comprisin ... read more

Interview questions from similar companies

Trainee Interview Questions & Answers

HCLTech user image Hitesh Gupta

posted on 22 Aug 2017

Interview Questionnaire 

2 Questions

  • Q1. About database and normalisation
  • Q2. About your self

Interview Preparation Tips

Round: Technical Interview
Experience: Selected
Tips: Prepare basic knowledge about core subjects and your project

Round: HR Interview
Experience: Selected
Tips: Prepare basic knowledge about core subjects and your project

College Name: LNCT bhopal

I applied via Campus Placement and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Sql
  • Q2. Joins

Interview Preparation Tips

Interview preparation tips for other job seekers - Bad

I applied via Campus Placement and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

It is very easy

Round 2 - HR 

(3 Questions)

  • Q1. Why should we hire you?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepared on aptitude exam

Trainee Interview Questions & Answers

Wipro user image Anonymous

posted on 26 Jan 2021

Interview Questionnaire 

5 Questions

  • Q1. Tell me about yourself
  • Q2. Educational background
  • Q3. Family background
  • Q4. Project
  • Q5. What skills do u have? Differentiate between them

I applied via Naukri.com and was interviewed before Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me something about the company
  • Q2. When can you join

Interview Preparation Tips

Interview preparation tips for other job seekers - Just say yes whatever asked

Trainee Interview Questions & Answers

Hexaware Technologies user image Nallathambi Nallathambi

posted on 8 Mar 2021

Interview Questionnaire 

2 Questions

  • Q1. My education
  • Q2. DEEE
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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a very decent experience. The interview was good
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

One hour aptitude test

Round 2 - Technical 

(1 Question)

  • Q1. What is indexing in SQL?
  • Ans. 

    Indexing in SQL is a technique used to improve the performance of queries by creating indexes on columns in a database table.

    • Indexes are created on columns in a table to speed up the retrieval of data.

    • They work similar to the index in a book, allowing the database to quickly locate the rows that match a certain criteria.

    • Indexes can be created using the CREATE INDEX statement in SQL.

    • Examples: CREATE INDEX idx_lastname O

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just cover the basics of

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Tata Elxsi Interview FAQs

How many rounds are there in Tata Elxsi Graduate Trainee interview?
Tata Elxsi interview process usually has 3-4 rounds. The most common rounds in the Tata Elxsi interview process are HR, Aptitude Test and Technical.
What are the top questions asked in Tata Elxsi Graduate Trainee interview?

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

  1. Write code of Diagonals sum in 2 d mat...read more
  2. Write code for max and min element in ar...read more
  3. Write code for palindrome ch...read more

Recently Viewed

INTERVIEWS

Data Patterns

No Interviews

JOBS

Sansera Engineering

No Jobs

SALARIES

Sankalp Semiconductor

INTERVIEWS

Tata Elxsi

No Interviews

JOBS

Schneider Electric

No Jobs

JOBS

Hydro Prokav Pumps

No Jobs

INTERVIEWS

Sage Business Technology

No Interviews

INTERVIEWS

Flex

100 top interview questions

DESIGNATION

JOBS

Telexa Technology

No Jobs

Tell us how to improve this page.

Tata Elxsi Graduate Trainee Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Tata Elxsi Graduate Trainee Salary
based on 5 salaries
₹3.4 L/yr - ₹3.5 L/yr
10% less than the average Graduate Trainee Salary in India
View more details

Tata Elxsi Graduate Trainee Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

2.0

Skill development

3.0

Work-life balance

3.0

Salary

2.0

Job security

3.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Engineer
4.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Specialist
2.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
1.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
648 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Tata Elxsi with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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