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
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
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 46.7k Reviews

Play video Play video Video summary
  • About
  • Reviews
    46.7k
  • Salaries
    4.6L
  • Interviews
    5.1k
  • Jobs
    1.9k
  • Benefits
    4.2k
  • Photos
    41
  • Posts
    41

Filter interviews by

Capgemini Consultant Interview Questions and Answers

Updated 31 May 2025

203 Interview questions

A Consultant was asked 1mo ago
Q. What is BMIDE?
Ans. 

BMIDE stands for Business Model Innovation and Design Engineering, focusing on innovative business strategies.

  • BMIDE integrates design thinking into business model development.

  • It emphasizes customer-centric approaches for innovation.

  • Example: A tech company using BMIDE to pivot from hardware to software solutions.

  • BMIDE can help organizations adapt to market changes effectively.

A Consultant was asked 1mo ago
Q. What is the iTK API for object creation?
Ans. 

iTK API facilitates object creation in software applications, enhancing modularity and reusability.

  • iTK API allows developers to create and manage objects programmatically.

  • Example: Creating a new user object with attributes like name and email.

  • Supports various object types, including data models and UI components.

  • Utilizes RESTful principles for seamless integration with other services.

  • Example: POST request to /api/...

Consultant Interview Questions Asked at Other Companies

asked in Accenture
Q1. An international bank (US based) has been operating in Asia for t ... read more
Add answer
asked in Deloitte
Q2. How would you record travel expenses incurred and paid by an empl ... read more
View answers (9)
asked in BCG
Q3. A telecom company with product X, a necessity in the industry, ha ... read more
Add answer
asked in EXL Service
Q4. You have 20 red balls, 14 blue balls. You draw out balls, 2 at a ... read more
View answers (3)
asked in EY Global Delivery Services ( EY GDS)
Q5. If an annual policy, billed monthly, is cancelled in June due to ... read more
Add answer
View All
🔥 Asked by recruiter 3 times
A Consultant was asked 3mo ago
Q. What is the difference between map and flatMap?
Ans. 

Map transforms elements, while flatMap flattens nested structures and transforms elements simultaneously.

  • map applies a function to each element, returning a new collection of the same structure.

  • Example: [1, 2, 3].map(x => x * 2) results in [2, 4, 6].

  • flatMap applies a function that returns a collection for each element, then flattens the result.

  • Example: [1, 2].flatMap(x => [x, x * 2]) results in [1, 2, 2, 4].

  • ...

A Consultant was asked 3mo ago
Q. What is a sealed class?
Ans. 

A sealed class restricts class inheritance to a specific set of subclasses, enhancing type safety and control.

  • Sealed classes allow only a defined set of subclasses, preventing external inheritance.

  • They are useful in representing restricted hierarchies, such as state machines.

  • Example in Kotlin: 'sealed class Result { data class Success(val data: String) : Result() data class Error(val message: String) : Result() }'

  • ...

What people are saying about Capgemini

View All
a senior software engineer
5d (edited)
Need Insights – Choosing Between Companies
Hi all, Currently have offers from Capgemini, Tech Mahindra, LTIMindTree, Zen&Art, CitiusTech, Nagarro & Persistent. Before making a decision, I need some clarity: 1. Do you get admin access on laptop or need IT for every install? 2. Are office hours flexible or fixed 9 AM login? 3. Is 9 hrs of active laptop time mandatory? 4. What's the leave policy — casual or strict approval? 5. Do projects use the latest technologies or older versions? Thanks in advance!
Got a question about Capgemini?
Ask anonymously on communities.
A Consultant was asked 3mo ago
Q. Explain bean scope.
Ans. 

Bean scope defines the lifecycle and visibility of beans in a Spring application context.

  • Singleton: One instance per Spring IoC container. Example: A service class used throughout the application.

  • Prototype: A new instance is created each time the bean is requested. Example: A form backing object in a web application.

  • Request: A new instance is created for each HTTP request. Example: A controller bean handling a web...

🔥 Asked by recruiter 2 times
A Consultant was asked 3mo ago
Q. What are the differences between lists and tuples?
Ans. 

Lists are mutable and ordered, while tuples are immutable and ordered collections in Python.

  • Mutability: Lists can be modified (e.g., list.append()), while tuples cannot be changed after creation.

  • Syntax: Lists use square brackets [] (e.g., myList = [1, 2, 3]), while tuples use parentheses () (e.g., myTuple = (1, 2, 3)).

  • Performance: Tuples are generally faster than lists due to their immutability.

  • Use Cases: Lists ar...

