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

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
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 97.6k Reviews

Play video Play video Video summary
  • About
  • Reviews
    97.6k
  • Salaries
    9.2L
  • Interviews
    11k
  • Jobs
    204
  • Benefits
    12k
  • Photos
    86
  • Posts
    90

Filter interviews by

TCS IT Analyst Interview Questions and Answers

Updated 13 Jun 2025

210 Interview questions

An IT Analyst was asked 1mo ago
Q. Explain Batch Apex.
Ans. 

Batch Apex allows processing large volumes of records asynchronously in Salesforce, optimizing performance and resource usage.

  • Designed for handling large data sets, Batch Apex processes records in manageable chunks.

  • It consists of three main methods: start, execute, and finish.

  • Example: A Batch Apex job can be used to update thousands of records in a single transaction.

  • It can be scheduled to run at specific times or...

An IT Analyst was asked 3mo ago
Q. Can you explain what you have learned in Java?
Ans. 

I have learned Java programming language extensively, including object-oriented programming concepts, data structures, and algorithms.

  • Extensive knowledge of Java syntax and features

  • Understanding of object-oriented programming concepts like inheritance, polymorphism, and encapsulation

  • Experience with data structures such as arrays, linked lists, stacks, and queues

  • Knowledge of algorithms like sorting, searching, and ...

IT Analyst Interview Questions Asked at Other Companies

asked in TCS
Q1. 1. What is interface how to use? 2. Tell me a small example for i ... read more
View answer (1)
asked in TCS
Q2. How do you load data from a tab-delimited file instead of a CSV f ... read more
View answers (2)
asked in Accenture
Q3. An online travel agency has a call center and has been receiving ... read more
View answer (1)
asked in TCS
Q4. Is writing NO DATA FOUND after WHEN OTHERS allowed in a PL/SQL bl ... read more
View answers (2)
asked in TCS
Q5. How would you insert contacts into newly created accounts using a ... read more
View answer (1)
View All
An IT Analyst was asked 3mo ago
Q. What is your knowledge of Java?
Ans. 

I have extensive knowledge in Java programming language, including core concepts, data structures, multithreading, and design patterns.

  • Strong understanding of core Java concepts such as OOP, inheritance, polymorphism, and encapsulation

  • Experience with data structures and algorithms in Java, including arrays, linked lists, trees, and graphs

  • Proficient in multithreading and concurrency in Java, including synchronizati...

An IT Analyst was asked 4mo ago
Q. Which computer languages do you know?
Ans. 

I am proficient in Java, Python, SQL, and JavaScript.

  • Java

  • Python

  • SQL

  • JavaScript

What people are saying about TCS

View All
compulsoryaloe
Verified Icon
2w
student at
ParulInstituteofengineeringandtechnology
Will i get the offer letter?
I got selected for TCS digital profile and had my interview a few weeks ago. The interview was about 30-40 minutes. All the rounds happened in one go, project based, SQL and a dsa questions were asked which I solved in Python, also answered OOPs related questions in java. My question is how many days will it take to get offer letter from TCS and will joining date also come with offer letter? Thanks for ur time..
Got a question about TCS?
Ask anonymously on communities.
An IT Analyst was asked 4mo ago
Q. What is the logic to separate even and odd numbers?
Ans. 

Even numbers are divisible by 2 with no remainder, odd numbers have a remainder of 1 when divided by 2.

  • Even numbers are divisible by 2 with no remainder

  • Odd numbers have a remainder of 1 when divided by 2

  • One way to separate even and odd numbers is by checking the remainder when divided by 2

An IT Analyst was asked 4mo ago
Q. What are some basic questions related to your tech stack?
Ans. 

My tech stack includes various tools and languages for efficient IT analysis and problem-solving.

  • Proficient in SQL for database management and querying, e.g., using MySQL for data extraction.

  • Experience with Python for data analysis and automation, utilizing libraries like Pandas and NumPy.

  • Familiar with JavaScript for front-end development, enhancing user interfaces with frameworks like React.

  • Utilize tools like JIR...

An IT Analyst was asked 5mo ago
Q. What is a load balancer?
Ans. 

A load balancer distributes network traffic across multiple servers to ensure reliability and optimize resource use.

  • Improves application availability by distributing traffic evenly.

  • Enhances performance by preventing any single server from becoming a bottleneck.

  • Can be hardware-based (like F5) or software-based (like Nginx).

  • Supports various algorithms for traffic distribution, such as round-robin or least connection...

