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 Graduate Trainee Interview Questions and Answers

Updated 4 Apr 2024

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 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 find the number of pairs that sum to a ... 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

Top trending discussions

View All
Interview Tips & Stories
2w
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.

Interview questions from similar companies

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 Recruitment Consulltant and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Group Discussion 

Keep your points straight.Dont fight or create fights and explain logic behind your point.

Round 2 - Coding Test 

They asked basic ds questions

Round 3 - HR 

(5 Questions)

  • Q1. What is your family background?
  • Q2. Why should we hire you?
  • Q3. Where do you see yourself in 5 years?
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and for MNC roles are not specific like developer or testing it's decided after training .So be open for any role and once you enter organization try your best to get in project or role you desire

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing to worry just be calm and honest.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
-

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Aptitude questions of medium level

Round 3 - Coding Test 

2 coding questions of medium level

Round 4 - Communication 

(2 Questions)

  • Q1. Question on the project
  • Q2. Computer networking, operating system,dsa

I applied via Campus Placement and was interviewed in Nov 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Reverse the linkedlist
  • Ans. 

    Reverse a linked list

    • Iterate through the linked list and change the direction of the pointers

    • Use three pointers to keep track of the current, previous and next nodes

    • Recursively reverse the linked list

  • Answered by AI
  • Q2. Reverse a number using recursion

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 2 initial written tests and after that 1 technical and 1 HR rounds.

Skills evaluated in this interview

Are these interview questions helpful?
Round 1 - Aptitude Test 
Round 2 - Coding Test 

Code 3 questions

Interview Preparation Tips

Interview preparation tips for other job seekers - DS algo with arrays and strings questions

I applied via Company Website and was interviewed in Aug 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

40 question asked 25 questions from aptitude and 15 questions from data structure and some from computer fundamental's, questions are easy to medium.

Round 2 - Coding Test 

3 Coding questions were asked in Coding round
First question from String
Second question from Array
3rd from Dynamic Programming

Round 3 - Technical 

(1 Question)

  • Q1. One coding question were asked Find missing and duplicate numbers from N Natural numbers array
  • Ans. 

    Find missing and duplicate numbers from N Natural numbers array

    • Iterate through the array and keep track of seen numbers using a hash set

    • For each number, check if it is already in the hash set. If yes, it is a duplicate. If not, add it to the set

    • After iterating through the array, the missing numbers are the ones not in the hash set

    • Alternatively, sort the array and check for duplicates and missing numbers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go for normal aptitude questions for 1st round.
Array and string questions for practice if 2 questions solved then you will get call for interview.
Practice questions from array string and linked list and some basic data structure topics.

I applied via Company Website and was interviewed in Sep 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

This round consisted of Aptitude and Computer Fundamental Questions.I don't remember exactly how many but I guess there were around 50 MCQ's. I might solved around 37+ correct questions.

Round 2 - Coding Test 

This round consisted of 3 Coding Questions. 1 Easy Medium, 1 Medium and 1 Hard Question.Solved first two and passed only 3 test cases in the third question.

Round 3 - Technical 

(2 Questions)

  • Q1. This round lasted for only 15 minutes and the interviewer asked me Two Sum Problem. Explained from Naive to Most Optimized solution, i.e O(N^2) to O(N).Gave him 3 solutions and the interviewer was satisfie...
  • Q2. Given an array find if there are two elements are present that sum to target, else return -1;
  • Ans. 

    Given an array find if there are two elements are present that sum to target, else return -1

    • Iterate through the array and for each element check if target - element is present in the array

    • Use a hash table to store the elements and their indices for faster lookup

    • If no such pair is found, return -1

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. General HR Questions like Strengths, Weaknesses, About Company and bit about my family background.

Interview Preparation Tips

Topics to prepare for Nagarro Trainee interview:
  • Data Structures
  • Algorithms
  • Java
  • DBMS
Interview preparation tips for other job seekers - Be strong in Basics and be clear with your answers.

Skills evaluated in this interview

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 Aptitude Test, Technical and HR.
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

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more
Tata Elxsi Graduate Trainee Salary
based on 4 salaries
₹3.5 L/yr - ₹4 L/yr
At par with 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.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 - ₹8.8 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹4 L/yr - ₹15 L/yr

Software Engineer
765 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