A Consultant was asked 4mo ago
Q. Can we change a database table name, and how do we update the new table name in Pega?
Ans. 

Yes, you can change a database table name in Pega and update references accordingly.

  • Use the Pega Database Table Management feature to rename the table.

  • Update the Data Model in Pega to reflect the new table name.

  • Modify any Data Pages, Reports, or Activities that reference the old table name.

  • Example: If the old table name was 'CustomerData', change it to 'ClientData' and update all references.

  • Test the application th...

Are these interview questions helpful?
A Consultant was asked 4mo ago
Q. Explain Data Pages and their significance.
Ans. 

Data pages are essential components in data management, enabling efficient storage and retrieval of information.

  • Data pages store structured data in a database, allowing for quick access and manipulation.

  • They help in organizing data into manageable units, improving performance and scalability.

  • For example, in a relational database, a data page might contain multiple rows of a table.

  • Data pages can be cached in memory...

A Consultant was asked 5mo ago
Q. What are the basic concepts of Object-Oriented Programming (OOP)?
Ans. 

OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

  • Objects: Instances of classes that encapsulate data and behavior.

  • Classes: Blueprint for creating objects, defining their attributes and methods.

  • Inheritance: Ability of a class to inherit properties and behavior from another class.

  • Polymorphism: Objects of different classes c...

A Consultant was asked 5mo ago
Q. What is the full lifecycle of Major Incident Management (MIM)?
Ans. 

The full lifecycle of Major Incident Management involves identification, categorization, prioritization, diagnosis, resolution, and closure of major incidents.

  • Identification of major incidents

  • Categorization and prioritization based on impact and urgency

  • Diagnosis to determine root cause

  • Resolution through appropriate actions

  • Closure with post-incident review and documentation

1 2 3 4 5 6 7

Capgemini Consultant Interview Experiences

409 interviews found

Consultant Interview Questions & Answers

user image Anonymous

posted on 19 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - Aptitude Test 

First, you must clear the aptitude test.

Round 2 - Coding Test 

Coding will involve understanding the basics.

Round 3 - Technical 

(2 Questions)

  • Q1. Can you describe your last project?
  • Ans. 

    Implemented a new CRM system for a large retail company

    • Led a team of developers to customize the CRM system to meet the company's specific needs

    • Conducted training sessions for employees on how to use the new system effectively

    • Collaborated with stakeholders to gather requirements and ensure successful implementation

  • Answered by AI
    Add your answer
  • Q2. What are the basic concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • Objects: Instances of classes that encapsulate data and behavior.

    • Classes: Blueprint for creating objects, defining their attributes and methods.

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Objects of different classes can be...

  • Answered by AI
    Add your answer
Round 4 - HR 

(2 Questions)

  • Q1. Can you tell me about yourself?
  • Add your answer
  • Q2. What makes you a suitable candidate for this position?
  • Ans. 

    I have extensive experience in consulting, strong analytical skills, and a proven track record of delivering results.

    • 10+ years of experience in consulting industry

    • Strong analytical skills with ability to identify and solve complex problems

    • Proven track record of delivering successful projects on time and within budget

    • Excellent communication and presentation skills

    • Ability to work effectively in a team and lead cross-func...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers, it is essential to prepare thoroughly on the basics and to be knowledgeable about your final year project, as this will make it easier to succeed in the interview.
Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 18 Oct 2024

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

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. No of occurance of a charcter in a string.
  • Add your answer
  • Q2. Write xpath on amazon website
  • Ans. 

    XPath can be used to locate elements on the Amazon website.

    • Use //tagname to select all elements with a specific tag name

    • Use @attribute to select elements with a specific attribute

    • Use [text()='value'] to select elements with specific text content

  • Answered by AI
    Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Database and automation framework connection.
  • Add your answer
  • Q2. Sql questions on joins
  • Add your answer
Round 3 - English Test 

(1 Question)

  • Q1. Reading, writing, listning, speaking
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on fundamentals and be prepare for the coding with different data structures.

Skills evaluated in this interview

Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 21 Oct 2024

