Upload Button Icon Add office photos
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.8

based on 39.5k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Capgemini Interview Questions, Process, and Tips for Experienced

Updated 14 Jan 2025

Top Capgemini Interview Questions and Answers for Experienced

View all 1.2k questions

Capgemini Interview Experiences for Experienced

Popular Designations

1.9k interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is regression testing? What difference between sanity and smoke testing? What is wbt?
  • Ans. 

    Regression testing is re-running functional and non-functional tests to ensure previously developed and tested software still performs correctly after a change.

    • Regression testing involves re-running tests to ensure that new code changes have not adversely affected existing functionality.

    • It helps in identifying any defects introduced in the code due to recent changes.

    • Examples of regression testing tools include Selenium

  • Answered by AI
  • Q2. What is performance testing? For automation Why automation testing is best than manual
  • Ans. 

    Performance testing is the process of determining the speed, responsiveness, and stability of a system under a specific workload.

    • Performance testing helps identify bottlenecks and optimize system performance.

    • It involves simulating real-world scenarios to measure how the system behaves under different conditions.

    • Automation testing is preferred over manual testing for performance testing due to its ability to run tests r...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Before interview stay relaxed

Skills evaluated in this interview

Software Engineering Senior Analyst Interview Questions asked at other Companies

Q1. What is performance testing? For automation Why automation testing is best than manual
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Different contract type?
  • Ans. 

    Different contract types refer to various ways in which agreements can be structured between parties.

    • Different contract types include fixed-price, cost-reimbursable, time and materials, and incentive contracts.

    • Each contract type has its own advantages and disadvantages, and is suitable for different project scenarios.

    • For example, a fixed-price contract provides certainty in terms of cost, while a cost-reimbursable cont

  • Answered by AI

Senior Program Manager Interview Questions asked at other Companies

