Logo

Get AmbitionBox App

Faster and better experience!

AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Campus placements

      Interviews questions for 2K+ colleges

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    WINNERS AWAITED!
    • ABECA 2025
      WINNERS AWAITED!

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    • AmbitionBox Best Places to Work 2021

      1st Edition

For Employers
Upload Button Icon Add office photos
logo
Engaged Employer

i

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

TCS Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 95.7k Reviews

Play video Play video Video summary
  • About
  • Reviews
    95.7k
  • Salaries
    8.9L
  • Interviews
    10.9k
  • Jobs
    242
  • Benefits
    11.9k
  • Photos
    87
  • Posts
    90

Filter interviews by

TCS Assistant System Engineer Interview Questions and Answers

Updated 30 Apr 2025

87 Interview questions

An Assistant System Engineer was asked 3mo ago
Q. Can you provide an example of an ML project you have worked on?
Ans. 

Developed a machine learning model to predict customer churn in a telecom company.

  • Collected and cleaned customer data including usage patterns and demographics.

  • Used classification algorithms like Random Forest and Logistic Regression to train the model.

  • Evaluated model performance using metrics like accuracy, precision, and recall.

  • Implemented the model in a production environment to monitor and predict customer chu...

An Assistant System Engineer was asked 3mo ago
Q. Explain the concepts of Web API.
Ans. 

Web API concepts involve creating interfaces for communication between different software systems over the internet.

  • Web API stands for Application Programming Interface, which allows different software systems to communicate with each other over the internet.

  • Web APIs use HTTP protocols to define a set of rules for communication between systems.

  • Web APIs can be used to access data, services, or functionality from a ...

Assistant System Engineer Interview Questions Asked at Other Companies

asked in TCS
Q1. Constellation Identification Problem Given a matrix named UNIVERS ... read more
View answers (4)
asked in TCS
Q2. Given a string S consisting of '*' and '#', find the minimum numb ... read more
View answers (2)
asked in TCS
Q3. Space Survival Game Challenge Ninja is in space with unlimited fu ... read more
View answer (1)
asked in TCS
Q4. Prime Time Again Problem Statement You are given two integers DAY ... read more
View answer (1)
asked in TCS
Q5. Valid Pairs Problem Statement Given an array of integers ARR with ... read more
View answers (2)
View All
An Assistant System Engineer was asked 3mo ago
Q. What are the differences between the Agile and Waterfall models?
Ans. 

Agile is iterative and flexible, while waterfall is sequential and rigid.

  • Agile involves continuous feedback and adaptation, while waterfall follows a linear approach.

  • Agile is best suited for projects with changing requirements, while waterfall is better for projects with well-defined requirements.

  • Agile promotes collaboration and communication among team members, while waterfall focuses on documentation and formal ...

An Assistant System Engineer was asked 3mo ago
Q. What are the drawbacks of the Agile model?
Ans. 

Yes, there are drawbacks of Agile model.

  • Lack of predictability in terms of project timelines and deliverables

  • Difficulty in handling large and complex projects

  • Dependency on customer collaboration and feedback can sometimes slow down the process

  • Requires experienced team members for effective implementation

  • May lead to scope creep if not managed properly

What people are saying about TCS

View All
kirayagami1
Verified Icon
2w
works at
TCS
Exp - 5.10 Skill - React CCTC - 13 LPA Offer from Nagarro - 22 LPA(2L variable) Offer from Genpact (client is Morgan Stanley)- 24.6LPA.(All fixed) As far as I know, Nagarro may offer a work-from-home option later, which would help me save the most money. On the other hand, Morgan Stanley requires working from the office three days a week. Considering factors like work-life balance, work culture, and career growth, kindly suggest which would be the better choice.
Morgan Stanley or Nagarro
Nagarro
0%
Morgan Stanley
0%
173 participants . poll closed
Got a question about TCS?
Ask anonymously on communities.
An Assistant System Engineer was asked 3mo ago
Q. What are the differences between tuples and lists in Python?
Ans. 

Tuple is immutable, ordered collection of elements while list is mutable, ordered collection of elements in Python.

  • Tuple is created using parentheses () while list is created using square brackets []

  • Tuple elements cannot be changed once assigned while list elements can be modified

  • Tuple is faster than list for iteration and accessing elements

  • Example: tuple_example = (1, 2, 3) and list_example = [1, 2, 3]

🔥 Asked by recruiter 2 times
An Assistant System Engineer was asked 4mo ago
Q. What are the four pillars of OOPS?
Ans. 

