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

    • 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 96k Reviews

Play video Play video Video summary
  • About
  • Reviews
    96k
  • Salaries
    9L
  • Interviews
    10.9k
  • Jobs
    256
  • Benefits
    11.9k
  • Photos
    87
  • Posts
    90

Filter interviews by

TCS Ninja Interview Questions and Answers

Updated 29 Apr 2025

49 Interview questions

A Ninja was asked 1mo ago
Q. What makes MongoDB different from Relational DBMS?
Ans. 

MongoDB is a NoSQL database that stores data in flexible, JSON-like documents, unlike the structured tables of relational databases.

  • Data Model: MongoDB uses a document-oriented model, allowing for nested data structures, while relational DBMS use tables with fixed schemas.

  • Scalability: MongoDB is designed for horizontal scaling, making it easier to distribute data across multiple servers compared to relational data...

A Ninja was asked 6mo ago
Q. What are the differences between abstraction and interface?
Ans. 

Abstraction focuses on hiding implementation details, while interfaces define a contract for classes to implement.

  • Abstraction allows for defining common behavior without specifying implementation details

  • Interfaces define a set of methods that a class must implement, providing a contract for how the class should behave

  • Abstraction can be achieved through abstract classes in languages like Java

  • Interfaces are used to ...

Ninja Interview Questions Asked at Other Companies

asked in TCS
Q1. You have completed many courses on Coursera and NPTEL. How do you ... read more
View answers (3)
asked in TCS
Q2. Is it a software project? Which software or language did you use?
View answers (2)
asked in TCS
Q3. You have done a course in Neural Networks right? What are neural ... read more
View answers (2)
asked in TCS
Q4. Given the series: 0, 0, 2, 1, 4, 2, 6, 3, 8, 4, 10, 5, 12, 6, 14, ... read more
View answers (2)
asked in TCS
Q5. Why are you shifting to the software side, especially coming from ... read more
View answer (1)
View All
🔥 Asked by recruiter 11 times
A Ninja was asked 6mo ago
Q. What is a constructor?
Ans. 