Q1. How do you manage conflicts within your functional teams during program management?
View answer (1)
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(21 Questions)

  • Q1. What are the different types of datatypes in python?
  • Ans. 

    Python has several built-in datatypes including numeric, sequence, and mapping types.

    • Numeric types include integers, floating-point numbers, and complex numbers.

    • Sequence types include lists, tuples, and range objects.

    • Mapping types include dictionaries.

    • Other datatypes include boolean, bytes, and sets.

  • Answered by AI
  • Q2. How do you concatenate a string and integer? is it possible ?
  • Ans. 

    Yes, it is possible to concatenate a string and integer using type conversion.

    • Convert the integer to a string using str() function and then concatenate with the string.

    • Use format() method to insert the integer value into the string.

    • Use f-strings to directly insert the integer value into the string.

  • Answered by AI
  • Q3. What is xpath ? How do you find an element ? what is the difference between absolute xpath and relative xpath?
  • Ans. 

    XPath is a language used to locate elements in an XML or HTML document. Absolute and relative XPaths differ in their starting point.

    • XPath is used to navigate through elements and attributes in an XML or HTML document

    • Elements can be located using absolute or relative XPaths

    • Absolute XPaths start from the root node and are more specific but less flexible

    • Relative XPaths start from the current node and are more flexible but

  • Answered by AI
  • Q4. What are different locators supported in selenium?
  • Ans. 

    Selenium supports various locators such as ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, CSS Selector and XPath.

    • ID locator is the most efficient and reliable locator

    • Name locator is used for locating elements by their name attribute

    • Class Name locator is used for locating elements by their class attribute

    • Tag Name locator is used for locating elements by their tag name

    • Link Text locator is used for locating...

  • Answered by AI
  • Q5. What is the difference between findelement and findelements?
  • Ans. 

    findelement returns the first matching element while findelements returns a list of all matching elements.

    • findelement is used to locate the first matching element on a web page

    • findelements is used to locate all matching elements on a web page

    • findelement throws NoSuchElementException if no matching element is found

    • findelements returns an empty list if no matching element is found

  • Answered by AI
  • Q6. What are the exceptions in selenium?
  • Ans. 

    Exceptions in Selenium are errors that occur during test execution.

    • Some common exceptions in Selenium are NoSuchElementException, TimeoutException, StaleElementReferenceException, and ElementNotVisibleException.

    • NoSuchElementException occurs when an element cannot be found on the page.

    • TimeoutException occurs when a command takes too long to execute.

    • StaleElementReferenceException occurs when an element is no longer attac...

  • Answered by AI
  • Q7. How do you select a value from dropdown in selenium?
  • Ans. 

    To select a value from dropdown in Selenium, use the Select class and its methods.

    • Locate the dropdown element using any of the locators like ID, name, class name, etc.

    • Create an object of the Select class and pass the dropdown element as a parameter.

    • Use the Select class methods like selectByVisibleText(), selectByValue(), or selectByIndex() to select the desired option.

    • Finally, use the assert statement to verify if the

  • Answered by AI
  • Q8. How do you achieve synchronization? what are the differences between the synchronization ways?
  • Ans. 

    Synchronization is the process of coordinating the execution of multiple threads to ensure proper order of execution.

    • Synchronization can be achieved using techniques like locks, semaphores, and monitors.

    • Locks are used to ensure that only one thread can access a shared resource at a time.

    • Semaphores are used to control access to a shared resource by limiting the number of threads that can access it at once.

    • Monitors are u...

  • Answered by AI
  • Q9. What is the difference between break continue and pass?
  • Ans. 

    Break, continue and pass are control statements used in loops. Break terminates the loop, continue skips an iteration and pass does nothing.

    • Break is used to terminate a loop when a certain condition is met

    • Continue is used to skip an iteration of a loop when a certain condition is met

    • Pass is used as a placeholder when a statement is required syntactically but no action is needed

  • Answered by AI
  • Q10. What is full join ?
  • Ans. 

    Full join is a type of SQL join that returns all the rows from both tables, matching rows from both tables and nulls where there is no match.

    • Full join is also known as a full outer join.

    • It is used to combine data from two tables where some of the data may not match.

    • The result set includes all the rows from both tables, with nulls where there is no match.

    • Full join is represented by the keyword 'FULL OUTER JOIN' in SQL.

    • E...

  • Answered by AI
  • Q11. Write a Query to Find Second Highest Salary in SQL
  • Ans. 

    Query to find second highest salary in SQL

    • Use the ORDER BY clause to sort the salaries in descending order

    • Use the LIMIT clause to select the second highest salary

    • Use a subquery to exclude the highest salary from the results

  • Answered by AI
  • Q12. How to fetch 1st 5 records in sql?
  • Ans. 

    To fetch 1st 5 records in SQL, use the LIMIT clause.

    • Use the SELECT statement to specify the columns to retrieve.

    • Use the FROM clause to specify the table to retrieve data from.

    • Use the LIMIT clause to specify the number of records to retrieve.

    • The syntax is: SELECT column1, column2, ... FROM table_name LIMIT 5;

    • The first 5 records will be returned.

  • Answered by AI
  • Q13. How do you copy a table in mysql?
  • Ans. 

    To copy a table in MySQL, use the CREATE TABLE statement with the SELECT statement.

    • Use the CREATE TABLE statement with the SELECT statement to copy a table.

    • Specify the new table name after the CREATE TABLE statement.

    • Specify the original table name after the SELECT statement.

    • Add any additional conditions or clauses as needed.

    • Example: CREATE TABLE new_table SELECT * FROM original_table WHERE condition;

  • Answered by AI
  • Q14. How do you fetch unique elements from a column?
  • Ans. 

    To fetch unique elements from a column, use the DISTINCT keyword in SQL.

    • Use the SELECT statement with the DISTINCT keyword.

    • Specify the column name from which you want to fetch unique elements.

    • Example: SELECT DISTINCT column_name FROM table_name;

    • You can also use GROUP BY clause to group the unique elements based on another column.

    • Example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name;

  • Answered by AI
  • Q15. Write an SQL query to find names of employees start with ‘A’?
  • Ans. 

    SQL query to find names of employees starting with 'A'

    • Use the SELECT statement to retrieve data from the employee table

    • Use the LIKE operator to match the names starting with 'A'

    • Use the % wildcard to match any number of characters after 'A'

  • Answered by AI
  • Q16. How do you open a file and read repeating words from a file ?
  • Ans. 

    To open a file and read repeating words, use file handling and string manipulation techniques.

    • Open the file using file handling techniques in the programming language of your choice.

    • Read the contents of the file and store it in a string variable.

    • Split the string into an array of words using a delimiter such as space or comma.

    • Loop through the array and use a dictionary or hash table to count the frequency of each word.

    • P...

  • Answered by AI
  • Q17. How do you generate random emails in python? gmail.com is constant
  • Ans. 

    Generating random emails in Python with constant domain

    • Use the random module to generate random strings for the username part of the email

    • Combine the random username with the constant domain name

    • Ensure the generated email is unique if required

  • Answered by AI
  • Q18. How do you generate random data / number in python ?
  • Ans. 

    Python provides random module to generate random data and numbers.

    • Import random module

    • Use random.randint() to generate random integer within a range

    • Use random.choice() to select a random element from a list

    • Use random.random() to generate a random float between 0 and 1

    • Use random.uniform() to generate a random float within a range

  • Answered by AI
  • Q19. What is the difference between array and a list ?
  • Ans. 

    Arrays are fixed in size, while lists can grow or shrink dynamically.

    • Arrays are a collection of elements of the same data type, while lists can contain elements of different data types.

    • Arrays are accessed using an index, while lists are accessed using an iterator.

    • Arrays are faster for accessing elements, while lists are faster for inserting or deleting elements.

    • Examples of arrays include int[] and char[], while example

  • Answered by AI
  • Q20. How do you run a test suite using robotframework command line ?
  • Ans. 

    To run a test suite using robotframework command line, use the 'robot' command followed by the path to the test suite file.

    • Open the command prompt or terminal

    • Navigate to the directory containing the test suite file

    • Enter the command 'robot' followed by the name of the test suite file

    • Add any additional options or arguments as needed

    • Press enter to execute the command

    • Example: robot my_test_suite.robot

    • Example with options: ...

  • Answered by AI
  • Q21. If some data is not found on the page, do page refresh and how do you validate a data after page refresh in selenium?
  • Ans. 

    To validate data after page refresh in Selenium, we can refresh the page and then use explicit wait to validate the data.

    • Refresh the page using driver.navigate().refresh() method

    • Use explicit wait to wait for the element to be visible on the page

    • Validate the data using getText() or getAttribute() method

    • Example: driver.navigate().refresh(); WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedConditions...

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. What are your roles and responsibilities?
  • Ans. 

    As a Senior Automation Test Engineer, my roles and responsibilities include designing and implementing automated test scripts, identifying and reporting software defects, and collaborating with cross-functional teams to ensure high-quality software delivery.

    • Designing and implementing automated test scripts using tools like Selenium, Appium, or JUnit

    • Identifying and reporting software defects and working closely with dev...

  • Answered by AI
  • Q2. What is your current and expected CTC ?
  • Ans. 

    I prefer not to disclose my current CTC. As for my expected CTC, I am looking for a competitive salary based on my experience and skills.

    • I am open to negotiation based on the job responsibilities and company's budget

    • I have researched the market rates for similar positions and have a realistic expectation

    • I am looking for a salary that reflects my experience and skills

    • I am also interested in other benefits such as health

  • Answered by AI
  • Q3. Are you willing to relocate to Hyderabad ?
  • Ans. 

    Yes, I am willing to relocate to Hyderabad.

    • I am open to new opportunities and experiences in different locations.

    • I have researched about Hyderabad and I am excited about the city's culture and opportunities.

    • I am ready to adapt to a new environment and build a life in Hyderabad.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Capgemini Senior Automation Test Engineer interview:
  • Python
  • Selenium
  • MySQL
  • Linux