Encapsulation, Inheritance, Polymorphism, Abstraction

  • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: Class with private data members and public methods.

  • Inheritance: Ability of a class to inherit properties and behavior from another class. Example: Subclass inheriting from a superclass.

  • Polymorphism: Ability to present the same interface for different data types. Exampl...

An Assistant System Engineer was asked 5mo ago
Q. Write some SQL queries using GROUP BY.
Ans. 

SQL queries using GROUP BY

  • Use GROUP BY to group rows that have the same values in specified columns

  • Aggregate functions like COUNT, SUM, AVG can be used with GROUP BY

  • Can use HAVING clause to filter grouped results

Are these interview questions helpful?
🔥 Asked by recruiter 6 times
An Assistant System Engineer was asked 5mo ago
Q. What are the concepts of OOP?
Ans. 

OOP (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

  • OOP focuses on creating objects that interact with each other to solve problems

  • Key principles include encapsulation, inheritance, and polymorphism

  • Encapsulation allows data to be hidden within an object, only accessible through methods

  • Inheritance allows objects to inherit properties and behav...

An Assistant System Engineer was asked 6mo ago
Q. How is Flutter different from other mobile technologies?
Ans. 

Flutter is a cross-platform mobile development framework created by Google, allowing developers to build native-like apps for both iOS and Android using a single codebase.

  • Flutter uses a single codebase for both iOS and Android, reducing development time and effort.

  • Flutter has a hot reload feature, allowing developers to see changes instantly without restarting the app.

  • Flutter provides a rich set of customizable wi...

An Assistant System Engineer was asked 7mo ago
Q. What are the key differences between AWS and GCP?
Ans. 

AWS and GCP are both cloud computing platforms, but differ in terms of services offered, pricing models, and global infrastructure.

  • AWS has a larger market share and offers a wider range of services compared to GCP.

  • GCP is known for its innovative solutions and strong focus on machine learning and artificial intelligence.

  • AWS has a pay-as-you-go pricing model, while GCP offers sustained use discounts.

  • AWS has a larger...

1 2 3 4 5 6 7

TCS Assistant System Engineer Interview Experiences

390 interviews found

Assistant System Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Dec 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
-
Round 1 - Coding Test 

The TCS NQT test consisted of three sections: numerical, verbal, and logical aptitude, followed by an advanced aptitude section and two coding questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Introduce yourself.
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for technology. I have experience with programming languages like Java and Python.

    • Recent graduate with a degree in Computer Science

    • Passionate about technology

    • Proficient in programming languages like Java and Python

  • Answered by AI
    Add your answer
  • Q2. Features of JAVA
  • Ans. 

    Java is a popular programming language known for its platform independence, object-oriented features, and robustness.

    • Platform independence - Java code can run on any platform with Java Virtual Machine (JVM)

    • Object-oriented - Java supports classes, objects, inheritance, and polymorphism

    • Robust - Java has strong memory management, exception handling, and type checking

    • Security - Java has built-in security features like sand...

  • Answered by AI
    Add your answer
  • Q3. 4 pillars of OOPS
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: Class with private data members and public methods.

    • Inheritance: Ability of a class to inherit properties and behavior from another class. Example: Subclass inheriting from a superclass.

    • Polymorphism: Ability to present the same interface for different data types. Example: Me...

  • Answered by AI
    Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Are you willing to relocate
  • Ans. 

    Yes, I am willing to relocate for the right opportunity.

    • I am open to relocating for a promising career opportunity

    • I have relocated for previous job positions and am comfortable with the process

    • I understand the benefits of relocating for career growth and development

  • Answered by AI
    Add your answer
  • Q2. Do you have any active backlogs
  • Ans. 

    No active backlogs

    • No, I do not have any active backlogs

    • I have successfully completed all my courses without any pending assignments

    • I am up to date with all my work and responsibilities

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume very well.
Anonymous

Assistant System Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Assignment 

1. Aptitude
A) Verbal
B) Reasoning
C) Quants

2. Coding test
A) Arrays - Number of ways to reach a position after exactly K steps
B) Rotate Matrix

Round 2 - Technical 