A constructor is a special type of method in a class that is automatically called when an object of that class is created.

  • Constructors have the same name as the class they belong to

  • They can be used to initialize object properties

  • They do not have a return type

  • Example: public class Car { public Car() { // constructor code here }}

A Ninja was asked 7mo ago
Q. What are the differences between HTTP and IP?
Ans. 

HTTP is a protocol used for transferring data over the internet, while IP is a unique address assigned to devices on a network.

  • HTTP stands for Hypertext Transfer Protocol and is used for transmitting web pages, images, videos, etc. between a web server and a client's browser.

  • IP stands for Internet Protocol and is a numerical label assigned to each device connected to a network to identify and locate them.

  • HTTP oper...

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.
A Ninja was asked 7mo ago
Q. Given a list of numbers, find the duplicate numbers.
Ans. 

Find duplicates in a list of strings

  • Iterate through the array and store each element in a hash set

  • If an element is already in the hash set, it is a duplicate

A Ninja was asked 7mo ago
Q. What is OOPS in C++?
Ans. 

Oops in C++ stands for Object-Oriented Programming System. It is a programming paradigm that uses objects and classes for data organization and manipulation.

  • Oops in C++ allows for encapsulation, inheritance, and polymorphism.

  • Classes in C++ are used to create objects, which can have attributes (data members) and behaviors (member functions).

  • Example: class Car { private: int speed; public: void accelerate() { speed ...

🔥 Asked by recruiter 28 times
A Ninja was asked 8mo ago
Q. What is polymorphism?
Ans. 

Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

  • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

  • It enables a single interface to represent multiple data types.

  • Examples include method overloading and method overriding in object-oriented programming languages.

Are these interview questions helpful?
A Ninja was asked 10mo ago
Q. What is runtime polymorphism?
Ans. 

Runtime polymorphism is the ability of a function to behave differently based on the object it is called with at runtime.

  • Runtime polymorphism is achieved through method overriding in object-oriented programming.

  • It allows a subclass to provide a specific implementation of a method that is already provided by its superclass.

  • The actual method that gets called is determined by the type of object at runtime.

  • Example: An...

A Ninja was asked 10mo ago
Q. What is the difference between Artificial Intelligence and Machine Learning?
Ans. 

Artificial intelligence is the broader concept of machines being able to carry out tasks in a way that we would consider 'smart', while machine learning is a subset of AI that allows machines to learn from data without being explicitly programmed.

  • AI is the broader concept of machines simulating human intelligence, while machine learning is a subset of AI that focuses on the development of computer programs that ca...

🔥 Asked by recruiter 2 times
A Ninja was asked 10mo ago
Q. Write a program to find prime numbers.
Ans. 

A program to find prime numbers in a given range.

  • Iterate through numbers in the given range

  • Check if each number is divisible by any number other than 1 and itself

  • If not divisible, it is a prime number

1 2 3 4 5

TCS Ninja Interview Experiences

194 interviews found

Ninja Interview Questions & Answers

user image Praveen Sunkara

posted on 16 Jan 2025

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 Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What do you know about TCS?
  • Ans. 

    TCS (Tata Consultancy Services) is an Indian multinational IT services and consulting company.

    • TCS is one of the largest IT services companies in the world.

    • It is a part of the Tata Group, a conglomerate in India.

    • TCS offers services in areas such as IT consulting, software development, and business process outsourcing.

    • The company has a global presence with offices in multiple countries.

    • TCS is known for its innovation and...

  • Answered by AI
    Add your answer
  • Q2. Problem on strings.
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. AWS Certifications course based questions from resume.
  • Add your answer
  • Q2. Project based questions from resume
  • Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about something that you haven't mentioned in resume
  • Ans. 

    I have experience in organizing and leading team-building activities.

    • Organized a company retreat focused on team bonding and communication

    • Led a team-building workshop on problem-solving and collaboration

    • Planned a volunteer day for the team to give back to the community

  • Answered by AI
    Add your answer
  • Q2. About TCS and its slalary compared to other companies.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well what you have mentioned in your resume.
Anonymous

Ninja Interview Questions & Answers

user image Anonymous

posted on 15 Dec 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 Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

An aptitude test that needs to be completed at the TCS iON center.

Round 2 - Technical 

(3 Questions)

  • Q1. Can you tell me about yourself?
  • Add your answer
  • Q2. What is your district famous for?
  • Add your answer
  • Q3. What is an optimized program to generate prime numbers?
  • Ans. 

    The Sieve of Eratosthenes is an optimized algorithm to generate prime numbers.

    • Use the Sieve of Eratosthenes algorithm to efficiently generate prime numbers.

    • Start by creating a list of numbers from 2 to n, where n is the maximum number you want to check for primes.

    • Iterate through the list and mark multiples of each number as non-prime.

    • The remaining unmarked numbers are prime.

    • Example: For n=10, the prime numbers generate...

  • Answered by AI
    Add your answer
Round 3 - HR 

(3 Questions)

  • Q1. Can you tell me about yourself?
  • Add your answer
  • Q2. Are you comfortable with working night shifts?
  • Add your answer
  • Q3. Are you willing to relocate?
  • Ans. 

    I am open to relocating for the right opportunity, as it can enhance my career growth and provide new experiences.

    • Career Advancement: Relocating can open doors to new job opportunities and professional growth, such as moving to a tech hub like Silicon Valley.

    • Cultural Experience: Living in a new city allows me to immerse myself in different cultures and broaden my perspective, enhancing my adaptability.

    • Networking Opport...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - One should be confident during the interview process and possess comprehensive knowledge about the project.
Anonymous

Ninja Interview Questions & Answers

user image Anonymous

posted on 1 Jan 2025

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

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

Round 1 - HR 

(6 Questions)

  • Q1. Asked about the company and what they do
  • Add your answer
  • Q2. Asked about my research experience and how that will help their company
  • Add your answer
  • Q3. Who is the CEO of TCS
  • Ans. 

    Rajesh Gopinathan is the CEO of TCS.

    • Rajesh Gopinathan took over as CEO of TCS in 2017.

    • He has been with TCS since 2001 and has held various leadership roles.

    • Under his leadership, TCS has continued to grow and expand globally.

  • Answered by AI
    Add your answer
  • Q4. If i am comfortable working night shifts
  • Ans. 

    Yes, I am comfortable working night shifts as I am able to maintain focus and productivity during those hours.

    • I have previous experience working night shifts and have adapted well to the schedule

    • I am a night owl and naturally more alert and productive during nighttime hours

    • I understand the importance of maintaining a healthy work-life balance and am willing to adjust my schedule accordingly

  • Answered by AI
    Add your answer
  • Q5. If i am okay with moving to any other part of the country
  • Ans. 

    I am open to relocating anywhere in the country for the right opportunity.

    • I am flexible and willing to consider opportunities in different locations.

    • I believe in exploring new places and experiencing different cultures.

    • I am excited about the possibility of starting fresh in a new city or state.

  • Answered by AI
    Add your answer
  • Q6. Asked to write a code from my project (they asked only the first 5 lines basically just import statements)
  • Add your answer
Round 2 - Aptitude Test 

Just gave a three hour test which had aptitude questions and two coding questions and if u get one of the coding questions they will select you for sure

Interview Preparation Tips

Interview preparation tips for other job seekers - DW they take everryone try for better companies or try TCS prime or TCS digital
Anonymous

Ninja Interview Questions & Answers

user image Anonymous

posted on 1 Oct 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Basic aptitude prepare from indiabix. keep up with the time you will easily clear the round.

Round 2 - Coding Test 

1-easy questions of array/string
2-medium level question of linear DSA(stack,queue,LL,Array, string)

Round 3 - One-on-one 

(4 Questions)

  • Q1. SQL queries were asked, and DDL DML DCL TCL
  • Add your answer
  • Q2. OOPS: constructor, polymorphism with real life example
  • Add your answer
  • Q3. 5 things about why should we hire you
  • Add your answer
  • Q4. Describe your college life
  • Ans. 

    My college life was a whirlwind of new experiences, friendships, and academic challenges.

    • Joined various clubs and organizations to meet new people and explore interests

    • Balanced studying with social activities to maintain a healthy lifestyle

    • Participated in internships and research projects to gain practical experience

    • Attended lectures and seminars to expand knowledge and skills

    • Enjoyed campus events and traditions to cre...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - just prepare basics questions
Anonymous

Ninja Interview Questions & Answers

user image Anonymous

posted on 19 Dec 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Gebaral aptitude round

Round 2 - Coding Test 

General coding round

Round 3 - Technical 

(2 Questions)

  • Q1. What are my favourite subjects
  • Ans. 

    My favorite subjects are mathematics, computer science, and history.

    • Mathematics - I enjoy solving complex problems and equations.

    • Computer Science - I love coding and creating new programs.

    • History - I find learning about the past fascinating and important.

  • Answered by AI
    Add your answer
  • Q2. What qualities do i have to be in an IT field
  • Ans. 

    Qualities needed in the IT field include technical skills, problem-solving abilities, adaptability, and communication skills.

    • Strong technical skills in areas such as programming, networking, and cybersecurity

    • Ability to problem-solve and troubleshoot issues efficiently

    • Adaptability to quickly learn new technologies and adapt to changes in the industry

    • Effective communication skills to work with team members and clients

    • Att...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Very easy interview with basics
Anonymous

Ninja Interview Questions & Answers

user image Anonymous

posted on 17 Dec 2024

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

Basic aptitude questions were asked

Round 2 - Coding Test 

2 coding questions which were of easy level

Round 3 - Technical 

(2 Questions)

  • Q1. Questions were about my projects and what inspired me to take up those projects
  • Add your answer
  • Q2. Questions based on deep learning and ML
  • Add your answer
Anonymous

Ninja Interview Questions & Answers

user image Anonymous

posted on 5 Dec 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response
Round 1 - Aptitude Test 

Numerical,verbal,reasoning

Round 2 - Coding Test 

Coding with our choice of programming language

Round 3 - Technical 

(2 Questions)

  • Q1. Explain about your project
  • Add your answer
  • Q2. Do you know coding
  • Add your answer
Anonymous

Ninja Interview Questions & Answers

user image Anonymous

posted on 8 Dec 2024

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

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

Round 1 - Coding Test 

Basics coding and aptitude qns were asked

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me abt urself
  • Add your answer
  • Q2. What are your current projects
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Develop more skills based on ur interest
Anonymous

Ninja Interview Questions & Answers

user image Anonymous

posted on 15 Dec 2024

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

Tough apptitude questions

Round 2 - Coding Test 

Simple coding questions

Round 3 - Technical 

(2 Questions)

  • Q1. Simple basic interviews
  • Add your answer
  • Q2. Self introduction, DML in SQL query
  • Add your answer
Anonymous

Ninja Interview Questions & Answers

user image Anonymous

posted on 19 Dec 2024

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

Good knowledge of basic apti only

Round 2 - Coding Test 

Good knowledge of array and string

Round 3 - One-on-one 

(2 Questions)

  • Q1. Reverse a string
  • Ans. 

    A function that reverses a given string and returns it.

    • Create an empty string to store the reversed string

    • Iterate through the input string from the end to the beginning and append each character to the new string

    • Return the reversed string

  • Answered by AI
    Add your answer
  • Q2. Who is ceo of tata consultancy
  • Ans. 

    Rajesh Gopinathan is the CEO of Tata Consultancy Services (TCS).

    • Rajesh Gopinathan became the CEO of TCS in 2017.

    • He has been with TCS since 2001 and has held various leadership roles within the company.

    • Under his leadership, TCS has continued to be a global leader in IT services and consulting.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - keep going for your dream company
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 Ninja interview?
TCS interview process usually has 2-3 rounds. The most common rounds in the TCS interview process are Technical, Aptitude Test and Coding Test.
What are the top questions asked in TCS Ninja interview?

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

  1. Why should you shifting to software side? (if you are from NON IT backgroun...read more
  2. What is your favorite programming language, and which languages are you comfort...read more
  3. What is Abstraction ? Explain with exam...read more
What are the most common questions asked in TCS Ninja HR round?

The most common HR questions asked in TCS Ninja interview are -

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

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

  • Nicu Staff Nurse Interview Questions
  • Network Engineer Interview Questions
  • Staff Nurse Interview Questions
  • DOT NET Developer Interview Questions
  • Nursing Staff Interview Questions
  • NOC Engineer Interview Questions
  • Node JS Developer Interview Questions
  • Network Administrator Interview Questions
  • Show more
  • Senior Network Engineer Interview Questions
  • Network Support Engineer Interview Questions

Overall Interview Experience Rating

4.1/5

based on 172 interview experiences

Difficulty level

Easy 36%
Moderate 62%
Hard 3%

Duration

Less than 2 weeks 43%
2-4 weeks 28%
4-6 weeks 11%
6-8 weeks 6%
More than 8 weeks 12%
View more

Top Skills for TCS Ninja

Algorithms Interview Questions & Answers
250 Questions
Data Structures Interview Questions & Answers
250 Questions
SQL Interview Questions & Answers
250 Questions
Networking Interview Questions & Answers
250 Questions
Python Interview Questions & Answers
200 Questions
Java Interview Questions & Answers
200 Questions

Interview Questions from Similar Companies

Accenture
Accenture Interview Questions
3.8
 • 8.5k Interviews
Infosys
Infosys Interview Questions
3.6
 • 7.8k Interviews
Wipro
Wipro Interview Questions
3.7
 • 5.9k Interviews
Cognizant
Cognizant Interview Questions
3.7
 • 5.8k Interviews
Capgemini
Capgemini Interview Questions
3.7
 • 5k Interviews
HCLTech
HCLTech Interview Questions
3.5
 • 4k Interviews
Tech Mahindra
Tech Mahindra Interview Questions
3.5
 • 4k Interviews
Genpact
Genpact Interview Questions
3.8
 • 3.3k Interviews
LTIMindtree
LTIMindtree Interview Questions
3.7
 • 3k Interviews
IBM
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
TCS Ninja Salary
based on 228 salaries
₹3 L/yr - ₹4.3 L/yr
At par with the average Ninja Salary in India
View more details

TCS Ninja Reviews and Ratings

based on 29 reviews

4.3/5

Rating in categories

4.1

Skill development

4.1

Work-life balance

4.2

Salary

4.4

Job security

4.3

Company culture

4.2

Promotions

4.0

Work satisfaction

Explore 29 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.4 L/yr

AST Consultant
52.7k salaries
unlock blur

₹8 L/yr - ₹25.9 L/yr

Associate Consultant
31.6k salaries
unlock blur

₹9 L/yr - ₹33 L/yr

Assistant System Engineer
29.9k 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 Ninja 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
  • 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