Interview preparation tips for other job seekers - Prepare Basics.
Techincal went on friday, HR called immediately on Monday. She took HR round and told I was selected but I dint hear back from the company. I've sent multiple emails and messages but no response.

Skills evaluated in this interview

Top Capgemini Senior Automation Test Engineer Interview Questions and Answers

Q1. what are the different types of datatypes in python?
View answer (2)

Senior Automation Test Engineer Interview Questions asked at other Companies

Q1. (1) write a list comprehension to print a list from 1 to 10 (2) write a program to check if a given positive integer is a power of two (3) create a fibonacci series of 100 using recursive function (4) write a program to find missing numbers... read more
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in May 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Self introduction followed by roles and responsibilities followed by project introduction, CAN , UDS,write program on CAPL scripting , Services with NRC, CAN errors, CAN frames,about AGILE methodology, tes...
Round 3 - Technical 

(1 Question)

  • Q1. Concentration on project and their requirment for the postion, deep discussion on project , real time challanges faced while testing, how you overcome those errors challenges, work effort. asking abpou too...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident with what ever you added in resume and what is the job requirement.
Be confident, clear and maintain good communication while answering, try to give best , don't keep silent. All the best

Hil Test Engineer Interview Questions asked at other Companies

Q1. What is HIL bench setup and what are tools used for that?
View answer (1)