(8 Questions)

  • Q1. OOPS concepts inheritance, abstraction, polymorphism
  • Add your answer
  • Q2. Fibonacci series code + Dry run
  • Add your answer
  • Q3. Basic of OS
  • Add your answer
  • Q4. Friend function C++
  • Add your answer
  • Q5. Difference between Tuple and list in python
  • Ans. 

    Tuple is immutable, ordered collection of elements while list is mutable, ordered collection of elements in Python.

    • Tuple is created using parentheses () while list is created using square brackets []

    • Tuple elements cannot be changed once assigned while list elements can be modified

    • Tuple is faster than list for iteration and accessing elements

    • Example: tuple_example = (1, 2, 3) and list_example = [1, 2, 3]

  • Answered by AI
    Add your answer
  • Q6. Tell above Agile methodology & waterfall model
  • Ans. 

    Agile methodology is iterative and flexible, while waterfall model is sequential and rigid.

    • Agile focuses on delivering working software in short iterations

    • Waterfall follows a linear sequential flow from requirements to testing

    • Agile allows for changes and feedback throughout the development process

    • Waterfall requires all requirements to be defined upfront

    • Agile is more adaptive to changes in project scope

    • Waterfall is less...

  • Answered by AI
    Add your answer
  • Q7. Difference between Agile and waterfall model
  • Ans. 

    Agile is iterative and flexible, while waterfall is sequential and rigid.

    • Agile involves continuous feedback and adaptation, while waterfall follows a linear approach.

    • Agile is best suited for projects with changing requirements, while waterfall is better for projects with well-defined requirements.

    • Agile promotes collaboration and communication among team members, while waterfall focuses on documentation and formal proce...

  • Answered by AI
    Add your answer
  • Q8. Is their any drawbacks of Agile model
  • Ans. 

    Yes, there are drawbacks of Agile model.

    • Lack of predictability in terms of project timelines and deliverables

    • Difficulty in handling large and complex projects

    • Dependency on customer collaboration and feedback can sometimes slow down the process

    • Requires experienced team members for effective implementation

    • May lead to scope creep if not managed properly

  • Answered by AI
    Add your answer
Round 3 - HR 

(6 Questions)

  • Q1. Why you want to work at TCS?
  • Ans. 

    I want to work at TCS because of its reputation for innovation, global presence, and opportunities for growth.

    • TCS is known for its cutting-edge technology solutions and innovation in the IT industry.

    • TCS has a strong global presence with offices in multiple countries, providing opportunities for international exposure.

    • TCS offers a wide range of projects and clients, allowing for professional growth and development.

    • TCS h...

  • Answered by AI
    Add your answer
  • Q2. What are your hobbies?
  • Ans. 

    My hobbies include playing the guitar, hiking, and reading science fiction novels.

    • Playing the guitar

    • Hiking

    • Reading science fiction novels

  • Answered by AI
    Add your answer
  • Q3. How is your team project experience in college?
  • Ans. 

    I have extensive team project experience in college, working on various assignments and presentations.

    • Led a team of 5 students to develop a mobile application for a class project

    • Collaborated with classmates to create a research paper on artificial intelligence

    • Participated in a group presentation on cybersecurity for a final exam

  • Answered by AI
    Add your answer
  • Q4. Are you a continuous learner or not?
  • Ans. 

    Yes, I am a continuous learner who is always seeking to expand my knowledge and skills.

    • I regularly attend workshops, seminars, and online courses to stay updated with the latest technologies and trends.

    • I actively seek feedback from colleagues and supervisors to identify areas for improvement.

    • I enjoy reading technical blogs and articles to enhance my understanding of complex concepts.

    • I have pursued certifications in rel...

  • Answered by AI
    Add your answer
  • Q5. Situation based questions about team management.
  • Add your answer
  • Q6. What are your achievements till date?
  • Ans. 

    I have successfully completed multiple projects on time and received recognition for my problem-solving skills.

    • Received Employee of the Month award for implementing a new system that improved efficiency by 20%

    • Led a team in developing a software solution that reduced errors by 15%

    • Achieved a 98% customer satisfaction rate in handling technical support issues

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basic concepts of Core subjects like DBMS, OS, CN, OOPS. Practice fundamentals of programming and math based question, Arrays, matrix, strings (Easy and medium level questions in Leetcode)
Anonymous

Assistant System Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Jan 2025

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

(2 Questions)

  • Q1. Introduction, project, my past internships
  • Add your answer
  • Q2. Detailed questions about the internship and tech stacks I've used.
  • Add your answer
Round 2 - HR 

(2 Questions)

  • Q1. Basic questions about certification and hobbies
  • Add your answer
  • Q2. Asked for relocation and shifts
  • Add your answer
Anonymous

Assistant System Engineer Interview Questions & Answers

user image Anonymous

posted on 7 Dec 2024

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

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

Round 1 - Aptitude Test 

The aptitude test will have logical reasoning, problem solving ,english and 2 coding questions to assess the candidate's knowledge

