Upload Button Icon Add office photos

Filter interviews by

Tata Group System Engineer Interview Questions and Answers

Updated 19 May 2022

Tata Group System Engineer Interview Experiences

2 interviews found

I applied via Campus Placement and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Ninja Coding Round Basic Coding questions available on youtube or sources online

Round 2 - Technical 

(1 Question)

  • Q1. Panel of 2 people will ask basic technical questions and it depends on what you have mentioned in your resume
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions about relocation etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practise basic coding and math aptitude questions. To crack TCS

System Engineer Interview Questions & Answers

user image CodingNinjas

posted on 9 Nov 2021

I was interviewed in May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Easy

  • Q1. Check If Given Words Are Present In A String

    Given a string 'S' and a list 'wordList' that consists of 'N' distinct words. Let 'Wi' denote word at index 'i' in '...

  • Ans. Brute Force
    • This is an iterative approach.
    • Make a boolean vector ‘result’ of size ‘N’. Initially, all the elements of this vector should be ‘False’.
    • Run a loop where ‘i’ ranges from 0 to ‘N-1’  and for each word ‘Wi‘ present at ‘ith’ index of ‘wordList’, we will check whether ‘Wi‘ is a substring of string ‘S’ or not. This can be done as follow-:
               1.  If the length of ‘Wi’ is great...
  • Answered by CodingNinjas
Round 2 - Video Call 

(2 Questions)

Round duration - 20 Minutes
Round difficulty - Easy

  • Q1. Technical Questions

    What is OOPS? Give an example.
    Differentiate between Abstract class and interface and in which scenarios can they be used.
    Differentiate between sets and lists
    Differentiate between vector ...

  • Q2. Basic HR Questions

    What is your goal in life?
    Why do you want to join TCS?
    Why should we hire you?
    Are you willing to work overtime, nightshifts and weekends?
    Are you open to the idea of relocating?
    What do you ...

Interview Preparation Tips

Eligibility criteria6.75+ CGPATata interview preparation:Topics to prepare for the interview - Data Structures, OOPS, DBMS, OOPs, Algorithms, DP, GreedyTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Try solving Love Babbar 450 Prog questions
Tip 2 : Have a good resume
Tip 3 : Do learn some extra technologies eg. ML/AI

Application resume tips for other job seekers

Tip 1 : Do not lie at all
Tip 2 : Have some projects listed

Final outcome of the interviewSelected

System Engineer Interview Questions Asked at Other Companies

asked in TCS
Q1. Who Won the Election???Elections are going on, and there are two ... read more
asked in TCS iON
Q2. gcdYou are given two numbers, ‘X’ and ‘Y’. Your task is to find t ... read more
asked in Infosys
Q3. Count Ways To Reach The N-th StairsYou have been given a number o ... read more
asked in Infosys
Q4. Distinct Strings With Odd and Even Swapping AllowedYou are given ... read more
asked in Infosys
Q5. Maximum Subarray SumYou are given an array (ARR) of length N, con ... read more

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There are two main sections: foundation and advanced. The foundation section consists of three subsections: quantitative, reasoning, and verbal. If you pass the foundation section but do not clear the advanced section, you will be considered for either the ninja role or the digital role during the interview process. The advanced section includes advanced aptitude questions and two coding questions.

Round 2 - Technical 

(5 Questions)

  • Q1. Can you provide an introduction about yourself?
  • Q2. 3 to 4 questions based on database
  • Q3. 2 easy coding questions
  • Q4. Questions based on technology that I knew
  • Q5. Situation based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on the first round, as it can be quite challenging; once you pass it and are selected for an interview, the subsequent process feels considerably easier.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Its very easy
Basic maths questions learned up to 10
Basic Apptitude questions

Round 2 - Technical 

(5 Questions)

  • Q1. Tell me about your self Hi My name is Vikram Adithya I am an hard working and passionate engineering student currently perceiveing in gokaraju rangaraju institute of engineering and technology .I stay with...
  • Q2. Intervier asked about what kind of problems did you solved in leetcode? I said palindrome factorial matrix multiplication etc . Intervier said every one can solve this
  • Q3. He asked me about my project role i said I have done documentation in my project he said every one can do that
  • Q4. He asked me to write project code
  • Q5. He asked me any questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer carefully in infosys
If you crack it it is easy to get hired in infosys.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Design patterns
  • Q2. Sql interview questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Case study about the given requirement
  • Q2. Springboot basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare spring boot question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain lambda expression
  • Ans. 

    Lambda expression is a concise way to represent an anonymous function in programming languages.

    • Lambda expressions are used to create functions without a name.

    • They are often used in functional programming languages like Python and Java.

    • Lambda expressions can take parameters and return a value.

    • Example: (x, y) -> x + y is a lambda expression that takes two parameters and returns their sum.

  • Answered by AI
  • Q2. Why hibernate is better then jdbc
  • Ans. 

    Hibernate is better than JDBC due to its object-relational mapping capabilities, automatic table creation, and improved performance.

    • Hibernate provides object-relational mapping (ORM) which simplifies database interactions by mapping Java objects to database tables, eliminating the need for manual SQL queries.

    • Hibernate can automatically generate SQL queries based on the Java objects, reducing the amount of code that nee...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Filter names from a list that starts with A
  • Ans. 

    Filter names starting with A from a list of strings

    • Iterate through the list of strings

    • Check if each string starts with 'A'

    • Add the string to a new list if it starts with 'A'

  • Answered by AI
  • Q2. White query parameter and path variable

Skills evaluated in this interview

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

