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

    • Campus placements

      Interviews questions for 2K+ colleges

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

Play video Play video Video summary
  • About
  • Reviews
    95.5k
  • Salaries
    8.9L
  • Interviews
    10.8k
  • Jobs
    229
  • Benefits
    11.9k
  • Photos
    87
  • Posts
    90

Filter interviews by

TCS AST Consultant Interview Questions and Answers

Updated 13 May 2025

22 Interview questions

An AST Consultant was asked 1w ago
Q. What do you know about caching?
Ans. 

Caching is a technique to store frequently accessed data in a temporary storage area to improve retrieval speed and efficiency.

  • Types of Caching: There are various types of caching, including memory caching (e.g., Redis), disk caching, and browser caching.

  • Improved Performance: Caching reduces the time it takes to access data, as it avoids repeated calculations or database queries. For example, a web application can...

🔥 Asked by recruiter 10 times
An AST Consultant was asked 7mo ago
Q. Why did you choose TCS?
Ans. 

I chose TCS for its global presence, diverse opportunities, and strong reputation in the industry.

  • Global presence with offices in multiple countries

  • Diverse opportunities for career growth and development

  • Strong reputation in the industry for quality services and innovation

AST Consultant Interview Questions Asked at Other Companies

asked in TCS
Q1. 1. What is the velocity trend? 2. Metrics used in scrum framework ... read more
View answer (1)
asked in TCS
Q2. What high availability concepts have you implemented in your curr ... read more
View answer (1)
asked in TCS
Q3. What is data sparsity and how to handle it ? How to avoid dollar ... read more
View answers (2)
asked in TCS
Q4. How can two load plans be called in parallel, and how can the sys ... read more
View answer (1)
asked in TCS
Q5. BDD framework, How to pass input data into function using BDD, ho ... read more
View answer (1)
View All
An AST Consultant was asked 7mo ago
Q. How do you find elements using XPath?
Ans. 

Xpath is a query language used to navigate through XML documents and locate elements based on their attributes or values.

  • Use double forward slashes (//) to select all elements in the document

  • Use square brackets to specify conditions for selecting elements, such as [@attribute='value']

  • Use the 'text()' function to select elements based on their text content

  • Use the 'contains()' function to select elements that contai...

An AST Consultant was asked 9mo ago
Q. What are the inspection types in SAP QM?
Ans. 

Inspection types in SAP QM include goods receipt inspection, goods issue inspection, and in-process inspection.

  • Goods receipt inspection is used to inspect materials received from vendors

  • Goods issue inspection is used to inspect materials before they are issued to production

  • In-process inspection is used to inspect materials during the production process

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.
An AST Consultant was asked 10mo ago
Q. How does garbage collection work in Java?
Ans. 

Garbage collection in Java automatically manages memory by reclaiming unused objects.

  • Garbage collection runs in the background to identify and remove objects that are no longer needed.

  • It helps prevent memory leaks and optimize memory usage.

  • Java uses different garbage collection algorithms like Serial, Parallel, CMS, and G1.

  • Example: System.gc() can be used to suggest garbage collection, but it's not guaranteed to r...

An AST Consultant was asked 12mo ago
Q. What is the difference between cache and persist in Spark?
Ans. 

Cache and persist are both used for optimizing Spark performance by storing intermediate results in memory, but persist allows for more customization.

  • Cache() is a shorthand for persist(StorageLevel.MEMORY_ONLY)

  • Persist() allows for specifying different storage levels such as MEMORY_ONLY, MEMORY_AND_DISK, etc.

  • Persist() also allows for specifying serialization formats like Java, Kryo, etc.

An AST Consultant was asked 31 Mar 2024
Q. What is TestNG profiling?
Ans. 

TestNG profiling is a feature that allows developers to analyze the performance of their test cases and identify bottlenecks.

  • TestNG profiling helps in identifying slow-running test cases and optimizing them for better performance.

  • It provides detailed information on the execution time of each test method, helping developers prioritize optimization efforts.

  • Profiling can be done at the method level, class level, or s...

Are these interview questions helpful?
An AST Consultant was asked 31 Mar 2024
Q. Write code for Explicit wait
Ans. 

Code for Explicit wait in Selenium WebDriver

  • Import WebDriverWait and ExpectedConditions classes

  • Specify the maximum time to wait and the polling interval

  • Use ExpectedConditions methods like elementToBeClickable, visibilityOfElementLocated, etc.

  • Apply the wait to a specific element or condition

An AST Consultant was asked 27 Feb 2024
Q. What are the features of Java 8?
Ans. 

Java 8 introduced several new features including lambda expressions, streams, functional interfaces, and default methods.

  • Lambda expressions allow you to write code in a more concise and readable way.

  • Streams provide a way to work with sequences of elements and perform operations on them.

  • Functional interfaces are interfaces with a single abstract method, which can be implemented using lambda expressions.

  • Default meth...

An AST Consultant was asked 02 Nov 2023
Q. What are the different types of network topology?
Ans. 

Different types of network topology include bus, star, ring, mesh, and hybrid.

  • Bus Topology: All devices are connected to a central cable, like a bus route.

  • Star Topology: All devices are connected to a central hub.

  • Ring Topology: Each device is connected to two other devices, forming a ring.

  • Mesh Topology: Every device is connected to every other device.

  • Hybrid Topology: Combination of two or more different types of t...

1 2 3

TCS AST Consultant Interview Experiences

177 interviews found

AST Consultant Interview Questions & Answers

user image Anonymous

posted on 24 Oct 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Technical questions related to dot net, C#, MVC, web API, Azure Services
  • Add your answer
Round 2 - Behavioral 

(1 Question)

  • Q1. Technical questions related to Azure and project related questions
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation
  • Add your answer
Anonymous

AST Consultant Interview Questions & Answers

user image Athira babu

posted on 3 Mar 2025

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

I appeared for an interview in Sep 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Asked general angular questions mostly around encryption , directives , authentication and some practical scenario based ones
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. Manager round with some generic project based on your experience
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare angular js html css and your projects
Anonymous

AST Consultant Interview Questions & Answers

user image Rohit Sharma

posted on 30 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Job Portal

Round 1 - Coding Test 

Palindrome, Azure App services, Angular questions, specific to my previous work ex

Round 2 - HR 

(3 Questions)

  • Q1. Why you want to work for TCS ?
  • Add your answer
  • Q2. Which roles have you worked upon ?
  • Add your answer
  • Q3. Any devops experience ?
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your profile, and work experience
Anonymous

AST Consultant Interview Questions & Answers

user image Nitin Mukesh Jha

posted on 7 Jul 2024

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

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated and detail-oriented individual with a strong background in consulting and a passion for problem-solving.

    • I have a Bachelor's degree in Business Administration

    • I have 2 years of experience working as a consultant at XYZ Consulting Firm

    • I excel in analyzing data, identifying trends, and providing strategic recommendations

    • I am proficient in using various software tools such as Excel, PowerPoint, and Tableau

  • Answered by AI
    Add your answer
  • Q2. What is Zero Threat vulnerability
  • Ans. 

    Zero Threat vulnerability refers to a security flaw that poses no immediate risk or harm to a system.

    • Zero Threat vulnerabilities are typically low severity issues that do not have the potential to be exploited by attackers.

    • These vulnerabilities may still need to be addressed to maintain a secure system, but they are not urgent.

    • Examples of Zero Threat vulnerabilities include unused ports left open on a firewall or outda...

  • Answered by AI
    Add your answer
  • Q3. Explain the basic pillars of Cyber Security
  • Ans. 

    The basic pillars of Cyber Security include confidentiality, integrity, availability, and non-repudiation.

    • Confidentiality: Ensuring that data is only accessible to authorized individuals or systems.

    • Integrity: Ensuring that data is accurate and has not been tampered with.

    • Availability: Ensuring that data and systems are accessible when needed.

    • Non-repudiation: Ensuring that a sender cannot deny sending a message and a rec...

  • Answered by AI
    Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. What’s your achievements in Cybersecurity
  • Ans. 

    I have successfully implemented multi-factor authentication systems and conducted penetration testing to identify vulnerabilities.

    • Implemented multi-factor authentication systems to enhance security measures

    • Conducted penetration testing to identify and address vulnerabilities

    • Developed and implemented security policies and procedures to protect sensitive data

  • Answered by AI
    Add your answer
  • Q2. How did you increase the revenues of the company in cyber security.
  • Ans. 

    I increased revenues in cyber security by implementing targeted marketing campaigns and offering customized solutions to clients.

    • Implemented targeted marketing campaigns to reach potential clients in need of cyber security services

    • Offered customized solutions to clients based on their specific needs and budget constraints

    • Expanded service offerings to include additional cyber security solutions such as penetration testi...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Technically Sound in Cyber Security and prove it with live practical example.

Skills evaluated in this interview

Anonymous

AST Consultant Interview Questions & Answers

user image Anonymous

posted on 27 Feb 2025

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions on skill set declared
  • Add your answer
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
  • Add your answer
Anonymous

AST Consultant Interview Questions & Answers

user image Anonymous

posted on 4 Aug 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. SAP QM Master Dat?
  • Add your answer
  • Q2. What are the inspection types in SAP QM?
  • Ans. 

    Inspection types in SAP QM include goods receipt inspection, goods issue inspection, and in-process inspection.

    • Goods receipt inspection is used to inspect materials received from vendors

    • Goods issue inspection is used to inspect materials before they are issued to production

    • In-process inspection is used to inspect materials during the production process

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

(2 Questions)

  • Q1. What are the different types and their process?
  • Ans. 

    There are different types of consultants such as management, IT, financial, and HR consultants, each with their own unique processes.

    • Management consultants help organizations improve their performance through analysis and strategy implementation.

    • IT consultants provide technology solutions and support to businesses.

    • Financial consultants offer advice on financial planning, investments, and risk management.

    • HR consultants ...

  • Answered by AI
    Add your answer
  • Q2. What is dynamic modification rule?
  • Ans. 

    Dynamic modification rule is a rule that allows changes to be made to a system or process in real-time based on certain conditions.

    • Dynamic modification rules are used in various industries to automate processes and improve efficiency.

    • These rules can be programmed to trigger specific actions based on predefined criteria.

    • For example, in e-commerce, a dynamic modification rule can adjust pricing based on demand or competi...

  • Answered by AI
    Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to join TCS?
  • Ans. 

    I want to join TCS because of its reputation for innovation, global presence, and opportunities for growth.

    • TCS is known for its cutting-edge technology solutions and innovative projects.

    • The company has a strong global presence with offices in multiple countries, providing opportunities for international exposure.

    • TCS offers a structured career growth path with opportunities for learning and development.

    • I admire TCS's co...

  • Answered by AI
    Add your answer
  • Q2. Where you wanted to see in next 5 years?
  • Ans. 

    In the next 5 years, I aim to grow into a leadership role within the company, further develop my skills and expertise, and contribute significantly to the success of the projects I am involved in.

    • Continuously seek opportunities for professional development and training

    • Take on more responsibilities and leadership roles within the team

    • Work towards becoming a subject matter expert in my field

    • Contribute innovative ideas an...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for good functional knowledge as SAP Consultant.
Get some realtime knowledge in relevant module.

Skills evaluated in this interview

Anonymous

AST Consultant Interview Questions & Answers

user image Anonymous

posted on 20 Sep 2024

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

(3 Questions)

  • Q1. Robot frame work
  • Add your answer
  • Q2. Xpath how to find
  • Ans. 

    Xpath is a query language used to navigate through XML documents and locate elements based on their attributes or values.

    • Use double forward slashes (//) to select all elements in the document

    • Use square brackets to specify conditions for selecting elements, such as [@attribute='value']

    • Use the 'text()' function to select elements based on their text content

    • Use the 'contains()' function to select elements that contain a s...

  • Answered by AI
    Add your answer
  • Q3. Waitingt tech in selenium
  • Add your answer

Skills evaluated in this interview

Anonymous

AST Consultant Interview Questions & Answers

user image Anonymous

posted on 28 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Describe previous experiences
  • Ans. 

    I have experience working as a consultant for various companies, providing strategic advice and solutions.

    • Provided strategic advice to clients on improving business processes

    • Developed customized solutions to meet client needs

    • Collaborated with cross-functional teams to implement recommendations

  • Answered by AI
    Add your answer
  • Q2. Techmocal question
  • Add your answer
Round 2 - HR 

(2 Questions)

  • Q1. Expected salary
  • Add your answer
  • Q2. Reason for leaving previous job
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep motivated
Anonymous

AST Consultant Interview Questions & Answers

user image Anonymous

posted on 24 Nov 2024

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

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Service Desk related.
  • Add your answer
  • Q2. Technical Troubleshooting related
  • Add your answer
Anonymous

AST Consultant Interview Questions & Answers

user image Munna Prasad

posted on 19 Jun 2024

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

(2 Questions)

  • Q1. Tell me about yourself
  • Add your answer
  • Q2. Can you describe a challenging situation you faced at work and how you handled it
  • Add your answer
Round 2 - Group Discussion 

Impact of AI on Job Markets

Round 3 - Technical 

(1 Question)

  • Q1. How does garbage collection work in Java
  • Ans. 

    Garbage collection in Java automatically manages memory by reclaiming unused objects.

    • Garbage collection runs in the background to identify and remove objects that are no longer needed.

    • It helps prevent memory leaks and optimize memory usage.

    • Java uses different garbage collection algorithms like Serial, Parallel, CMS, and G1.

    • Example: System.gc() can be used to suggest garbage collection, but it's not guaranteed to run im...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

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 AST Consultant interview?
TCS interview process usually has 2-3 rounds. The most common rounds in the TCS interview process are Technical, HR and Resume Shortlist.
What are the top questions asked in TCS AST Consultant interview?

Some of the top questions asked at the TCS AST Consultant interview -

  1. 1. What is the velocity trend? 2. Metrics used in scrum framework 3. Type of co...read more
  2. What are the high availability concepts you have in your currect proj...read more
  3. What is data sparsity and how to handle it ? How to avoid dollar tables creatio...read more
What are the most common questions asked in TCS AST Consultant HR round?

The most common HR questions asked in TCS AST Consultant interview are -

  1. Why are you looking for a chan...read more
  2. What are your salary expectatio...read more
  3. Where do you see yourself in 5 yea...read more
How long is the TCS AST Consultant interview process?

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

  • Consultant Interview Questions
  • Senior Consultant Interview Questions
  • Associate Consultant Interview Questions
  • Senior Associate Consultant Interview Questions
  • Lead Consultant Interview Questions
  • Technical Consultant Interview Questions
  • SAP Fico Consultant Interview Questions
  • SAP Abap Consultant Interview Questions
  • Show more
  • SAP MM Consultant Interview Questions
  • SAP Consultant Interview Questions

Top Skills for TCS AST Consultant

Software Testing Interview Questions & Answers
250 Questions
Web Development Interview Questions & Answers
250 Questions
SQL Interview Questions & Answers
250 Questions
Software Development Interview Questions & Answers
250 Questions
Networking Interview Questions & Answers
250 Questions
Java Interview Questions & Answers
200 Questions

Interview Questions from Similar Companies

Accenture
Accenture Interview Questions
3.8
 • 8.4k 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
 • 4.9k 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 AST Consultant Salary
based on 52.5k salaries
₹8 L/yr - ₹25.5 L/yr
At par with the average AST Consultant Salary in India
View more details

TCS AST Consultant Reviews and Ratings

based on 3.8k reviews

3.3/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

2.5

Salary

4.3

Job security

3.1

Company culture

2.4

Promotions

3.0

Work satisfaction

Explore 3.8k 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.3 L/yr

AST Consultant
52.5k salaries
unlock blur

₹8 L/yr - ₹25.5 L/yr

Associate Consultant
31.5k salaries
unlock blur

₹9 L/yr - ₹32.9 L/yr

Assistant System Engineer
29.8k salaries
unlock blur

₹2.2 L/yr - ₹6 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 AST Consultant 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
  • Campus Placements
  • 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