Capgemini interview questions for popular designations

 Analyst

 (454)

 Consultant

 (390)

 Software Engineer

 (312)

 Senior Consultant

 (278)

 Associate Consultant

 (250)

 Senior Analyst

 (157)

 Software Developer

 (149)

 Senior Software Engineer

 (137)

Director Interview Questions & Answers

user image Anonymous

posted on 6 Apr 2024

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

I applied via Naukri.com and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Not interested to share
Round 2 - One-on-one 

(1 Question)

  • Q1. Not interested to share
Round 3 - HR 

(1 Question)

  • Q1. Variable pay details

Interview Preparation Tips

Interview preparation tips for other job seekers - Negotiate aggressively. Never get bogged down by the pressure of TA team. You can be good, polite and honest to the TAs but do not expect them to reciprocate the same to you.

Director Interview Questions asked at other Companies

Q1. On what basis would you enhance the pipeline products of the company?
View answer (2)

Get interview-ready with Top Capgemini Interview Questions

Interview experience
1
Bad
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basics of language which you are applying for .
  • Q2. Oops , framework related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Please take interview if you are really interested in candidate profile . I have been asked 5 question and interview was over . This is really disgraceful for so called MNC

Top Capgemini Software Developer Interview Questions and Answers

Q1. Split Array with equal sumsYou are given an array/list 'ARR' of size 'N'. You task is to find if there exists a triplet (i, j, k) such that 0 < i , i + 1 < j , j + 1 < k and k < 'N' - 1 and the sum of the subarrays [0, i - 1],[i... read more
View answer (3)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Jobs at Capgemini

View all

Analyst Interview Questions & Answers

user image Anonymous

posted on 19 Feb 2024

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

Great and tough question

Round 2 - Coding Test 

Tough 3 questions and one of the best way to
Interact

Round 3 - Technical 

(1 Question)

  • Q1. Oops C and c++

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard

Top Capgemini Analyst Interview Questions and Answers

Q1. N-th Fibonacci NumberYou are given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 +7. Fibonacci number is calculated u... read more
View answer (5)

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci NumberYou are given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 +7. Fibonacci number is calculated u... read more
View answer (5)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Need to write advance c programming,use case of bit wise operator, link list programs

Round 3 - Technical 

(1 Question)

  • Q1. Details about Linux system programming, Linux device driver & Technical details about projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepared for individual concern programming language & deep knowledge about project related technical things.

Top Capgemini Senior Software Engineer Interview Questions and Answers

Q1. Pascal's TriangleYou are given an integer N. Your task is to return a 2-D ArrayList containing the pascal’s triangle till the row N. A Pascal's triangle is a triangular array constructed by summing adjacent elements in preceding rows. Pasca... read more
View answer (5)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Technical question on java
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions on aws

Top Capgemini Software Developer Interview Questions and Answers

Q1. Split Array with equal sumsYou are given an array/list 'ARR' of size 'N'. You task is to find if there exists a triplet (i, j, k) such that 0 < i , i + 1 < j , j + 1 < k and k < 'N' - 1 and the sum of the subarrays [0, i - 1],[i... read more
View answer (3)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (41)

Automation Test Engineer Interview Questions & Answers

user image Amruta Vivek Savant

posted on 24 Aug 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Write a code to take screen shot? write a code to print all the values from dropdown of selected type? write a code for implicit wait?
  • Ans. 

    Code snippets for taking a screenshot, printing dropdown values, and implementing implicit wait in automation testing.

    • For taking a screenshot: Use Selenium's TakesScreenshot interface to capture the screenshot and save it to a file.

    • For printing dropdown values: Use Selenium's Select class to select the dropdown element and then iterate through all options to print their values.

    • For implicit wait: Use Selenium's WebDrive...

  • Answered by AI
  • Q2. What is static,final in java? what is the difference between string buffer and string builder? write a program to dispaly below pattern 1 2 3 4 5 6 7 8 9 10
  • Ans. 

    Static and final are keywords in Java. StringBuffer is synchronized while StringBuilder is not. The pattern can be displayed using loops.

    • Static keyword is used to create class-level variables or methods. Final keyword is used to make a variable constant.

    • StringBuffer is synchronized and thread-safe, while StringBuilder is not synchronized and faster.

    • Pattern program can be implemented using nested loops to print the desi

  • Answered by AI

Skills evaluated in this interview

Top Capgemini Automation Test Engineer Interview Questions and Answers

Q1. 1] Introduction 2] Sanity Vs Smoke testing 3] Waits in selenium and code for it 4] Scenario based questions 5] types of frameworks 6] how to read data from excel 7] Coding questions based on- handling dropdown in selenium, database automati... read more
View answer (1)

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)

