Skip to main content

Comparison of the employee strength and attrition rates for Infosys, TCS, Wipro, HCL Technologies, Tech Mahindra, and LTI

 


Comparison of the employee strength and attrition rates for Infosys, TCS, Wipro, HCL Technologies, Tech Mahindra, and LTI (Larsen & Toubro Infotech), as of my knowledge cutoff in September 2021. Please note that these figures may have changed since then.

 

TCS (Tata Consultancy Services):

Employee Strength: TCS is one of the largest IT services companies globally. As of September 2021, it had a significant employee strength of over 488,649 professionals.

 

Attrition Rate: TCS has generally maintained a relatively lower attrition rate compared to industry standards. In recent years, TCS reported an attrition rate of around 8-12%, which is relatively low in the IT services sector.

 

Infosys:

Employee Strength: Infosys is a prominent IT services company with a substantial workforce. As of September 2021, Infosys had approximately 259,619 employees.

 

Attrition Rate: Infosys has faced attrition challenges, and the attrition rate can vary from year to year. In recent years, Infosys reported an attrition rate of around 15-20%, which is comparatively higher than TCS.

 

Wipro:

Employee Strength: Wipro is a major player in the IT services industry. As of September 2021, Wipro had around 202,571 employees.

 

Attrition Rate: Wipro, similar to other IT companies, experiences attrition, and the rate can fluctuate. In recent years, Wipro reported an attrition rate of approximately 15-20%, which is relatively higher compared to TCS but in line with Infosys.

 

HCL Technologies:

Employee Strength: HCL Technologies is a leading global IT services company. As of September 2021, HCL Technologies had a sizeable employee base of around 168,977 professionals.

 

Attrition Rate: HCL Technologies also faces attrition challenges in the competitive IT services sector. The attrition rate for HCL Technologies has ranged from 15-20% in recent years, similar to Infosys and Wipro.

 

Tech Mahindra:

Employee Strength: Tech Mahindra is a well-known IT services and consulting company. As of September 2021, Tech Mahindra had approximately 131,522 employees.

 

Attrition Rate: Tech Mahindra has reported attrition rates that vary from year to year. In recent years, the attrition rate for Tech Mahindra has been around 15-20%, similar to other companies in the industry.

 

LTI (Larsen & Toubro Infotech):

Employee Strength: LTI (Larsen & Toubro Infotech) is a global IT services and solutions provider. As of September 2021, LTI had around 42,238 employees.

 

Attrition Rate: LTI has reported attrition rates that can fluctuate. In recent years, the attrition rate for LTI has been approximately 10-15%, which is relatively lower compared to some of the other companies in this comparison.

 

Please note that the attrition rates mentioned are approximate figures and can vary over time due to various factors. It's advisable to refer to the latest official sources or company reports for the most up-to-date information on employee strength and attrition rates for these companies.

 

 



Comments

Popular posts from this blog

How to create chatbot for daily task using RPA ?

H ow to create chatbot for daily task using RPA: Creating a chatbot for daily tasks using Robotic Process Automation (RPA) involves using RPA software tools and techniques to automate tasks typically performed by humans. Here's a high-level overview of the process: Step 1: Define Use Case and Requirements Identify the daily tasks you want the chatbot to automate, such as data entry, form filling, or repetitive data processing. Define the requirements and expected behavior of the chatbot, including the input/output format, data sources, and systems it needs to interact with. Step 2: Choose RPA Software Select a suitable RPA software tool that fits your requirements. There are many RPA software tools available in the market, such as UiPath, Automation Anywhere, and Blue Prism. These tools provide visual interfaces for creating and managing automation workflows, and often include features such as recording and playback, OCR, and integrations with various applications. Step 3: Design C...

Automation initiatives which can be reused in multiple domain

Automation initiatives which can be reused in multiple domain:  There are several automation initiatives that can be reused across different domains and industries to streamline processes, improve efficiency, and reduce human error. Here are some examples:  1. Robotic Process Automation (RPA): RPA involves automating repetitive and rule-based tasks using software robots, which can be reused across different processes and applications. For example, automating data entry, invoice processing, or customer onboarding can be reused in various departments such as finance, HR, or operations.  2. Chatbots and Virtual Assistants: Chatbots and virtual assistants can be designed to handle frequently asked questions, provide support, and automate routine tasks like appointment scheduling or order tracking. These can be reused in different customer service scenarios, such as e-commerce, healthcare, or travel, with minimal customization. 3. Data Integration and ETL (Extract, Transform, ...

Product Activation Serial Key module in a WPF application using .NET Framework and C#.

Product Activation Serial Key module in a WPF application using .NET Framework and C#.  Users can generate new serial keys, enter them in the textbox, and validate them with the click of a button. First, create a new WPF project in Visual Studio using .NET Framework. Then, follow these steps: 1. Create a ProductActivation class to generate and validate serial keys: CSHARP---- using System; namespace ProductActivationApp {     public class ProductActivation     {         public static string GenerateSerialKey()         {             // Generate a random serial key (e.g., using GUID)             Guid guid = Guid.NewGuid();             string serialKey = guid.ToString().ToUpper();             return serialKey;         }         public static bool ValidateSerialKey(stri...