Round 2 - One-on-one 

(2 Questions)

  • Q1. Rate yourself in python out of 10
  • Add your answer
  • Q2. Write a code to identify if the given word is palindrome or not
  • Add your answer
Anonymous

Assistant System Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Jan 2025

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

Simple quantitative questions and one coding question.

Round 2 - Technical 

(1 Question)

  • Q1. Oops concept Java questions Sql questions
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Are you able to join the company in various locations across India?
  • Ans. 

    Yes, I am willing to join the company in various locations across India.

    • I am open to relocating for the job opportunity

    • I am flexible with location preferences

    • I am excited about the prospect of working in different parts of India

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - It is beneficial to begin with this approach if you are struggling to secure a position in a product-based company.
Anonymous

Assistant System Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Nov 2024

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

Medium level- just prepare from youtube

Round 2 - Coding Test 

Medium level just search previous year questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell me abt yrself
  • Add your answer
  • Q2. Tell about Java basics?
  • Add your answer
Anonymous

Assistant System Engineer Interview Questions & Answers

user image Anonymous

posted on 1 Oct 2024

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

Number systems, Time, speed and distance, percentage

Round 2 - Coding Test 

Usually 2 coding questions of 1hr

Round 3 - Technical 

(2 Questions)

  • Q1. About project and certifications
  • Add your answer
  • Q2. Inheritance , polymorphism with example
  • Add your answer
Round 4 - HR 

(2 Questions)

  • Q1. Ready to relocate anywhere
  • Ans. 

    Yes, I am open to relocating anywhere for the right opportunity.

    • I am flexible and willing to relocate for career growth

    • I have experience moving for previous job opportunities

    • I understand the importance of being open to new locations for professional development

  • Answered by AI
    Add your answer
  • Q2. Why do you want to join this company
  • Ans. 

    I want to join this company because of its reputation for innovation and growth opportunities.

    • Impressed by the company's track record of innovation

    • Excited about the potential for growth and advancement within the company

    • Interested in the company's culture and values

    • Believe my skills and experience align well with the company's needs

  • Answered by AI
    Add your answer
Anonymous

Assistant System Engineer Interview Questions & Answers

user image Anonymous

posted on 24 Mar 2025

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Java OOPS, collection, multithreading, exception handling.
  • Add your answer
  • Q2. About your project in graduation in detail explainnation they asked.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - As a fresher please don't join if your are in category of software developer or in technical background for other non- technical definitely you have to join. If you get experience 3 years in technical background than I will suggest you to join TCS for your good career growth, good work life balance, salary increment and so on...
Anonymous

Assistant System Engineer Interview Questions & Answers

user image Faiza Fatima

posted on 20 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was easy and it Consisted several rounds logical, reasoning,coding

Round 2 - Technical 

(2 Questions)

  • Q1. Asked the code for palindrome.
  • Add your answer
  • Q2. Functions , basic c++ questions
  • Add your answer
Round 3 - Behavioral 

(2 Questions)

  • Q1. Basic questions for work allocation and situational based questions
  • Add your answer
  • Q2. Situational based questions and basic questions
  • Add your answer
Round 4 - HR 

(2 Questions)

  • Q1. Tcs company related questions
  • Add your answer
  • Q2. Something about myself
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare according to what you have written in your cv
Anonymous

Assistant System Engineer Interview Questions & Answers

user image Charmipriya Boddu

posted on 16 Jan 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Includes quantitative verbal and reasoning questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Oops concepts in java
  • Ans. 

    Oops concepts in Java refer to Object-Oriented Programming principles like Inheritance, Polymorphism, Encapsulation, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability of an object to take on many forms.

    • Encapsulation: Wrapping data and methods into a single unit.

    • Abstraction: Hiding the implementation details and showing only the necessary features.

  • Answered by AI
    Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Are you able to relocate!?
  • Ans. 

    Yes, I am open to relocating for the right opportunity.

    • I am willing to relocate for the right job opportunity

    • I have no restrictions on relocating for work

    • I am open to exploring new locations for career growth

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous
More about working at TCS
golden leaf award AmbitionBox awards

#6 Best Mega Company - 2021

golden leaf award
golden leaf award AmbitionBox awards

#2 Best Mega IT/ITES Company - 2021

golden leaf award
  • HQ - Mumbai, Maharashtra, India
  • IT Services & Consulting
  • 1 Lakh+ Employees (India)
  • Public
  • Financial Services
  • Internet
  • Education & Training
  • BPO

TCS Interview FAQs

