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

Filter interviews by

TCS Analyst Interview Questions, Process, and Tips

Updated 23 Jan 2025

Top TCS Analyst Interview Questions and Answers

  • Q1. What is the difference between arraylist and vector? how to traverse a vector?
  • Q2. How do you create a form in React JS and monitor the value changes?
  • Q3. What are the different CpU scheduling policies? who does the cpu scheduling?
View all 53 questions

TCS Analyst Interview Experiences

100 interviews found

Analyst Interview Questions & Answers

user image Anonymous

posted on 26 Mar 2015

Interview Questionnaire 

16 Questions

  • Q1. Tell me about yourself?
  • Q2. Are you 100% honest ?
  • Q3. What are ur favorite subjects?
  • Q4. What do you mean by Multithreading in java?
  • Ans. 

    Multithreading in Java refers to the concurrent execution of two or more parts of a program for maximum utilization of CPU.

    • Multithreading allows multiple threads to run concurrently within a single program.

    • It improves the performance of the program by utilizing the CPU more efficiently.

    • Java provides built-in support for multithreading through the java.lang.Thread class.

    • Multithreading can be used for tasks such as backg...

  • Answered by AI
  • Q5. What are the different CpU scheduling policies? who does the cpu scheduling?
  • Ans. 

    CPU scheduling policies include FCFS, SJF, Round Robin, Priority, and Multilevel Queue. The operating system does the scheduling.

    • FCFS (First Come First Serve)

    • SJF (Shortest Job First)

    • Round Robin

    • Priority

    • Multilevel Queue

    • Operating system does scheduling

  • Answered by AI
  • Q6. What is Jvm? who manages the thread Jvm or OS?
  • Ans. 

    Jvm is Java Virtual Machine. It manages threads on its own.

    • Jvm is a virtual machine that executes Java bytecode.

    • It provides a runtime environment for Java programs.

    • Jvm manages threads on its own using its own thread scheduler.

    • Jvm is platform-independent and provides a layer of abstraction between the Java code and the underlying operating system.

    • Examples of popular JVM implementations include Oracle's HotSpot and OpenJ

  • Answered by AI
  • Q7. Semaphore?synchronisation in java? Mutex?
  • Q8. Explain tree traversals technique with example??
  • Ans. 

    Tree traversal is a technique to visit all nodes of a tree in a specific order.

    • There are three types of tree traversals: inorder, preorder, and postorder.

    • Inorder traversal visits the left subtree, then the root, and then the right subtree.

    • Preorder traversal visits the root, then the left subtree, and then the right subtree.

    • Postorder traversal visits the left subtree, then the right subtree, and then the root.

    • For exampl...

  • Answered by AI
  • Q9. What is the difference between arraylist and vector? how to traverse a vector?
  • Ans. 

    ArrayList and Vector are both dynamic arrays, but Vector is synchronized and slower. Traversing a Vector is similar to an ArrayList.

    • ArrayList is not synchronized, while Vector is synchronized.

    • ArrayList is faster than Vector, but Vector is thread-safe.

    • To traverse a Vector, we can use a for loop or an iterator, similar to an ArrayList.

    • Example: Vector v = new Vector<>(); for(String s : v) { //do something }

Answered by AI
  • Q10. Why TCS?
  • Ans. 

    TCS is a leading global IT services company with a strong reputation and diverse opportunities for growth.

    • TCS has a strong reputation in the IT industry

    • TCS offers diverse opportunities for growth and learning

    • TCS has a global presence and works with top clients

    • TCS has a strong focus on innovation and technology

    • TCS provides a supportive and inclusive work environment

  • Answered by AI
  • Q11. Any five tata group companies other than TCS?
  • Q12. What is the Tata‘s product used in every house?
  • Ans. 

    Tata Salt is the product used in every house.

    • Tata Salt is a brand of salt produced by Tata Chemicals.

    • It is the market leader in India with a 27% market share.

    • Tata Salt has been fortified with iodine to help address iodine deficiency in India.

    • It is available in various sizes and packaging options to suit different needs.

    • Tata Salt has won several awards for its quality and innovation.

  • Answered by AI
  • Q13. What‘s your hobby and passion?
  • Ans. 

    My hobby and passion is photography.

    • I love capturing moments and telling stories through my photographs.

    • I enjoy exploring different techniques and experimenting with composition.

    • Photography allows me to express my creativity and view the world from unique perspectives.

    • I have participated in several photography competitions and my work has been featured in local exhibitions.

    • Some of my favorite subjects to photograph are

  • Answered by AI
  • Q14. In your views who should be the captain of Indian cricket team?
  • Q15. What are the qualities of a good leader ?
  • Ans. 

    A good leader possesses qualities such as strong communication skills, empathy, integrity, and the ability to inspire and motivate others.

    • Strong communication skills: A good leader is able to effectively convey their ideas and instructions to their team members.

    • Empathy: A good leader understands and considers the feelings and perspectives of their team members, fostering a positive and supportive work environment.

    • Integ...

  • Answered by AI
  • Q16. Worst situation you have ever faced in your life ?
  • Ans. 

    Being stranded in a foreign country with no money or means to communicate

    • Lost my wallet with all my money and identification

    • Couldn't speak the local language to ask for help

    • Had to rely on the kindness of strangers for assistance

  • Answered by AI

    Interview Preparation Tips

    Round: Test
    Experience: There were no technical questions. Only quantitative questions was there. Questions were not very tough.
    Tips: Just have a look at RS Aggarwal book or any other aptitude book , you will easily get through it.
    Duration: 80 minutes

    Round: Other Interview
    Experience: There were different panels , having three persons in each panel. It was basically HR , TECh, MR interview altogether. Even some of the students were called for one to one tech interview and later they were called for hr and mr round.

    Skills: JAVA, C/C++
    College Name: NA

    Skills evaluated in this interview

    Analyst Interview Questions & Answers

    user image Anonymous

    posted on 25 Nov 2024

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

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

    Round 1 - Technical 

    (5 Questions)

    • Q1. What is data analysis and data science?
    • Ans. 

      Data analysis involves examining, cleaning, transforming, and modeling data to discover useful information, while data science involves using scientific methods, algorithms, and systems to extract knowledge and insights from data.

      • Data analysis focuses on examining and interpreting data to make informed decisions.

      • Data science involves using various techniques and algorithms to extract insights and knowledge from data.

      • Da...

    • Answered by AI
    • Q2. What is array explain numpy in python?
    • Ans. 

      An array in numpy is a grid of values, all of the same type, and is indexed by a tuple of nonnegative integers.

      • Numpy is a popular Python library for numerical computing.

      • Arrays in numpy can be created using the np.array() function.

      • Arrays can have multiple dimensions, such as 1D, 2D, or even higher dimensions.

      • Numpy arrays are more efficient than Python lists for numerical operations.

      • Example: import numpy as np arr = np.a

    • Answered by AI
    • Q3. What is dataframe?
    • Ans. 

      Dataframe is a two-dimensional data structure in pandas that stores data in rows and columns.

      • Dataframe is a key data structure in the pandas library for data manipulation and analysis

      • It is similar to a table in a relational database or a spreadsheet in Excel

      • Dataframes can be created from various data sources such as CSV files, databases, or dictionaries

    • Answered by AI
    • Q4. What is Power Bi
    • Ans. 

      Power BI is a business analytics tool by Microsoft that provides interactive visualizations and business intelligence capabilities.

      • Power BI allows users to connect to various data sources and create interactive reports and dashboards.

      • Users can easily share and collaborate on reports with others within their organization.

      • It offers a wide range of visualization options to present data in a meaningful way.

      • Power BI can be ...

    • Answered by AI
    • Q5. What are the data visulaztion tools?
    • Ans. 

      Data visualization tools are software that help in creating visual representations of data to aid in understanding and analysis.

      • Tableau

      • Power BI

      • QlikView

      • Google Data Studio

      • D3.js

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - excellent

    Skills evaluated in this interview

    Analyst Interview Questions Asked at Other Companies

    asked in Capgemini
    Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, you ... read more
    Q2. Ninja and the Game of Words In this game, Ninja is provided with ... read more
    asked in Deloitte
    Q3. Reverse a Number Problem Statement Given an integer 'N', write a ... read more
    Q4. A 10x10x10 cube is made up of 1x1x1 cubes. Its outer surface is p ... read more
    Q5. Wildcard Pattern Matching Problem Statement Implement a wildcard ... read more

    Analyst Interview Questions & Answers

    user image Anonymous

    posted on 16 Jan 2025

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

    I applied via Walk-in and was interviewed in Dec 2024. There were 3 interview rounds.

    Round 1 - Technical 

    (1 Question)

    • Q1. Match functionality in mainframes
    Round 2 - Behavioral 
    Round 3 - HR 

    (1 Question)

    • Q1. Why do you want to join TCS

    Analyst Interview Questions & Answers

    user image Rushikesh Patil

    posted on 8 Jan 2025

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

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

    Round 1 - Aptitude Test 

    The basic aptitude test is Ninja. And it was very tough.

    Round 2 - Coding Test 

    They provide us test code based on test SQL, java and some testing area case studies.

    Round 3 - Technical 

    (1 Question)

    • Q1. Technical interview

    TCS interview questions for designations

     Business Analyst

     (98)

     Data Analyst

     (66)

     Quality Analyst

     (21)

     Senior Analyst

     (14)

     BPS Analyst

     (7)

     Associate Analyst

     (6)

     Junior Analyst

     (3)

     PMO Analyst

     (2)

    Analyst Interview Questions & Answers

    user image Mishti Doi

    posted on 8 Nov 2024

    Interview experience
    3
    Average
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - One-on-one 

    (2 Questions)

    • Q1. Tell me about your self
    • Q2. Tell me about yourself
    Round 2 - One-on-one 

    (1 Question)

    • Q1. Tell me about your self

    Get interview-ready with Top TCS Interview Questions

    Analyst Interview Questions & Answers

    user image VIVEK SINGH

    posted on 30 Oct 2024

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

    (2 Questions)

    • Q1. What is lookup transformation?
    • Q2. What is update strategy?

    Analyst Interview Questions & Answers

    user image Anonymous

    posted on 7 Nov 2024

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

    (2 Questions)

    • Q1. What is sap Aribaa
    • Ans. 

      SAP Ariba is a cloud-based procurement solution that helps businesses streamline their procurement processes.

      • SAP Ariba provides tools for procurement, sourcing, supplier management, and invoice management.

      • It helps businesses connect with suppliers, manage contracts, and automate procurement processes.

      • The platform offers spend visibility, supplier collaboration, and risk management capabilities.

      • SAP Ariba is used by many...

    • Answered by AI
    • Q2. Core componenets of SAP Ariba
    • Ans. 

      Core components of SAP Ariba include Sourcing, Contracts, Procurement, Supplier Management, and Invoice Management.

      • Sourcing: Allows organizations to manage sourcing events and negotiations with suppliers.

      • Contracts: Helps in creating and managing contracts with suppliers.

      • Procurement: Streamlines the procurement process by automating purchase orders and approvals.

      • Supplier Management: Manages supplier information, perform...

    • Answered by AI

    Analyst Interview Questions & Answers

    user image Anonymous

    posted on 17 Aug 2024

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

    I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

    Round 1 - Technical 

    (2 Questions)

    • Q1. ETL Process Pipelines and Explanations
    • Ans. 

      ETL process pipelines involve extracting, transforming, and loading data from source systems to target systems.

      • ETL stands for Extract, Transform, Load

      • Data is extracted from source systems, transformed according to business rules, and loaded into target systems

      • ETL pipelines are used to move data between systems efficiently and reliably

      • Common ETL tools include Informatica, Talend, and Apache NiFi

    • Answered by AI
    • Q2. Database SQL Queries
    Round 2 - HR 

    (1 Question)

    • Q1. Expected CTC and why quitting previous company
    • Ans. 

      Expected CTC and reason for leaving previous company

      • Expected CTC is based on my experience, skills, and market standards

      • I left my previous company due to lack of growth opportunities

      • I am looking for a challenging role with better compensation

    • Answered by AI

    Skills evaluated in this interview

    Analyst Interview Questions & Answers

    user image Diksha Anand

    posted on 3 May 2024

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

    I applied via Recruitment Consulltant and was interviewed in Apr 2024. There was 1 interview round.

    Round 1 - Technical 

    (5 Questions)

    • Q1. Which type of custom GA4 reports you have created?
    • Ans. 

      I have created custom GA4 reports for tracking user behavior, conversion rates, and campaign performance.

      • Created custom reports to track user engagement on specific pages

      • Developed reports to analyze conversion rates for different marketing channels

      • Built reports to measure the performance of specific ad campaigns

    • Answered by AI
    • Q2. What custom user activities you track on client website?
    • Ans. 

      We track custom user activities such as login/logout, product views, purchases, and form submissions.

      • Login/logout events

      • Product views

      • Purchases

      • Form submissions

    • Answered by AI
    • Q3. Explain the process of creating tags and triggers in GTM.
    • Ans. 

      Creating tags and triggers in GTM involves defining actions and conditions for tracking events on a website.

      • Tags are used to define what actions should be taken when a specific event occurs on the website.

      • Triggers are used to define the conditions under which a tag should be fired.

      • Tags can be set up to track various events such as button clicks, form submissions, pageviews, etc.

      • Triggers can be based on URL, click class...

    • Answered by AI
    • Q4. Which type of industry projects you have worked on?
    • Q5. Have you set up GTM on the website?
    • Ans. 

      Yes, I have set up Google Tag Manager (GTM) on the website.

      • Yes, I have experience setting up GTM for tracking website analytics.

      • Implemented various tags, triggers, and variables within GTM.

      • Ensured proper data tracking and integration with other tools like Google Analytics.

      • Regularly monitored and tested GTM setup for accuracy and efficiency.

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare yourself in advance for the TCS interview.

    Skills evaluated in this interview

    Analyst Interview Questions & Answers

    user image Anonymous

    posted on 19 Nov 2024

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

    General questions and aptitude based

    Round 2 - Coding Test 

    Prepare c++ and oops concept

    Analyst Interview Questions & Answers

    user image Anonymous

    posted on 12 Dec 2024

    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - One-on-one 

    (1 Question)

    • Q1. Tell me about your self
    • Ans. 

      I am a dedicated and detail-oriented analyst with a strong background in data analysis and problem-solving.

      • I have a Bachelor's degree in Statistics from XYZ University.

      • I have experience using various data analysis tools such as Excel, SQL, and Python.

      • I have successfully completed multiple projects where I analyzed data to provide actionable insights for decision-making.

      • I am skilled in creating visualizations and report

    • Answered by AI

    TCS Interview FAQs

    How many rounds are there in TCS Analyst interview?
    TCS interview process usually has 2-3 rounds. The most common rounds in the TCS interview process are Technical, Aptitude Test and HR.
    How to prepare for TCS 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 Data Warehousing, Informatica, PKI, SIEM and SOC.
    What are the top questions asked in TCS Analyst interview?

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

    1. What is the difference between arraylist and vector? how to traverse a vect...read more
    2. What are the different CpU scheduling policies? who does the cpu scheduli...read more
    3. What's difference between mcb and mccb ? How contractors works in circu...read more
    How long is the TCS Analyst interview process?

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

    Tell us how to improve this page.

    TCS Analyst Interview Process

    based on 81 interviews

    4 Interview rounds

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

    Analyst Interview Questions from Similar Companies

    Capgemini Analyst Interview Questions
    3.7
     • 457 Interviews
    Accenture Analyst Interview Questions
    3.8
     • 203 Interviews
    HCLTech Analyst Interview Questions
    3.5
     • 116 Interviews
    Wipro Analyst Interview Questions
    3.7
     • 67 Interviews
    Infosys Analyst Interview Questions
    3.6
     • 49 Interviews
    Genpact Analyst Interview Questions
    3.8
     • 15 Interviews
    IBM Analyst Interview Questions
    4.0
     • 15 Interviews
    View all
    TCS Analyst Salary
    based on 6.6k salaries
    ₹2 L/yr - ₹9.5 L/yr
    At par with the average Analyst Salary in India
    View more details

    TCS Analyst Reviews and Ratings

    based on 729 reviews

    3.8/5

    Rating in categories

    3.6

    Skill development

    3.9

    Work-life balance

    3.0

    Salary

    4.5

    Job security

    3.7

    Company culture

    2.9

    Promotions

    3.4

    Work satisfaction

    Explore 729 Reviews and Ratings
    System Engineer
    1.1L salaries
    unlock blur

    ₹1 L/yr - ₹9 L/yr

    IT Analyst
    66.9k salaries
    unlock blur

    ₹5.1 L/yr - ₹16 L/yr

    AST Consultant
    51.4k salaries
    unlock blur

    ₹8 L/yr - ₹25 L/yr

    Assistant System Engineer
    29.8k salaries
    unlock blur

    ₹2.2 L/yr - ₹5.7 L/yr

    Associate Consultant
    29.3k salaries
    unlock blur

    ₹9 L/yr - ₹32 L/yr

    Explore more salaries
    Compare TCS with

    Amazon

    4.1
    Compare

    Wipro

    3.7
    Compare

    Infosys

    3.6
    Compare

    Accenture

    3.8
    Compare
    Did you find this page helpful?
    Yes No
    write
    Share an Interview