Capgemini Interview FAQs

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

Some of the top questions asked at the Capgemini interview for experienced candidates -

  1. 1. What's the use of update sets and how do you move update set from one instan...read more
  2. Could you tell me, which tools do you have used in test management and defect t...read more
  3. How to achieve to different pricing procedure for sales order and billing docum...read more
How long is the Capgemini interview process?

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

Tell us how to improve this page.

Capgemini Interview Process for Experienced

based on 638 interviews in last 1 year

Interview experience

4
  
Good
View more

People are getting interviews through

based on 1.3k Capgemini interviews
Job Portal
Referral
Company Website
Campus Placement
WalkIn
Recruitment Consultant
52%
7%
7%
7%
4%
4%
19% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all

Capgemini Reviews and Ratings

based on 39.5k reviews

3.8/5

Rating in categories

3.7

Skill development

3.8

Work-Life balance

3.1

Salary & Benefits

3.9

Job Security

3.7

Company culture

2.9

Promotions/Appraisal

3.5

Work Satisfaction

Explore 39.5k Reviews and Ratings
ServiceNow Business Analyst

Pune,

Chennai

+1

5-10 Yrs

Not Disclosed

Order To Cash - Collections | Voice Process | Trichy

Tiruchirappalli

5-9 Yrs

₹ 1-6 LPA

Innovation Project Manager - Kolkata/Mumbai

Kolkata,

Navi Mumbai

+1

10-17 Yrs

Not Disclosed

Explore more jobs
Consultant
55.1k salaries
unlock blur

₹5.2 L/yr - ₹18 L/yr

Associate Consultant
51.9k salaries
unlock blur

₹2.9 L/yr - ₹11.8 L/yr

Senior Consultant
45.9k salaries
unlock blur

₹7.5 L/yr - ₹25 L/yr

Senior Analyst
20.4k salaries
unlock blur

₹2 L/yr - ₹7.5 L/yr

Senior Software Engineer
19.8k salaries
unlock blur

₹3.5 L/yr - ₹12.5 L/yr

Explore more salaries
Compare Capgemini with

Wipro

3.7
Compare

Accenture

3.9
Compare

Cognizant

3.8
Compare

TCS

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview