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 Capgemini Team. If you also belong to the team, you can get access from here

Capgemini Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 45.2k Reviews

Play video Play video Video summary

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern
golden leaf award AmbitionBox awards

Top Rated Mega Company - 2024

golden leaf award
golden leaf award AmbitionBox awards

Top Rated IT/ITES Company - 2024

golden leaf award
  • About
  • Reviews
    45.2k
  • Salaries
    4.5L
  • Interviews
    5k
  • Jobs
    1.7k
  • Benefits
    4.2k
  • Photos
    41
  • Posts
    29

Filter interviews by

Capgemini Senior Consultant Interview Questions and Answers

Updated 14 May 2025

95 Interview questions

A Senior Consultant was asked 2w ago
Q. Explain dependency injection with an example.
Ans. 

Dependency injection is a design pattern that allows a class to receive its dependencies from an external source rather than creating them itself.

  • Inversion of Control: Dependency injection promotes loose coupling by allowing the control of dependencies to be inverted, meaning the framework or container manages them.

  • Constructor Injection: Dependencies are provided through a class constructor. For example, a `Car` c...

A Senior Consultant was asked 3w ago
Q. Reverse an array, sort an array list collection.
Ans. 

Reversing an array involves changing the order of elements, making the last element first and the first element last.

  • Using Collections: In Java, you can use Collections.reverse() to reverse an ArrayList. Example: Collections.reverse(arrayList);

  • Manual Reversal: You can manually swap elements in a loop. Example: for (int i = 0; i < array.length / 2; i++) { String temp = array[i]; array[i] = array[array.length - 1...

Senior Consultant Interview Questions Asked at Other Companies

asked in Capgemini
Q1. 1. What's the use of update sets and how do you move update set f ... read more
View answers (3)
asked in Ernst & Young
Q2. 1. What is Virtual DOM? How does it work & Its algorithm? 2. ... read more
View answer (1)
asked in Capgemini
Q3. 1. If MAM is there then why do we need MDM? 2. What are the diffe ... read more
View answer (1)
asked in Birlasoft
Q4. What is the difference between the cursors declared in procedures ... read more
View answer (1)
asked in Capgemini
Q5. JCL 1. Ways in which the you can paas on data from.jcl to cobol.: ... read more
View answer (1)
View All
A Senior Consultant was asked 4mo ago
Q. What is the internal working of a HashMap in Java?
Ans. 

HashMap in Java is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

  • HashMap uses an array of buckets to store key-value pairs.

  • Keys are hashed to determine the index where the value will be stored.

  • In case of hash collisions, a linked list or balanced tree is used to store multiple entries in the same bucket.

  • HashMap allows one null key and multiple null values.

  • Example: Has...

A Senior Consultant was asked 6mo ago
Q. What is the process for sending an email containing specific data after extraction?
Ans. 

Use an ETL tool to extract specific data and send it via email

  • Use an ETL tool like Talend or Informatica to extract the specific data

  • Set up a job in the ETL tool to extract the data on a scheduled basis

  • Use the ETL tool's email functionality to send the extracted data to the specified recipients

What people are saying about Capgemini

View All
itlabour
Verified Icon
2w
works at
HCLTech
I am having 2 Offer Letter:- 1st is from Apexon with 13.5 with 5 days Office 2nd is from Capgemini with 11 with Hybrid Which one should I join ?
Which one should I Join?
Apexon
0%
Capgemini
0%
31 participants . poll closed
Got a question about Capgemini?
Ask anonymously on communities.
🔥 Asked by recruiter 4 times
A Senior Consultant was asked 7mo ago
Q. What are the OOPS concepts?
Ans. 

OOPS (Object-Oriented Programming) concept is a programming paradigm based on the concept of objects.

  • OOPS focuses on creating objects that contain data in the form of attributes and code in the form of methods.

  • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four main principles of OOPS.

  • Example: Inheritance allows a class to inherit properties and behavior from another class, promoting code reusab...

A Senior Consultant was asked 7mo ago
Q. Explain how a hashmap works.
Ans. 

HashMap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

  • HashMap uses hashing to store and retrieve key-value pairs efficiently.

  • Keys in a HashMap must be unique, but values can be duplicated.

  • HashMap allows for null keys and null values.

  • Example: HashMap<String, Integer> map = new HashMap<>(); map.put("key1", 1); int value = map.get("key1");

A Senior Consultant was asked 7mo ago
Q. Why is Hibernate used?
Ans. 

Hibernate is used as an ORM (Object-Relational Mapping) tool in Java to simplify database operations.

  • Automatically maps Java classes to database tables

  • Eliminates the need for writing complex SQL queries

  • Provides caching mechanisms for improved performance

  • Supports inheritance, associations, and polymorphism

  • Enables developers to focus on business logic rather than database operations

Are these interview questions helpful?
A Senior Consultant was asked 7mo ago
Q. What are the responsibilities of your role?
Ans. 

Senior consultants are responsible for providing expert advice and guidance to clients, leading projects, managing teams, and driving business growth.

  • Provide expert advice and guidance to clients

  • Lead projects from start to finish

  • Manage teams and delegate tasks effectively

  • Drive business growth through strategic planning and implementation

  • Stay up-to-date on industry trends and best practices

A Senior Consultant was asked 8mo ago
Q. Explain the CI/CD pipeline.
Ans. 

CICD pipeline is a set of automated processes that allow developers to deliver code changes more frequently and reliably.

  • CICD stands for Continuous Integration, Continuous Delivery (or Deployment)

  • It involves automating the building, testing, and deployment of code changes

  • Helps in detecting and fixing issues early in the development process

  • Examples of CICD tools include Jenkins, GitLab CI/CD, and CircleCI

A Senior Consultant was asked 8mo ago
Q. What are HTTP Verbs?
Ans. 

HTTP verbs are used to indicate the action to be performed on a resource in a RESTful API.

  • HTTP verbs include GET, POST, PUT, PATCH, DELETE, OPTIONS, and HEAD

  • GET is used to retrieve data from a server

  • POST is used to send data to a server to create a new resource

  • PUT is used to update an existing resource on the server

  • PATCH is used to partially update a resource

  • DELETE is used to remove a resource from the server

  • OPTIO...

1 2 3 4 5 6 7

Capgemini Senior Consultant Interview Experiences

294 interviews found

Senior Consultant Interview Questions & Answers

user image Anonymous

posted on 14 Feb 2025

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

(6 Questions)

  • Q1. What are some of the Design Patterns you have worked with?
  • Ans. 

    I have worked with design patterns such as Singleton, Factory, Observer, and Strategy.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Factory pattern creates objects without specifying the exact class of object that will be created.

    • Observer pattern defines a one-to-many dependency between objects so that when one object changes state, all its dependents are notified a...

  • Answered by AI
    View 1 more answer
  • Q2. What is your approach for a issue you came to know happened in Production.
  • Ans. 

    I would immediately investigate the issue, identify the root cause, and work on a solution to prevent it from happening again.

    • Investigate the issue thoroughly to understand the scope and impact

    • Identify the root cause by analyzing logs, code, and configurations

    • Work on a solution to fix the issue and prevent it from reoccurring

    • Communicate with stakeholders about the issue and the steps taken to resolve it

  • Answered by AI
    Add your answer
  • Q3. If given a chance to lead a team will you take it up as a challenge of not how would you tackle it?
  • Add your answer
  • Q4. Are you able to work under pressure. How do you manage?
  • Ans. 

    Yes, I am able to work under pressure by staying organized, prioritizing tasks, and maintaining a positive attitude.

    • I stay organized by creating to-do lists and setting deadlines for tasks.

    • I prioritize tasks based on urgency and importance to ensure critical tasks are completed first.

    • I maintain a positive attitude by taking short breaks, practicing deep breathing exercises, and seeking support from colleagues when need...

  • Answered by AI
    Add your answer
  • Q5. What do you understand by SOLID principle? Why do you think it is important.
  • Ans. 

    SOLID is a set of five principles in object-oriented programming that help make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with object...

  • Answered by AI
    Add your answer
  • Q6. Please solve the coding question provided ( a moderately difficult coding question provided). Help understand your approach and why you chose same. Explain edge caes if possible.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush Up Job related skills.
Be able to demonstrate through practical approach.
Keep your theoretical approach flexible and more inclined with positive response than bluffing.
Keep confidence at core of and have a good communication practice.
Adhere to Interview rules for example be available with 1 working editor for coding or technical rounds. Be professional in your appearance and always refrain from asking feedback in the interview itself.
Anonymous

Senior Consultant Interview Questions & Answers

user image Anonymous

posted on 30 Dec 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Internal working of Hashmap
  • Ans. 

    HashMap in Java is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

    • HashMap uses an array of buckets to store key-value pairs.

    • Keys are hashed to determine the index where the value will be stored.

    • In case of hash collisions, a linked list or balanced tree is used to store multiple entries in the same bucket.

    • HashMap allows one null key and multiple null values.

    • Example: HashMap&...

  • Answered by AI
    Add your answer
  • Q2. JAVA 8 Stream API coding questions
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. JAVA 8 advanced coding question
  • Add your answer
  • Q2. Specific questions on client requirements
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. General questions on expectations
  • Add your answer

Skills evaluated in this interview

Anonymous

Senior Consultant Interview Questions & Answers

user image nagalakshmi m

posted on 6 Jan 2025

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

(3 Questions)

  • Q1. Selenium java, about frame work
  • Add your answer
  • Q2. Pon. Design pattern
  • Add your answer
  • Q3. Bdd cucumber concepts
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Java oops concepts
  • Add your answer
  • Q2. Selenium exceptions
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Just salary discussed
  • Add your answer
Anonymous

Senior Consultant Interview Questions & Answers

user image Anonymous

posted on 7 Feb 2025

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

(2 Questions)

  • Q1. Java steam api with java8 programs
  • Ans. 

    Java Stream API in Java 8 allows for functional-style operations on collections.

    • Java Stream API provides a way to perform operations on collections in a functional style.

    • It supports operations like filter, map, reduce, and collect.

    • Example: List<String> names = Arrays.asList("Alice", "Bob", "Charlie"); names.stream().filter(name -> name.startsWith("A")).forEach(System.out::println);

  • Answered by AI
    Add your answer
  • Q2. Java basic concepts
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not waste time recruiters and HR won't respond here even calling multiple times though documents are shared you will be just blank with no response, Capgemini says you are always welcome but the statement does not seems to be correct recruiters are childish no professionals
Anonymous

Senior Consultant Interview Questions & Answers

user image Anonymous

posted on 9 Dec 2024

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

(2 Questions)

  • Q1. Conflict resolution
  • Add your answer
  • Q2. Roles & responsibilities as SM
  • Add your answer
Round 2 - One-on-one 

(2 Questions)

  • Q1. How to manage cross functional dependencies
  • Add your answer
  • Q2. Blocker reslution
  • Add your answer
Anonymous

Senior Consultant Interview Questions & Answers

user image Rohit Tiwari

posted on 7 Dec 2024

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

(2 Questions)

  • Q1. Joins in SQL types of join
  • Add your answer
  • Q2. Cte in sql what is the use of cte
  • Add your answer
Anonymous

Senior Consultant Interview Questions & Answers

user image Anonymous

posted on 9 Jan 2025

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

(1 Question)

  • Q1. What is a gateway in networking?
  • Add your answer
Anonymous

Senior Consultant Interview Questions & Answers

user image Anonymous

posted on 21 Oct 2024

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

I appeared for an interview in Sep 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Medium level interview questions
  • Add your answer
  • Q2. Medium level interview questions,
  • Add your answer
Round 2 - HR 

(2 Questions)

  • Q1. Basic details and professional details
  • Add your answer
  • Q2. Basic and professional details
  • Add your answer
Anonymous

Senior Consultant Interview Questions & Answers

user image Vandana Tiwari

posted on 27 Sep 2024

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

(2 Questions)

  • Q1. What is.scrum, role
  • Ans. 

    Scrum is a framework used in agile project management, with defined roles including Scrum Master, Product Owner, and Development Team.

    • Scrum is an agile framework for managing work on complex projects.

    • Key roles in Scrum include Scrum Master, Product Owner, and Development Team.

    • Scrum emphasizes iterative and incremental progress, with regular meetings like Daily Standups, Sprint Planning, Sprint Review, and Sprint Retros...

  • Answered by AI
    Add your answer
  • Q2. Respnsibilties of srym.
  • Ans. 

    Senior consultants are responsible for providing expert advice and guidance to clients, leading projects, managing teams, and driving business growth.

    • Provide expert advice and guidance to clients

    • Lead projects from start to finish

    • Manage teams and delegate tasks effectively

    • Drive business growth through strategic planning and implementation

    • Stay up-to-date on industry trends and best practices

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

(2 Questions)

  • Q1. Client scrum.madyet
  • Add your answer
  • Q2. Impedeminets solving
  • Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Expected salary
  • Ans. 

    Negotiable based on experience and responsibilities of the role.

    • Salary expectations are flexible and dependent on the specific responsibilities and requirements of the Senior Consultant role.

    • Open to discussing salary range during the interview process.

    • Seeking a competitive salary package that aligns with industry standards and my level of expertise.

    • Looking for opportunities for performance-based bonuses or incentives.

    • C...

  • Answered by AI
    Add your answer
  • Q2. Fixed pay or variable
  • Add your answer
Anonymous

Senior Consultant Interview Questions & Answers

user image Anonymous

posted on 2 Jan 2025

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

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. JAVA OOPS concept
  • Add your answer
  • Q2. Springboot all annotations
  • Add your answer
Anonymous
More about working at Capgemini
golden leaf award AmbitionBox awards

#17 Best Mega Company - 2022

golden leaf award
golden leaf award AmbitionBox awards

#3 Best Mega IT/ITES Company - 2022

golden leaf award
  • HQ - Paris, France
  • IT Services & Consulting
  • 1 Lakh+ Employees (India)
  • Public
  • Internet
  • Analytics & KPO
  • Software Product

Capgemini Interview FAQs

How many rounds are there in Capgemini Senior Consultant interview?
Capgemini interview process usually has 2-3 rounds. The most common rounds in the Capgemini interview process are Technical, HR and One-on-one Round.
How to prepare for Capgemini Senior Consultant 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 Capgemini. The most common topics and skills that interviewers at Capgemini expect are Consulting, Management, Project Management, Change Management and Agile.
What are the top questions asked in Capgemini Senior Consultant interview?

Some of the top questions asked at the Capgemini Senior Consultant interview -

  1. 1. What's the use of update sets and how do you move update set from one instan...read more
  2. 1. If MAM is there then why do we need MDM? 2. What are the different type of A...read more
  3. JCL 1. Ways in which the you can paas on data from.jcl to cobol.: Dsn file, sy...read more
What are the most common questions asked in Capgemini Senior Consultant HR round?

The most common HR questions asked in Capgemini Senior Consultant interview are -

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

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

Tell us how to improve this page.

Capgemini Interviews By Designations

  • Capgemini Analyst Interview Questions
  • Capgemini Consultant Interview Questions
  • Capgemini Software Engineer Interview Questions
  • Capgemini Senior Consultant Interview Questions
  • Capgemini Associate Consultant Interview Questions
  • Capgemini Software Developer Interview Questions
  • Capgemini Senior Analyst Interview Questions
  • Capgemini Senior Software Engineer Interview Questions
  • Show more
  • Capgemini Process Associate Interview Questions
  • Capgemini Senior Associate Interview Questions

Interview Questions for Popular Designations

  • Associate Consultant Interview Questions
  • Senior Associate Consultant Interview Questions
  • Lead Consultant Interview Questions
  • Technical Consultant Interview Questions
  • Consultant Interview Questions
  • Principal Consultant Interview Questions
  • Associate Technical Consultant Interview Questions
  • Senior Technical Consultant Interview Questions
  • Show more
  • Technology Consultant Interview Questions
  • Software Consultant Interview Questions

Overall Interview Experience Rating

4.1/5

based on 240 interview experiences

Difficulty level

Easy 12%
Moderate 84%
Hard 3%

Duration

Less than 2 weeks 54%
2-4 weeks 36%
4-6 weeks 3%
6-8 weeks 3%
More than 8 weeks 3%
View more

Top Skills for Capgemini Senior Consultant

Web Development Interview Questions & Answers
250 Questions
Software Development Interview Questions & Answers
250 Questions
Cloud Computing Interview Questions & Answers
250 Questions
Data Structures Interview Questions & Answers
250 Questions
JavaScript Interview Questions & Answers
250 Questions
Algorithms Interview Questions & Answers
250 Questions

Senior Consultant Interview Questions from Similar Companies

Infosys
Infosys Senior Consultant Interview Questions
3.6
 • 105 Interviews
HCLTech
HCLTech Senior Consultant Interview Questions
3.5
 • 35 Interviews
Wipro
Wipro Senior Consultant Interview Questions
3.7
 • 28 Interviews
Cognizant
Cognizant Senior Consultant Interview Questions
3.7
 • 21 Interviews
TCS
TCS Senior Consultant Interview Questions
3.6
 • 18 Interviews
Accenture
Accenture Senior Consultant Interview Questions
3.8
 • 15 Interviews
IBM
IBM Senior Consultant Interview Questions
4.0
 • 15 Interviews
Atos
Atos Senior Consultant Interview Questions
3.8
 • 11 Interviews
Genpact
Genpact Senior Consultant Interview Questions
3.8
 • 8 Interviews
Tech Mahindra
Tech Mahindra Senior Consultant Interview Questions
3.5
 • 7 Interviews
View all
Capgemini Senior Consultant Salary
based on 49k salaries
₹7.9 L/yr - ₹26 L/yr
14% less than the average Senior Consultant Salary in India
View more details

Capgemini Senior Consultant Reviews and Ratings

based on 4k reviews

3.6/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.0

Salary

3.8

Job security

3.5

Company culture

2.8

Promotions

3.4

Work satisfaction

Explore 4k Reviews and Ratings
Senior Consultant Jobs at Capgemini
Capgemini
Senior Consultant

Hyderabad / Secunderabad

5-8 Yrs

₹ 7.25-27 LPA

Capgemini
Senior Consultant

Bangalore / Bengaluru

5-8 Yrs

₹ 5-36 LPA

Capgemini
Senior Consultant

Hyderabad / Secunderabad

6-10 Yrs

₹ 5.8-32.5 LPA

Explore more jobs
Capgemini Salaries in India
Consultant
57.7k salaries
unlock blur

₹5.3 L/yr - ₹18.5 L/yr

Associate Consultant
51.1k salaries
unlock blur

₹2.9 L/yr - ₹12.2 L/yr

Senior Consultant
49k salaries
unlock blur

₹7.9 L/yr - ₹26 L/yr

Senior Analyst
21.7k salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Senior Software Engineer
21.1k salaries
unlock blur

₹3.5 L/yr - ₹13 L/yr

Explore more salaries
Compare Capgemini with
Wipro

Wipro

3.7
Compare
Accenture

Accenture

3.8
Compare
Cognizant

Cognizant

3.7
Compare
TCS

TCS

3.6
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Capgemini Interview Questions >
  • Capgemini Senior 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
  • 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