Interview experience
4
Good
Difficulty level
Hard
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. MuleSoft Cloudhub 2
  • Add your answer
  • Q2. Scenario based question related to transaction management
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Threads allocation in MuleSoft
  • Ans. 

    Threads allocation in MuleSoft involves configuring the number of threads for processing messages and handling concurrent requests.

    • Threads can be allocated in MuleSoft by configuring the 'maxThreads' attribute in the HTTP Listener configuration.

    • The 'maxThreads' attribute specifies the maximum number of threads that can be used to process incoming requests.

    • Proper thread allocation is important to ensure optimal performa...

  • Answered by AI
    Add your answer
  • Q2. How exactly does api auto-discovery work?
  • Ans. 

    API auto-discovery is a process where APIs are automatically identified and registered within a system.

    • API auto-discovery involves scanning a network or system to identify APIs without manual intervention.

    • Tools like Swagger, Postman, and API Gateway can be used for API auto-discovery.

    • Once APIs are discovered, they can be registered in a central repository for easy access and management.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for questions based on your experience with more focus on the deployment model & the Anypoint Platform Architechture.

Skills evaluated in this interview

Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 10 Dec 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Visual reasoning and memory based questions

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Add your answer
  • Q2. Any experience you have in supply chain?
  • Ans. 

    I have 5 years of experience in supply chain management, including optimizing logistics and reducing costs.

    • Managed inventory levels to minimize stockouts and excess inventory

    • Implemented lean principles to streamline processes and improve efficiency

    • Negotiated contracts with suppliers to secure favorable terms and pricing

    • Utilized data analytics to forecast demand and improve planning accuracy

  • Answered by AI
    Add your answer
Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 20 Dec 2024

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

(2 Questions)

  • Q1. What is meant by devops
  • Ans. 

    DevOps is a set of practices that combines software development and IT operations to enhance collaboration and efficiency.

    • Focuses on collaboration between development and operations teams.

    • Utilizes automation tools for continuous integration and delivery (e.g., Jenkins, GitLab CI).

    • Emphasizes monitoring and feedback loops to improve software quality.

    • Encourages a culture of shared responsibility and accountability.

    • Example...

  • Answered by AI
    Add your answer
  • Q2. What is meant by ci/cd pipeline
  • Ans. 

    CI/CD pipeline automates software development processes, enabling continuous integration and delivery for faster and reliable releases.

    • CI (Continuous Integration) involves automatically testing and merging code changes into a shared repository.

    • CD (Continuous Delivery) ensures that code changes are automatically prepared for a production release.

    • Tools like Jenkins, GitLab CI, and CircleCI are commonly used to implement ...

  • Answered by AI
    Add your answer
Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 28 Nov 2024

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

I applied via Walk-in and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is bigquery
  • Add your answer
  • Q2. What is sql and describe the architecture
  • Ans. 

    SQL is a programming language used for managing and manipulating relational databases.

    • SQL stands for Structured Query Language

    • It is used to communicate with databases to perform tasks such as querying data, updating data, and creating databases

    • SQL follows a client-server architecture where the client sends SQL queries to the server which processes them and returns results

    • Common SQL implementations include MySQL, Postgr...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 19 Nov 2024

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

Basic technical question

Round 2 - Coding Test 

Basic coding syntax 30 mints

Round 3 - Technical 

(1 Question)

  • Q1. What is loop? what is inheritance?
  • Ans. 

    A loop is a programming construct that repeats a set of instructions until a specific condition is met. Inheritance is a mechanism in object-oriented programming where a new class inherits properties and behaviors from an existing class.

    • A loop allows a set of instructions to be executed repeatedly based on a condition. Examples include for loops, while loops, and do-while loops.

    • Inheritance allows a new class (subclass)...

  • Answered by AI
    Add your answer
Round 4 - HR 

(1 Question)

  • Q1. Why should I hire you?
  • Ans. 

    I bring a unique blend of analytical skills, industry knowledge, and a passion for problem-solving that drives impactful results.

    • Proven track record of delivering successful projects on time and within budget, such as leading a team to reduce costs by 20% in a previous role.

    • Strong analytical skills demonstrated through data-driven decision-making, which helped a client increase their market share by 15%.

    • Excellent commu...

  • Answered by AI
    Add your answer
Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 27 Sep 2024

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

(2 Questions)

  • Q1. What is global index in dynamodb
  • Ans. 

    Global secondary indexes in DynamoDB allow querying on non-primary key attributes

    • Global indexes are separate from the main table and can have different partition and sort keys

    • They enable efficient querying on non-primary key attributes

    • Useful for querying data in different ways without impacting the main table's performance

  • Answered by AI
    Add your answer
  • Q2. SQL query using inner joins
  • Add your answer

Skills evaluated in this interview

Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 15 Oct 2024

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

(1 Question)

  • Q1. Basics question on DevOps tools
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. Regarding about DevOps Tools
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Basics questions on about your work nature
  • Add your answer
Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 8 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java question design framework
  • Add your answer
  • Q2. Oops question framework design
  • Add your answer