I applied via TCS and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What is hash technology?
  • Q2. What is block chain?
  • Q3. What is DML?
  • Q4. Convert binay to decimal and viceversa.
  • Q5. Find max number in array?
  • Q6. Write basic html , for inserting image and create table.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just have concept of Oops, one programming language, DBMS and SQL, core engineering subjects and just know definition of recent technology
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at SRM Institute of Science & Technology, Chennai and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Duration was 1.5 hrs. Questions were asked on topics like aptitude, reasoning , puzzle solving and verbal ability. Also a topic was given on which candidates were expected to write an essay. Overall the difficulty level was easy to medium.

Round 2 - One-on-one 

(8 Questions)

  • Q1. Introduce Yourself
  • Q2. Explain about your projects (mentioned in resume)
  • Q3. Have you got any certifications on cloud technologies?
  • Ans. 

    Yes, I have certifications in AWS and Azure cloud technologies.

    • Certified AWS Solutions Architect

    • Microsoft Certified: Azure Administrator Associate

    • Completed training courses on Google Cloud Platform

  • Answered by AI
  • Q4. What do you do in your free time?
  • Q5. Explain about Encapsulation (OOPS concept)
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit, known as a class.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • It allows for data hiding, which prevents outside code from directly accessing an object's internal state.

    • Access to the data is typically controlled through public methods (getters and setters) defined in the cl...

  • Answered by AI
  • Q6. Tell about your previous intern/work experience if any
  • Q7. What is the one thing that you can say about you for which haven't been noticed by others and credited?
  • Q8. Questions about schooling, CGPA in college

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for round 1 test from various youtube videos. It helped me to clear the 1st round. For interview, don't mention things you aren't confident enough in your resume. Prepare well on OOPS concepts, SQL concepts, SDLC concepts and do general research about the company like who is the current ceo, what products are they offering right now, company values, etc.

Skills evaluated in this interview

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

(4 Questions)

  • Q1. Recent challenges faced recent times
  • Ans. 

    The recent challenges faced in the field of System Engineering include adapting to remote work, cybersecurity threats, and managing complex systems.

    • Adapting to remote work due to the COVID-19 pandemic

    • Increased cybersecurity threats and the need for enhanced security measures

    • Managing complex systems with evolving technology and integration challenges

  • Answered by AI
  • Q2. How to troubleshoot DB errors
  • Ans. 

    Troubleshooting DB errors involves identifying the root cause, checking logs, verifying configurations, and testing queries.

    • Identify the specific error message or behavior

    • Check database logs for any relevant information

    • Verify database configurations and settings

    • Test the problematic queries to isolate the issue

    • Consider recent changes or updates that may have caused the error

  • Answered by AI
  • Q3. How to troubleshoot performance related error
  • Ans. 

    To troubleshoot performance related errors, analyze system logs, check resource utilization, identify bottlenecks, and optimize configurations.

    • Analyze system logs for any error messages or warnings related to performance issues

    • Check resource utilization such as CPU, memory, disk, and network usage

    • Identify bottlenecks in the system that may be causing performance degradation

    • Optimize configurations such as adjusting sett...

  • Answered by AI
  • Q4. How to handle P1 tickets
  • Ans. 

    P1 tickets are high priority issues that require immediate attention and resolution.

    • Acknowledge the ticket immediately to show the user that their issue is being addressed

    • Assess the severity of the issue and prioritize accordingly

    • Communicate with the user regularly to provide updates on the progress

    • Involve necessary stakeholders or teams to expedite resolution

    • Ensure proper documentation of the issue and resolution step

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude ,reasoning and english

Round 2 - Coding Test 

Medium level.of coding

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about yourself
  • Ans. 

    I am a dedicated System Engineer with a strong background in network infrastructure and troubleshooting.

    • Experienced in designing, implementing, and maintaining network systems

    • Proficient in troubleshooting hardware and software issues

    • Skilled in scripting languages such as Python and PowerShell

    • Certified in Cisco networking technologies

    • Strong communication and problem-solving skills

  • Answered by AI
  • Q2. Technical qns on java and the concepts in OOPS

Tata Group Interview FAQs

How many rounds are there in Tata Group System Engineer interview?
Tata Group interview process usually has 3 rounds. The most common rounds in the Tata Group interview process are Coding Test, Technical and HR.

Tell us how to improve this page.

People are getting interviews through

based on 1 Tata Group interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Tata Group System Engineer Salary
based on 43 salaries
₹2.1 L/yr - ₹11.2 L/yr
19% more than the average System Engineer Salary in India
View more details

Tata Group System Engineer Reviews and Ratings

based on 7 reviews

3.6/5

Rating in categories

4.2

Skill development

3.6

Work-Life balance

3.4

Salary & Benefits

4.6

Job Security

3.7

Company culture

3.7

Promotions/Appraisal

3.7

Work Satisfaction

Explore 7 Reviews and Ratings
Assistant Manager
116 salaries
unlock blur

₹3.8 L/yr - ₹15 L/yr

Manager
101 salaries
unlock blur

₹8 L/yr - ₹29 L/yr

Software Engineer
83 salaries
unlock blur

₹5 L/yr - ₹21 L/yr

Senior Manager
70 salaries
unlock blur

₹12 L/yr - ₹40 L/yr

Deputy Manager
47 salaries
unlock blur

₹5 L/yr - ₹18.1 L/yr

Explore more salaries
Compare Tata Group with

Reliance Industries

4.0
Compare

Aditya Birla Group

4.1
Compare

Mahindra & Mahindra

4.1
Compare

Bharti Enterprises

3.8
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