Are these interview questions helpful?
An IT Analyst was asked 5mo ago
Q. What is a firewall and what are its uses?
Ans. 

A firewall is a security device that monitors and controls incoming and outgoing network traffic based on predetermined security rules.

  • Acts as a barrier between trusted and untrusted networks.

  • Can be hardware-based (like a router) or software-based (like an application).

  • Filters traffic based on IP addresses, protocols, and ports.

  • Examples include Windows Firewall, Cisco ASA, and pfSense.

  • Helps prevent unauthorized ac...

An IT Analyst was asked 6mo ago
Q. What is the difference between map and flatMap?
Ans. 

map transforms each element of a collection, flatMap transforms each element into a new collection and flattens the result

  • Map applies a function to each element of a collection and returns a new collection with the results

  • FlatMap applies a function that returns a collection to each element of a collection, then flattens the result into a single collection

  • Example: map([1, 2, 3], x => [x, x+1]) returns [[1, 2], [...

An IT Analyst was asked 6mo ago
Q. What is the difference between a DataFrame and a Dataset?
Ans. 

DataFrame is a two-dimensional tabular data structure in Spark, while Dataset is a distributed collection of data with strong typing.

  • DataFrame is a collection of distributed data organized into named columns, similar to a table in a relational database.

  • Dataset is a distributed collection of data with strong typing, allowing for compile-time type safety.

  • DataFrame is more suitable for structured data processing, whi...

1 2 3 4 5 6 7

TCS IT Analyst Interview Experiences

345 interviews found

IT Analyst Interview Questions & Answers

user image Aishwarya Pimple

posted on 21 Feb 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

I could relate to my knowledge.

Round 2 - Technical 

(3 Questions)

  • Q1. What are the Object-Oriented Programming (OOP) concepts in Java?
  • Ans. 

    OOP concepts in Java include classes, objects, inheritance, polymorphism, encapsulation, and abstraction.

    • Classes: Blueprint for creating objects.

    • Objects: Instances of classes that encapsulate data and behavior.

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

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

    • Encapsulation: Bundling data and methods that operate ...

  • Answered by AI
    Add your answer
  • Q2. Can you explain what you have learned in Java?
  • Ans. 

    I have learned Java programming language extensively, including object-oriented programming concepts, data structures, and algorithms.

    • Extensive knowledge of Java syntax and features

    • Understanding of object-oriented programming concepts like inheritance, polymorphism, and encapsulation

    • Experience with data structures such as arrays, linked lists, stacks, and queues

    • Knowledge of algorithms like sorting, searching, and graph...

  • Answered by AI
    Add your answer
  • Q3. Can you explain what all knowledge do you have in java
  • Ans. 

    I have extensive knowledge in Java programming language, including core concepts, data structures, multithreading, and design patterns.

    • Strong understanding of core Java concepts such as OOP, inheritance, polymorphism, and encapsulation

    • Experience with data structures and algorithms in Java, including arrays, linked lists, trees, and graphs

    • Proficient in multithreading and concurrency in Java, including synchronization an...

  • Answered by AI
    Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Are you willing to relocate?
  • Ans. 

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

    • I am open to relocating for the right job opportunity

    • I am willing to move to a new location if required for the role

    • I am flexible and adaptable to new environments

  • Answered by AI
    Add your answer
  • Q2. How would you handle a situation in which you receive no support from your team on a project?
  • Ans. 

    I would address the issue by communicating with my team, seeking feedback, and finding alternative solutions.

    • Initiate a meeting with the team to discuss the lack of support and understand their perspectives

    • Seek feedback on how to improve collaboration and address any concerns

    • Explore alternative solutions or resources to move the project forward

    • Maintain open communication and transparency throughout the process

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and take the plunge.
Anonymous

IT Analyst Interview Questions & Answers

user image Anonymous

posted on 13 Jun 2025

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

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

  • Q1. Self introduction
  • Add your answer
  • Q2. What is bigdata
  • Ans. 

    Big data refers to large, complex datasets that require advanced tools for processing and analysis to extract meaningful insights.

    • Volume: Refers to the vast amounts of data generated every second, e.g., social media posts, transaction records.

    • Velocity: The speed at which data is generated and processed, such as real-time data from IoT devices.

    • Variety: The different types of data, including structured (databases), semi-...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Happy to work at tcs
Anonymous

IT Analyst Interview Questions & Answers

user image Anonymous

posted on 9 Nov 2024

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

I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Life cycle hooks,form example ,Pipe explain with example
  • Add your answer
  • Q2. Print key value vair of object ,http interceptor ,hositing ,closures
  • Add your answer
  • Q3. Component communication with parent child and without parent child
  • Ans. 

    Component communication in Angular can be achieved using parent-child relationship or through services for communication without parent-child relationship.

    • Parent-child communication: Use @Input() to pass data from parent to child component and @Output() with EventEmitter to pass data from child to parent component.

    • Without parent-child communication: Use services to create a shared service that can be injected into mult...

  • Answered by AI
    Add your answer
  • Q4. Multicasting with behavior and subject
  • Add your answer
  • Q5. Lazy loading and routing
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic-intermediate topics

Skills evaluated in this interview

Anonymous

IT Analyst Interview Questions & Answers

user image Anonymous

posted on 15 Oct 2024

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

(5 Questions)

  • Q1. Angular Life Cycle
  • Add your answer
  • Q2. What is component
  • Ans. 

    A component is a reusable and independent part of a system or software that performs a specific function.

    • Components can be easily integrated into different systems or applications

    • They help in modularizing the system and promoting reusability

    • Examples include buttons, input fields, and dropdown menus in a user interface

  • Answered by AI
    Add your answer
  • Q3. How you can reuse component
  • Ans. 

    Components can be reused by creating libraries, templates, or frameworks for future projects.

    • Create a library of commonly used components that can be easily integrated into new projects

    • Develop templates that can be customized and reused for similar projects

    • Build frameworks that provide a structure for developing new components and can be reused across projects

  • Answered by AI
    Add your answer
  • Q4. What are pipes in angular
  • Ans. 

    Pipes in Angular are used for transforming data in templates.

    • Pipes are used to format data before displaying it in the view.

    • They can be used to filter, sort, or transform data.

    • Examples include date pipe, uppercase pipe, and currency pipe.

  • Answered by AI
    Add your answer
  • Q5. What are modules
  • Ans. 

    Modules are independent units of software that can be used to build larger systems or applications.

    • Modules help in organizing code into smaller, manageable units

    • They can be reused across different parts of a system

    • Modules can be easily updated or replaced without affecting the entire system

    • Examples include JavaScript modules, Python modules, and software libraries

  • Answered by AI
    Add your answer
Round 2 - One-on-one 

(1 Question)

  • Q1. Why you want to switch
  • Ans. 

    Looking for new challenges and growth opportunities in a different environment.

    • Seeking new challenges to enhance skills and knowledge

    • Interested in exploring different technologies and industries

    • Want to broaden my experience and network

    • Current role lacks growth opportunities or advancement potential

  • Answered by AI
    Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Documentation related questions
  • Add your answer
  • Q2. Salary discussion
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for basic angular and scenario base questions

Skills evaluated in this interview

Anonymous

IT Analyst Interview Questions & Answers

user image Anonymous

posted on 11 Dec 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

General knowledge , basic questions on maths

Round 2 - Technical 

(1 Question)

  • Q1. Testing Activities
  • Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. Selenium Agile scrum and BDD
  • Add your answer
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion
  • Add your answer
Anonymous

IT Analyst Interview Questions & Answers

user image Anonymous

posted on 24 Dec 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is firewall and uses
  • Ans. 

    A firewall is a security device that monitors and controls incoming and outgoing network traffic based on predetermined security rules.

    • Acts as a barrier between trusted and untrusted networks.

    • Can be hardware-based (like a router) or software-based (like an application).

    • Filters traffic based on IP addresses, protocols, and ports.

    • Examples include Windows Firewall, Cisco ASA, and pfSense.

    • Helps prevent unauthorized access ...

  • Answered by AI
    Add your answer
  • Q2. What is load balancer
  • Ans. 

    A load balancer distributes network traffic across multiple servers to ensure reliability and optimize resource use.

    • Improves application availability by distributing traffic evenly.

    • Enhances performance by preventing any single server from becoming a bottleneck.

    • Can be hardware-based (like F5) or software-based (like Nginx).

    • Supports various algorithms for traffic distribution, such as round-robin or least connections.

    • Exa...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well and be confident
Anonymous

IT Analyst Interview Questions & Answers

user image Anonymous

posted on 9 Sep 2024

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

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. MERGE query in SQL databricks
  • Ans. 

    MERGE query in SQL databricks combines INSERT, UPDATE, and DELETE operations into a single statement.

    • MERGE statement is used to perform INSERT, UPDATE, and DELETE operations in a single query

    • It is useful for synchronizing two tables by updating existing records, inserting new records, and deleting records that no longer exist

    • Syntax: MERGE INTO target_table USING source_table ON condition WHEN MATCHED THEN UPDATE SET co...

  • Answered by AI
    Add your answer
  • Q2. Question from my current project.
  • Add your answer
  • Q3. Explain Current project flow
  • Ans. 

    Current project flow involves gathering requirements, designing solutions, development, testing, and deployment.

    • Gather requirements from stakeholders

    • Design solutions based on requirements

    • Develop the solution using appropriate technologies

    • Test the solution for bugs and errors

    • Deploy the solution for end users

  • Answered by AI
    Add your answer
  • Q4. Narrow vs wide transformation.
  • Ans. 

    Narrow transformation focuses on a single partition of data at a time, while wide transformation processes multiple partitions simultaneously.

    • Narrow transformation is more efficient for small datasets, while wide transformation is better for large datasets.

    • Examples of narrow transformations include map and filter operations, while wide transformations include groupByKey and reduceByKey.

    • Wide transformations require shuf...

  • Answered by AI
    Add your answer
  • Q5. How to resolve data skew issue.
  • Ans. 

    Data skew issue can be resolved by partitioning data, using indexing, optimizing queries, and redistributing data.

    • Partitioning data to distribute evenly across nodes

    • Using indexing to improve query performance

    • Optimizing queries to reduce data skew

    • Redistributing data to balance the workload

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

IT Analyst Interview Questions & Answers

user image Anonymous

posted on 12 Dec 2024

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
-

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between map and flatMap ?
  • Ans. 

    map transforms each element of a collection, flatMap transforms each element into a new collection and flattens the result

    • Map applies a function to each element of a collection and returns a new collection with the results

    • FlatMap applies a function that returns a collection to each element of a collection, then flattens the result into a single collection

    • Example: map([1, 2, 3], x => [x, x+1]) returns [[1, 2], [2, 3]...

  • Answered by AI
    Add your answer
  • Q2. What is difference between DataFrame and Dataset
  • Ans. 

    DataFrame is a two-dimensional tabular data structure in Spark, while Dataset is a distributed collection of data with strong typing.

    • DataFrame is a collection of distributed data organized into named columns, similar to a table in a relational database.

    • Dataset is a distributed collection of data with strong typing, allowing for compile-time type safety.

    • DataFrame is more suitable for structured data processing, while Da...

  • Answered by AI
    Add your answer
Anonymous

IT Analyst Interview Questions & Answers

user image Anonymous

posted on 16 Nov 2024

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

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Terraform difference resources and data
  • Ans. 

    Terraform resources create and manage infrastructure, while data sources retrieve information about existing resources.

    • Resources are used to create and manage infrastructure components like VMs, networks, and databases.

    • Data sources are used to fetch information about existing resources without managing them.

    • Example of a resource: `resource "aws_instance" "example" { ... }` creates a new EC2 instance.

    • Example of a data s...

  • Answered by AI
    Add your answer
  • Q2. How to monitor the eks clusters
  • Ans. 

    EKS clusters can be monitored using AWS CloudWatch, Prometheus, and Grafana.

    • Use AWS CloudWatch to monitor EKS clusters for metrics like CPU utilization, memory usage, and network traffic.

    • Set up Prometheus to collect metrics from EKS clusters using the Prometheus Operator.

    • Visualize the collected metrics using Grafana dashboards for better insights and monitoring.

    • Implement alerts and notifications in CloudWatch for proac...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

IT Analyst Interview Questions & Answers

user image Madhumitha M

posted on 28 Nov 2024

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

(2 Questions)

  • Q1. What is Pagr object modal
  • Ans. 

    Pager object modal is a user interface component that displays content in a modal window with pagination controls.

    • Pager object modal is used to display a large amount of content in a modal window with the ability to navigate through pages.

    • It typically includes pagination controls such as 'Next', 'Previous', and page numbers.

    • This component is commonly used in web applications to present information in a structured and o...

  • Answered by AI
    Add your answer
  • Q2. Java basics and cucumber basic
  • Add your answer
Round 2 - HR 

(1 Question)

  • Q1. Package discussion
  • Add your answer

Skills evaluated in this interview

Anonymous
More about working at TCS
  • 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 IT Analyst interview?
TCS interview process usually has 2-3 rounds. The most common rounds in the TCS interview process are Technical, HR and Resume Shortlist.
How to prepare for TCS IT Analyst interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at TCS. The most common topics and skills that interviewers at TCS expect are Cisco ASA, F5, Firewall, GIT and Hibernate.
What are the top questions asked in TCS IT Analyst interview?

Some of the top questions asked at the TCS IT Analyst interview -

  1. 1. What is interface how to use? 2. Tell me a small example for interface? 3. H...read more
  2. How to load data from tab delimiter file instead of ...read more
  3. Writing NO DATA FOUND after WHEN OTHERS is allowed in plsql bl...read more
What are the most common questions asked in TCS IT Analyst HR round?

The most common HR questions asked in TCS IT Analyst interview are -

  1. What are your salary expectatio...read more
  2. Why are you looking for a chan...read more
  3. What are your strengths and weakness...read more
How long is the TCS IT Analyst interview process?

The duration of TCS IT Analyst 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

  • Programmer Analyst Interview Questions
  • Technology Analyst Interview Questions
  • Programmer Analyst Trainee Interview Questions
  • IT Analyst C2 Interview Questions
  • Technical Analyst Interview Questions
  • System Analyst Interview Questions
  • Application Development Analyst Interview Questions
  • Lead Business Analyst Interview Questions
  • Show more
  • Software Analyst Interview Questions
  • Application Development - Senior Analyst Interview Questions

Overall Interview Experience Rating

4.1/5

based on 259 interview experiences

Difficulty level

Easy 29%
Moderate 65%
Hard 6%

Duration

Less than 2 weeks 56%
2-4 weeks 32%
4-6 weeks 6%
6-8 weeks 2%
More than 8 weeks 4%
View more

Top Skills for TCS IT Analyst

Web Development Interview Questions & Answers
250 Questions
SQL Interview Questions & Answers
250 Questions
Java Interview Questions & Answers
250 Questions
Software Development Interview Questions & Answers
250 Questions
Networking Interview Questions & Answers
250 Questions
Cloud Computing Interview Questions & Answers
250 Questions

IT Analyst Interview Questions from Similar Companies

Infosys
Infosys IT Analyst Interview Questions
3.6
 • 16 Interviews
Wipro
Wipro IT Analyst Interview Questions
3.7
 • 8 Interviews
Accenture
Accenture IT Analyst Interview Questions
3.8
 • 7 Interviews
HCLTech
HCLTech IT Analyst Interview Questions
3.5
 • 5 Interviews
Cognizant
Cognizant IT Analyst Interview Questions
3.7
 • 3 Interviews
Capgemini
Capgemini IT Analyst Interview Questions
3.7
 • 3 Interviews
IBM
IBM IT Analyst Interview Questions
4.0
 • 2 Interviews
DXC Technology
DXC Technology IT Analyst Interview Questions
3.7
 • 2 Interviews
HCL Group
HCL Group IT Analyst Interview Questions
3.6
 • 2 Interviews
Tech Mahindra
Tech Mahindra IT Analyst Interview Questions
3.5
 • 1 Interview
View all
TCS IT Analyst Salary
based on 65.7k salaries
₹5 L/yr - ₹16.6 L/yr
At par with the average IT Analyst Salary in India
View more details

TCS IT Analyst Reviews and Ratings

based on 6k reviews

3.6/5

Rating in categories

3.5

Skill development

3.9

Work-life balance

2.6

Salary

4.6

Job security

3.6

Company culture

2.6

Promotions

3.3

Work satisfaction

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

₹1 L/yr - ₹9 L/yr

IT Analyst
65.7k salaries
unlock blur

₹5.1 L/yr - ₹16.5 L/yr

AST Consultant
53.2k salaries
unlock blur

₹8 L/yr - ₹25.3 L/yr

Assistant System Engineer
33.2k salaries
unlock blur

₹2.7 L/yr - ₹4.9 L/yr

Associate Consultant
32.4k salaries
unlock blur

₹9 L/yr - ₹33.4 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 IT Analyst Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • 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 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • 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