How many rounds are there in TCS Assistant System Engineer interview?
TCS interview process usually has 2-3 rounds. The most common rounds in the TCS interview process are Technical, Aptitude Test and HR.
What are the top questions asked in TCS Assistant System Engineer interview?

Some of the top questions asked at the TCS Assistant System Engineer interview -

  1. What are the functions used in a particular co...read more
  2. What is linklist ? Write a code to insert a node at the beginning of lis...read more
  3. What are local variable and global variables? and their default values and prog...read more
What are the most common questions asked in TCS Assistant System Engineer HR round?

The most common HR questions asked in TCS Assistant System Engineer interview are -

  1. Why should we hire y...read more
  2. Tell me about yourse...read more
  3. What are your strengths and weakness...read more
How long is the TCS Assistant System Engineer interview process?

The duration of TCS Assistant System Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

TCS Interviews By Designations

  • TCS System Engineer Interview Questions
  • TCS Software Developer Interview Questions
  • TCS Software Engineer Interview Questions
  • TCS Assistant System Engineer Interview Questions
  • TCS Assistant System Engineer Trainee Interview Questions
  • TCS IT Analyst Interview Questions
  • TCS Ninja Interview Questions
  • TCS Java Developer Interview Questions
  • Show more
  • TCS AST Consultant Interview Questions
  • TCS Process Associate Interview Questions

Interview Questions for Popular Designations

  • System Engineer Interview Questions
  • System Administrator Interview Questions
  • Senior Systems Engineer Interview Questions
  • System Analyst Interview Questions
  • System Engineer Hardware Interview Questions
  • Linux System Administrator Interview Questions
  • Associate Systems Engineer Interview Questions
  • Senior System Administrator Interview Questions
  • Show more
  • Senior System Analyst Interview Questions
  • System Software Engineer Interview Questions

Top Skills for TCS Assistant System Engineer

Algorithms Interview Questions & Answers
250 Questions
Data Structures Interview Questions & Answers
250 Questions
SQL Interview Questions & Answers
250 Questions
Web Development Interview Questions & Answers
250 Questions
Cloud Computing Interview Questions & Answers
250 Questions
Software Development Interview Questions & Answers
250 Questions

Assistant System Engineer Interview Questions from Similar Companies

Infosys
Infosys Assistant System Engineer Interview Questions
3.6
 • 17 Interviews
IBM
IBM Assistant System Engineer Interview Questions
4.0
 • 4 Interviews
Accenture
Accenture Assistant System Engineer Interview Questions
3.8
 • 3 Interviews
Wipro
Wipro Assistant System Engineer Interview Questions
3.7
 • 1 Interview
Cognizant
Cognizant Assistant System Engineer Interview Questions
3.7
 • 1 Interview
Atos
Atos Assistant System Engineer Interview Questions
3.8
 • 1 Interview
View all
TCS Assistant System Engineer Salary
based on 29.8k salaries
₹2.2 L/yr - ₹6.2 L/yr
At par with the average Assistant System Engineer Salary in India
View more details

TCS Assistant System Engineer Reviews and Ratings

based on 3.7k reviews

3.7/5

Rating in categories

3.5

Skill development

3.8

Work-life balance

2.6

Salary

4.6

Job security

3.7

Company culture

2.6

Promotions

3.2

Work satisfaction

Explore 3.7k Reviews and Ratings
TCS Salaries in India
System Engineer
1.1L salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Analyst
65.9k salaries
unlock blur

₹5.1 L/yr - ₹16.3 L/yr

AST Consultant
52.5k salaries
unlock blur

₹8 L/yr - ₹25.5 L/yr

Associate Consultant
31.5k salaries
unlock blur

₹9 L/yr - ₹32.9 L/yr

Assistant System Engineer
29.8k salaries
unlock blur

₹2.2 L/yr - ₹6.2 L/yr

Explore more salaries
Compare TCS with
Amazon

Amazon

4.0
Compare
Wipro

Wipro

3.7
Compare
Infosys

Infosys

3.6
Compare
Accenture

Accenture

3.8
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • TCS Interview Questions >
  • TCS Assistant System Engineer Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Helping over 1 Crore job seekers every month in choosing their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

6 Lakh+

Interviews

1 Crore+

Users/Month

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Campus Placements
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2026
  • ABECA 2025 winners awaited tag
  • ABECA 2024
  • AmbitionBox Best Places to Work 2022
  • AmbitionBox Best Places to Work 2021
  • Invite employees to rate
AmbitionBox
  • About Us
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter