Upload Button Icon Add office photos
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.7

based on 85.2k Reviews

Filter interviews by

TCS Assistant System Engineer Interview Questions, Process, and Tips

Updated 8 Jan 2025

Top TCS Assistant System Engineer Interview Questions and Answers

  • Q1. Constellation Given a matrix ‘UNIVERSE’ with 3 rows and ‘N’ columns, with the characters { # , * , . } and these characters represent a cluster of stars and galaxies in s ...read more
  • Q2. Game in Space Ninja is in space with his super spaceship having unlimited fuel. Ninja initially has a health level ‘H’ and his spaceship has an armour ‘A’. He decides to ...read more
  • Q3. Given a string S(input consisting) of ‘*’ and ‘#’. The length of the string is variable. The task is to find the minimum number of ‘*’ or ‘#’ to make it a ...read more
View all 280 questions

TCS Assistant System Engineer Interview Experiences

418 interviews found

I was interviewed in Aug 2016.

Interview Questionnaire 

12 Questions

  • Q1. What is asymptotic notation ?
  • Ans. 

    Asymptotic notation is a way to describe the performance of an algorithm by analyzing its behavior as the input size approaches infinity.

    • Asymptotic notation is used to analyze the efficiency and scalability of algorithms.

    • It provides a way to compare algorithms based on their growth rates.

    • Commonly used asymptotic notations include Big O, Big Omega, and Big Theta.

    • Big O notation represents the upper bound or worst-case sc...

  • Answered by AI
  • Q2. Explain theta notation diagrammatically ?
  • Ans. 

    Theta notation is a way to describe the upper bound of an algorithm's time complexity.

    • Theta notation is represented by Θ

    • It describes the tightest possible bound on an algorithm's time complexity

    • It takes into account both the best and worst case scenarios

    • For example, an algorithm with Θ(n) time complexity will have a linear runtime

    • An algorithm with Θ(n^2) time complexity will have a quadratic runtime

  • Answered by AI
  • Q3. What is arraylist ? Advantage over generic arrays ?
  • Ans. 

    ArrayList is a dynamic array that can grow or shrink in size. It provides advantages like dynamic resizing and built-in methods.

    • ArrayList is a resizable array implementation of the List interface in Java.

    • It can store elements of any type, including objects and primitives.

    • Advantages over generic arrays include dynamic resizing, automatic memory management, and built-in methods like add(), remove(), etc.

    • Example: ArrayLis...

  • Answered by AI
  • Q4. What is linklist ? Write a code to insert a node at the beginning of list ?
  • Ans. 

    A linked list is a data structure that consists of a sequence of nodes, where each node contains a reference to the next node.

    • A linked list is a dynamic data structure that can grow or shrink as needed.

    • Each node in a linked list contains two parts: data and a reference to the next node.

    • To insert a node at the beginning of a linked list, we create a new node, set its data, and update the reference of the new node to poi

  • Answered by AI
  • Q5. What is join (Database) ?inner join ,outer join ?
  • Ans. 

    Join is a database operation that combines rows from two or more tables based on a related column between them.

    • Inner join returns only the matching rows from both tables.

    • Outer join returns all the rows from one table and the matching rows from the other table.

    • There are different types of outer joins: left outer join, right outer join, and full outer join.

    • Joining tables can be done using the JOIN keyword in SQL.

    • Example:...

  • Answered by AI
  • Q6. What is byte code ? (Java)
  • Ans. 

    Byte code is a compiled code that is generated by the Java compiler and can be executed by the Java Virtual Machine (JVM).

    • Byte code is an intermediate representation of Java source code.

    • It is platform-independent and can be executed on any device with a JVM.

    • Byte code is stored in .class files.

    • Examples of byte code instructions include loading, storing, and arithmetic operations.

  • Answered by AI
  • Q7. Explain jvm , jre , jdk ?
  • Ans. 

    JVM is a virtual machine that executes Java bytecode. JRE is a runtime environment that includes JVM and libraries. JDK is a development kit that includes JRE and tools for developing Java applications.

    • JVM stands for Java Virtual Machine and is responsible for executing Java bytecode.

    • JRE stands for Java Runtime Environment and includes JVM and libraries required to run Java applications.

    • JDK stands for Java Development ...

  • Answered by AI
  • Q8. What is computer science ?
  • Ans. 

    Computer science is the study of computers and computational systems.

    • Computer science involves the theory, design, development, and application of computer systems.

    • It encompasses various areas such as algorithms, programming languages, data structures, artificial intelligence, and computer networks.

    • Computer scientists solve complex problems and create innovative solutions using computational techniques.

    • Examples of comp...

  • Answered by AI
  • Q9. Anuly framework you know ?
  • Ans. 

    Yes

    • AngularJS - a JavaScript framework for building web applications

    • React - a JavaScript library for building user interfaces

    • Django - a high-level Python web framework

    • Spring - a Java framework for building enterprise-level applications

  • Answered by AI
  • Q10. Ohh you watch ted talk, what you have learned from last led talk you have watched? (Explained the diff b/w apple and tcs)
  • Q11. Why tou want to join tcs ?
  • Q12. Tell me something intresting about you that you have not included in your cv?
  • Ans. 

    I am an avid traveler and have visited over 20 countries.

    • I love exploring new cultures and experiencing different cuisines.

    • I have hiked to the top of Mount Kilimanjaro in Tanzania.

    • I have scuba dived in the Great Barrier Reef in Australia.

    • I have attended the Carnival in Rio de Janeiro, Brazil.

    • I enjoy documenting my travels through photography and blogging.

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Explained most of the questions with an example.
Though I did got stuck in the middle but I kept going.
Tips: Be calm,always explain with examples , always carry rare information about some topics, it will add more impression.

Round: HR Interview
Experience: It was fun.
Tips: Have fun , what max can happen !!! Rejection.

Skills evaluated in this interview

I was interviewed in Sep 2016.

Interview Questionnaire 

6 Questions

  • Q1. What is inner join ?
  • Ans. 

    Inner join is a type of join operation in relational databases that returns only the matching rows from both tables.

    • Inner join combines rows from two or more tables based on a related column between them.

    • It returns only the rows where the join condition is true.

    • The result set of an inner join contains only the columns that are common to both tables.

    • Inner join is commonly used to retrieve data that exists in multiple ta...

  • Answered by AI
  • Q2. What is the difference between inner and outer join ?
  • Ans. 

    Inner join returns only the matching rows from both tables while outer join returns all rows from both tables with null values for non-matching rows.

    • Inner join is used to combine rows from two tables where the join condition is met.

    • Outer join is used to combine rows from two tables even if the join condition is not met.

    • There are three types of outer join: left outer join, right outer join, and full outer join.

    • Left oute...

  • Answered by AI
  • Q3. Explain the OSI framework
  • Ans. 

    The OSI framework is a conceptual model that defines how network protocols interact and communicate with each other.

    • The OSI framework stands for Open Systems Interconnection framework.

    • It consists of seven layers, each with its own specific functions and protocols.

    • The layers are: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer provides services to the layer above it and uses se...

  • Answered by AI
  • Q4. Do you have any problem in working at odd hours?
  • Ans. 

    Yes, I am comfortable working at odd hours.

    • I am flexible and adaptable to different work schedules.

    • I understand the importance of round-the-clock support in the field of systems engineering.

    • I have previous experience working night shifts and weekends.

    • I am committed to meeting project deadlines and ensuring system availability at all times.

  • Answered by AI
  • Q5. Are you flexible with the job location?
  • Q6. Do you have any plans for post graduation?

Interview Preparation Tips

Round: Resume Shortlist
Experience: The first round consisted of an aptitude test in which logical reasoning and simple mathematical problems were asked.
Tips: I would suggest to concentrate on probability questions while preparing for this round as this the area where most people struggle.

Round: Technical Interview
Experience: In addition to the above questions I was asked about my internship experience and minor project.

Round: HR Interview
Tips: Say yes to the first two questions and no to the third.

College Name: Bharati Vidyapeeth's College Of Engineering, New Delhi

Skills evaluated in this interview

Assistant System Engineer Interview Questions Asked at Other Companies

asked in TCS
Q1. ConstellationGiven a matrix ‘UNIVERSE’ with 3 rows and ‘N’ column ... read more
asked in TCS
Q2. Game in SpaceNinja is in space with his super spaceship having un ... read more
asked in TCS
Q3. Given a string S(input consisting) of ‘*’ and ‘#’. The le ... read more
asked in TCS
Q4. Prime Time AgainYou have been given two integers ‘DAY_HOURS’ and ... read more
asked in TCS
Q5. Maximize the sumYou are given two sorted arrays of distinct integ ... read more

I was interviewed before May 2016.

Interview Questionnaire 

5 Questions

  • Q1. Why do you want to work in TCS ?
  • Q2. Tell me some qualities why should I select you .?
  • Q3. Questions related to computer subjects from java , algorithm , data structure ..had to write programs in java only logic , queries in SQL for database skills , etc
  • Q4. What salary you expect ?
  • Q5. For much longer time would you work with our organisation ?

Interview Preparation Tips

Round: Test
Experience: Write an email using the given phrases .
Tips: Write the email using those given phrases.be short and simple.don't exceed the word limits .
Total Questions: 1

Round: Technical Interview
Experience: Write an email using the given phrases .
Tips: Write the email using those given phrases.be short and simple.don't exceed the word limits .

Round: HR Interview
Experience: Just all my profile details along with my qualities where judged that how much passionate am I to work with company ..some questions were asked based on some conditions .
Tips: As such have a good knowledge about the company and speak truth about yourself don't pretend to be too much .and show them that you are looking forward to work with them permanently ..

College Name: DURGAPUR INSTITUTE OF ADVANCED TECHNOLOGY AND MANAGEMENT

I was interviewed before May 2016.

Interview Preparation Tips

Round: Test
Experience: It was fantastic experience.
Tips: Just work on basics.
Work on past TCS papers(which asked in past 2-3 year).
Similar questions will appear
Duration: 1 hour 30 minutes
Total Questions: 90

College Name: Shriram Institute Of Technologies

TCS interview questions for designations

 System Engineer

 (1.1k)

 Assistant System Analyst

 (5)

 System Assistant

 (1)

 System Engineer Hardware

 (67)

 System Software Engineer

 (3)

 Junior System Engineer

 (2)

 System Engineer Analyst

 (2)

 Linux System Engineer

 (1)

I was interviewed before May 2016.

Interview Questionnaire 

4 Questions

  • Q1. Tell us about the summer internship in detail
  • Ans. 

    I interned at XYZ company for 3 months, working on software development projects.

    • Developed a web application using Java and Spring framework

    • Collaborated with a team of 5 developers to design and implement new features

    • Conducted testing and debugging to ensure application functionality

    • Participated in daily stand-up meetings and code reviews

    • Learned about agile development methodologies and software engineering best practi

  • Answered by AI
  • Q2. Writing Programs in Java and C++
  • Q3. Are you flexible with location
  • Ans. 

    Yes, I am flexible with location.

    • I am open to relocation if required for the job.

    • I am willing to work in different cities or countries.

    • I understand that some positions may require travel or relocation.

    • I am adaptable to new environments and cultures.

  • Answered by AI
  • Q4. Are you flexible with working hours
  • Ans. 

    Yes, I am flexible with working hours.

    • I understand that sometimes work requires extra hours or different schedules

    • I am willing to adjust my personal schedule to accommodate work needs

    • I have experience working flexible hours in my previous job

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: This was completely technical. Interviewers check how much depth is your knowledge about the computer language skills.
Tips: Be confident with what you know. If you do not have any knowledge then avoid the question by humbly accepting that you will learn it and come back with the appropriate answer.

College Name: Institute of Technical Education and Research

Get interview-ready with Top TCS Interview Questions

Interview Preparation Tips

Round: Test
Experience: The verbal ability consists of an email writing section. Specific words are given and you have to recognise the situation and write the email accordingly.
The aptitude test was a bit difficult compared to the other companies I sat for (KPMG, EXL Analytics etc.). Linear equations, algebra, trigonometry, probability and time & distance questions are asked.
Tips: Use the words in the email in the order given and as much as possible, use the exact same words. Try to keep the word count below 100.
For the aptitude test, practice TCS mock tests available online.
Duration: 10mins+80mins minutes
Total Questions: 1+30

College Name: Manipal Institute Of Technology, Manipal

I was interviewed in Jan 2016.

Interview Questionnaire 

20 Questions

  • Q1. What is memory leak?
  • Ans. 

    Memory leak is a condition where a program fails to release memory it no longer needs, leading to memory consumption and performance issues.

    • Memory leak occurs when dynamically allocated memory is not deallocated properly.

    • It can happen when a program loses the reference to allocated memory without freeing it.

    • Memory leaks can gradually consume all available memory, causing the program or system to crash.

    • Common causes inc...

  • Answered by AI
  • Q2. What is static variable in C? with program
  • Ans. 

    A static variable in C is a variable that retains its value between function calls.

    • Static variables are declared using the 'static' keyword.

    • They are initialized only once, at the start of the program.

    • Their value persists even after the function call ends.

    • Static variables have a default initial value of 0.

    • They are useful for maintaining state across function calls.

  • Answered by AI
  • Q3. What are local variable and global variables? and their default values and program
  • Ans. 

    Local variables are declared within a specific function or block, while global variables are declared outside of any function or block.

    • Local variables have a limited scope and are only accessible within the function or block where they are declared.

    • Global variables can be accessed from anywhere in the program.

    • Local variables are created when a function is called and destroyed when the function ends.

    • Global variables are...

  • Answered by AI
  • Q4. What is method overriding? with program
  • Ans. 

    Method overriding is a feature in object-oriented programming where a subclass provides a different implementation of a method that is already defined in its superclass.

    • Method overriding is used to achieve runtime polymorphism.

    • The method in the subclass must have the same name, return type, and parameters as the method in the superclass.

    • The @Override annotation can be used to indicate that a method is intended to overr...

  • Answered by AI
  • Q5. What is cache memory?with real time example
  • Ans. 

    Cache memory is a small, fast memory that stores frequently accessed data for quick access.

    • Cache memory is faster than main memory but smaller in size.

    • It reduces the time taken to access data from main memory.

    • Examples include CPU cache, web browser cache, and disk cache.

    • Cache memory is volatile and can be cleared at any time.

    • Cache hit is when data is found in cache, cache miss is when it's not.

  • Answered by AI
  • Q6. Differences between C and Java?
  • Ans. 

    C is a procedural language while Java is an object-oriented language.

    • C is compiled while Java is interpreted

    • C has pointers while Java does not

    • Java has automatic garbage collection while C does not

    • Java has platform independence while C does not

    • Java has built-in exception handling while C does not

  • Answered by AI
  • Q7. Explain me about exception handling? with program
  • Ans. 

    Exception handling is a mechanism to handle runtime errors and prevent program crashes.

    • Exceptions are objects that represent errors or exceptional situations in a program.

    • When an exception occurs, the program stops executing and jumps to the nearest exception handler.

    • Exception handling involves catching and handling exceptions to prevent program crashes.

    • Try-catch blocks are used to catch and handle exceptions.

    • Example: ...

  • Answered by AI
  • Q8. Run time exceptions?
  • Ans. 

    Run time exceptions are errors that occur during program execution.

    • They are unexpected and can cause the program to crash.

    • Examples include null pointer exceptions and arithmetic exceptions.

    • They can be handled using try-catch blocks.

    • Proper error handling can prevent run time exceptions.

  • Answered by AI
  • Q9. What is stack?operations and program
  • Ans. 

    A stack is a data structure that follows the Last In First Out (LIFO) principle.

    • Elements are added to the top of the stack and removed from the top.

    • Common operations include push (add element to top) and pop (remove element from top).

    • Stacks are used in programming for function calls, expression evaluation, and memory management.

    • Example: The back button in a web browser uses a stack to keep track of visited pages.

    • Exampl...

  • Answered by AI
  • Q10. What is your eamcet rank?
  • Q11. What is your long term goal?
  • Q12. What are your interests?
  • Ans. 

    My interests include technology, problem-solving, and continuous learning.

    • Technology: I enjoy staying up-to-date with the latest advancements in the field of technology and exploring new gadgets and software.

    • Problem-solving: I have a strong passion for solving complex problems and finding efficient solutions. I enjoy analyzing issues and brainstorming creative approaches.

    • Continuous learning: I believe in the importance...

  • Answered by AI
  • Q13. What do you watch?
  • Q14. When is Iphone 7 released?
  • Ans. 

    The iPhone 7 was released on September 16, 2016.

    • The iPhone 7 was released on September 16, 2016.

    • It was the successor to the iPhone 6s and 6s Plus.

    • The iPhone 7 introduced several new features, including a water-resistant design and the removal of the headphone jack.

  • Answered by AI
  • Q15. Drawbacks of iphone 6? what do you use?
  • Ans. 

    Drawbacks of iPhone 6 include battery life, storage capacity, and lack of headphone jack. I use an iPhone 11.

    • Battery life is relatively short compared to newer models

    • Storage capacity is limited and non-expandable

    • Lack of headphone jack requires the use of adapters or wireless headphones

    • iPhone 11 has longer battery life, larger storage capacity, and improved camera features

  • Answered by AI
  • Q16. What is the latest technology?
  • Ans. 

    The latest technology is artificial intelligence (AI).

    • Artificial intelligence (AI) is a branch of computer science that enables machines to perform tasks that typically require human intelligence.

    • AI technologies include machine learning, natural language processing, computer vision, and robotics.

    • Examples of AI applications include virtual assistants (e.g., Siri, Alexa), autonomous vehicles, facial recognition systems, ...

  • Answered by AI
  • Q17. What is cloud computing?
  • Ans. 

    Cloud computing is the delivery of computing services over the internet.

    • Cloud computing allows users to access and use computing resources on-demand, such as storage, processing power, and software applications.

    • It eliminates the need for users to own and manage physical infrastructure, as the resources are provided by a third-party service provider.

    • Examples of cloud computing services include Amazon Web Services (AWS),

  • Answered by AI
  • Q18. What are scale up and scale down operations?
  • Ans. 

    Scale up and scale down operations refer to increasing or decreasing the resources allocated to a system or application.

    • Scale up involves adding more resources to a system to handle increased demand or workload.

    • Examples of scale up include adding more RAM, CPU, or storage to a server.

    • Scale down involves reducing the resources allocated to a system when demand or workload decreases.

    • Examples of scale down include removin...

  • Answered by AI
  • Q19. About my achievements and what did I do there?
  • Q20. Questions like service agreement,relocation

Interview Preparation Tips

Round: Email writing
Experience: It was very easy for me.Need to practice all the questions which are available in many websites.
Tips: 1.Write all phrases given in email.
2.Use 75 to 80 words.
3.Use salutation properly
4.Check your keyboard before the exam

Round: Technical Interview
Experience: Asked some questions bases on my resume.Make sure that you know everything that you have written in your resume.
And that's it!! Both of the interviewers were impressed and told we are done.
I was happy and they told them thanks with a smile!
Tips: f you are from IT or CSE background then make sure that you know 2 programming languages,DBMS (very important), sql queries are very important.
4. Prepare for your favorite subject.
5.Prepare your resume well.Questions will be asked from it. I did not mention C++ and they did not ask a single question from it.
6.Prepare your mini project well and they will ask to write the code.Prepare some snippets of code and explain its functionality.
7.Dress well,it showcases your confidence

Round: HR Interview
Tips: 1. Practice the email writing well and you can have a look at tcs open see same in the campus commune portal.The exam will be like same to same.(screens)
2. Practice the analytical from above mentioned websites.It is more than enough.
3. If you are from IT or CSE background then make sure that you know 2 programming languages,DBMS (very important), sql queries are very important.
4. Prepare for your favorite subject.
5.Prepare your resume well.Questions will be asked from it. I did not mention C++ and they did not ask a single question from it.
6.Prepare your mini project well and they will ask to write the code.Prepare some snippets of code and explain its functionality.
7.Dress well,it showcases your confidence.
8. You need to have patience to get selected for TCS. Take some snacks along with you.
9.Luck also plays major role.You work hard and try your best.Luck favors the hard workers.
10.Be honest,never lie with them.
11. They will make sure that you will not get tensed and they will create a peaceful environment by asking simple questions and they will start the show.
Thanks for reading

Skills: Basic Knowledge Of DBMS, Java Programming, Basic Coding, Basic C/C++
College Name: GRIET [Gokaraju Rangaraju Institute of Engineering and Technology]

Skills evaluated in this interview

Assistant System Engineer interview

user image QUANT MASTERS

posted on 12 Mar 2022

 · B.E. / B.Tech

Interview Preparation Tips

Round: Test
Experience: There was a ppt first. It is then followed by an online aptitude test. Around 200 students attended it. From that 122 students were shortlisted for the interview.

Round: Technical Interview
Experience: There were 3 rounds in the interview process. First is the technical HR followed by Managerial round.

Round: HR Interview
Experience: Finally it is the HR round. Totally 75 students were selected.
Tips: It was really challenging the placement experience gave a good technical exposure especially in the Technical HR round
Selection Procedure.

General Tips: TCS is basically software based company. It is also having Engineering Infrastructure Services which will deal with the core branches. So students from both electrical and mechanical are having good opportunities in TCS. The company is having an online aptitude test. It is then followed by a Technical HR round. Then followed Managerial HR round. Then followed by HR round.

Skill Tips: Don't lose the courage in the moment of attending the interview. Have full courage and faith in yourself. You will definitely get the job. I was offered the post of Assistant System Engineer. During the interview one should ask about the bond period and also the work culture in the company. TCS is having 2 years bond period and the work culture is very good.
Skills:
College Name: NIT Surathkal

Interview Questionnaire 

7 Questions

  • Q1. Tell me about Yourself
  • Q2. Tell me about your projects
  • Q3. Why you used these components in your projects
  • Ans. 

    I used these components in my projects because they provided the necessary functionality and met the project requirements.

    • The components were chosen based on their compatibility with the existing system.

    • They offered the required features and capabilities for the project.

    • The components were cost-effective and readily available in the market.

    • They had a proven track record of reliability and performance.

    • The components wer...

  • Answered by AI
  • Q4. Tell me about Family background
  • Q5. Are you aiming for higher studies
  • Ans. 

    Yes, I am aiming for higher studies.

    • I believe that continuous learning and personal growth are essential in the field of technology.

    • Higher studies will provide me with the opportunity to deepen my knowledge and skills in my chosen field.

    • I am particularly interested in pursuing a master's degree in Computer Science to gain a more in-depth understanding of advanced concepts and technologies.

    • By pursuing higher studies, I ...

  • Answered by AI
  • Q6. Why IT company when you are from EXTC background?
  • Q7. Tell me more about your skills and explain them

Interview Preparation Tips

Round: Technical Interview
Experience: It was a very good experience , since the interviewer was a very nice person. She did not oppose anything I said.
Tips: Be honest about yourself. Always review your resume before entering.

Skill Tips: Never lie about your future plans.
Skills: Communication, Honesty
College Name: Vidyalankar Institute Of Technology

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 Aptitude Test, Technical 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
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 Assistant System Engineer Interview Process

based on 137 interviews in last 1 year

4 Interview rounds

  • Aptitude Test Round
  • Technical Round
  • HR Round 1
  • HR Round 2
View more

People are getting interviews through

based on 244 TCS interviews
Campus Placement
Company Website
Job Portal
WalkIn
Referral
38%
36%
11%
7%
2%
6% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.
TCS Assistant System Engineer Salary
based on 31.3k salaries
₹2.2 L/yr - ₹5.6 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.5k reviews

3.8/5

Rating in categories

3.5

Skill development

3.9

Work-Life balance

2.7

Salary & Benefits

4.7

Job Security

3.7

Company culture

2.7

Promotions/Appraisal

3.3

Work Satisfaction

Explore 3.5k Reviews and Ratings
System Engineer
1.1L salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Analyst
67.9k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

AST Consultant
51k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Assistant System Engineer
31.3k salaries
unlock blur

₹2.2 L/yr - ₹5.6 L/yr

Associate Consultant
28.6k salaries
unlock blur

₹8.9 L/yr - ₹32 L/yr

Explore more salaries
Compare TCS with

Amazon

4.1
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

Accenture

3.9
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