Anonymous
More about working at Capgemini
golden leaf award AmbitionBox awards

#19 Top Rated Mega Company - 2024

golden leaf award
golden leaf award AmbitionBox awards

#5 Top Rated IT/ITES Company - 2024

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

Capgemini Interview FAQs

How many rounds are there in Capgemini Consultant interview?
Capgemini interview process usually has 2-3 rounds. The most common rounds in the Capgemini interview process are Technical, HR and Resume Shortlist.
How to prepare for Capgemini 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 SAP, Management, SQL, Javascript and ABAP.
What are the top questions asked in Capgemini Consultant interview?

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

  1. What are the different file replication strategies in Azure blob storag...read more
  2. What is workflow,trigger, different types of reports, roles, profiles, permissi...read more
  3. How to handle addition of new module to service program...read more
What are the most common questions asked in Capgemini Consultant HR round?

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

  1. Where do you see yourself in 5 yea...read more
  2. What are your strengths and weakness...read more
  3. What are your salary expectatio...read more
How long is the Capgemini Consultant interview process?

The duration of Capgemini 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

  • Java Developer Interview Questions
  • Senior Engineer Interview Questions
  • Associate Interview Questions
  • Team Lead Interview Questions
  • Technical Lead Interview Questions
  • Associate Consultant Interview Questions
  • Senior Consultant Interview Questions
  • Web Developer Interview Questions
  • Show more
  • Lead Engineer Interview Questions
  • Developer Interview Questions

Overall Interview Experience Rating

4.1/5

based on 266 interview experiences

Difficulty level

Easy 26%
Moderate 69%
Hard 5%

Duration

Less than 2 weeks 61%
2-4 weeks 27%
4-6 weeks 8%
6-8 weeks 3%
More than 8 weeks 1%
View more

Top Skills for Capgemini Consultant

SQL Interview Questions & Answers
500 Questions
Software Development Interview Questions & Answers
250 Questions
Java Interview Questions & Answers
250 Questions
Web Development Interview Questions & Answers
250 Questions
Data Structures Interview Questions & Answers
250 Questions
Software Testing Interview Questions & Answers
250 Questions

Consultant Interview Questions from Similar Companies

Infosys
Infosys Consultant Interview Questions
3.6
 • 167 Interviews
Accenture
Accenture Consultant Interview Questions
3.7
 • 97 Interviews
Genpact
Genpact Consultant Interview Questions
3.7
 • 63 Interviews
TCS
TCS Consultant Interview Questions
3.6
 • 61 Interviews
HCLTech
HCLTech Consultant Interview Questions
3.5
 • 46 Interviews
Wipro
Wipro Consultant Interview Questions
3.7
 • 39 Interviews
Cognizant
Cognizant Consultant Interview Questions
3.7
 • 32 Interviews
Atos
Atos Consultant Interview Questions
3.8
 • 27 Interviews
IBM
IBM Consultant Interview Questions
3.9
 • 20 Interviews
Tech Mahindra
Tech Mahindra Consultant Interview Questions
3.5
 • 8 Interviews
View all
Capgemini Consultant Salary
based on 58.8k salaries
₹8.9 L/yr - ₹16.5 L/yr
18% less than the average Consultant Salary in India
View more details

Capgemini Consultant Reviews and Ratings

based on 5k reviews

3.7/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.2

Salary

3.8

Job security

3.7

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 5k Reviews and Ratings
Consultant Jobs at Capgemini
Capgemini
SAP RAR Consultant

Gurgaon / Gurugram,

Chennai

+1

6-10 Yrs

₹ 4.8-14 LPA

Capgemini
AS 400 Consultant / Lead

Mumbai,

Chennai

+1

6-9 Yrs

₹ 5.4-10.8 LPA

Capgemini
CyberArk (Consultant/Engineer/Lead"s/Architect"s)

Mumbai,

Hyderabad / Secunderabad

+1

10-14 Yrs

Not Disclosed

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

₹8.9 L/yr - ₹16.5 L/yr

Associate Consultant
51.2k salaries
unlock blur

₹4.5 L/yr - ₹10 L/yr

Senior Consultant
50.2k salaries
unlock blur

₹12.1 L/yr - ₹21 L/yr

Senior Analyst
22.3k salaries
unlock blur

₹3.1 L/yr - ₹7.6 L/yr

Senior Software Engineer
21.6k salaries
unlock blur

₹4.7 L/yr - ₹13 L/yr

Explore more salaries
Compare Capgemini with
Wipro

Wipro

3.7
Compare
Accenture

Accenture

3.7
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
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

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 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • 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