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

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 Freshers

Updated 7 Apr 2025

Top Capgemini Interview Questions and Answers for Freshers

View all 340 questions

Capgemini Interview Experiences for Freshers

Popular Designations

592 interviews found

Software Developer Interview Questions & Answers

user image Janvi Waghmode

posted on 8 Jan 2025

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

(1 Question)

  • Q1. Pseudo codes, It fundamentals

Top Capgemini Software Developer Interview Questions and Answers

Q1. Split Array with Equal Sums Problem Statement Given an array 'ARR' of size 'N', determine if there exists a triplet (i, j, k) satisfying the conditions: 0 < i , i + 1 < j , j + 1 < k and k < N - 1, such that the sums of the suba... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
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 May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions of selenium.
  • Q2. Some java conceptual questions
Round 2 - Technical 

(1 Question)

  • Q1. Asked to write code of how read data from excel and explain the entire project structure.

Qa Automation Testing Engineer Interview Questions asked at other Companies

Q1. selenium: what are selenium components, what are the different locators in selenium, what is selenium web driver, write a xpath for a given element on a web page
View answer (5)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024.

Round 1 - Aptitude Test 

Reasoning, English, Numerical Ability

Round 2 - Coding Test 

Pseudocode, Basic Data structure and algorithm questions

Round 3 - HR 

(1 Question)

  • Q1. Situation based questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with situation based questions.

Top Capgemini Associate Software Engineer Interview Questions and Answers

Q1. 1) Difference between let, const, var 2) virtual Dom 3) Hooks- usestate, useeffect- it's class component features 4) Redux 5) Api calling via Redux 6) object destructuring 7) props
View answer (1)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

Analyst Interview Questions & Answers

user image Shilpa Shetty

posted on 20 Jul 2024

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

Aptitude can be easily cracked.

Round 2 - Communication 

(2 Questions)

  • Q1. They will be giving some sentences and u have to listen and repeat it
  • Q2. They will orate a paragraph.U have to listen it carefully and answer the questions
Round 3 - Technical 

(2 Questions)

  • Q1. Oops concepts was asked
  • Q2. DBMS related questions were asked

Top Capgemini Analyst Interview Questions and Answers

Q1. N-th Fibonacci Number Problem Statement 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. Formula: F(n) = F(n-... read more
View answer (1)

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement 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. Formula: F(n) = F(n-... read more
View answer (1)

Capgemini interview questions for popular designations

 Analyst

 (427)

 Consultant

 (404)

 Software Engineer

 (321)

 Senior Consultant

 (289)

 Associate Consultant

 (259)

 Software Developer

 (156)

 Senior Analyst

 (151)

 Senior Software Engineer

 (142)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Mar 2025

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Explain pandas in real time scenario.
  • Ans. 

    Pandas is a powerful Python library for data manipulation and analysis, ideal for handling structured data.

    • Data Cleaning: Remove duplicates and handle missing values. Example: df.drop_duplicates() or df.fillna(0).

    • Data Transformation: Reshape data using pivot tables. Example: df.pivot_table(values='sales', index='date', columns='product').

    • Data Aggregation: Group data for summary statistics. Example: df.groupby('category...

  • Answered by AI
  • Q2. Explain oops concepts in detail
  • Ans. 

    OOP concepts include encapsulation, inheritance, polymorphism, and abstraction, forming the foundation of object-oriented programming.

    • Encapsulation: Bundling data and methods that operate on the data within a single unit (class). Example: A class 'Car' with attributes like 'color' and methods like 'drive()'.

    • Inheritance: Mechanism where a new class derives properties and behavior from an existing class. Example: 'Electr...

  • Answered by AI

Top Capgemini Data Engineer Interview Questions and Answers

Q1. What will be spark configuration to process 2 gb of data
View answer (1)

Data Engineer Interview Questions asked at other Companies

Q1. Next Greater Element Problem Statement You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater element, return -1. Input: T N arr[0]... read more
View answer (3)

Get interview-ready with Top Capgemini Interview Questions

Analyst Interview Questions & Answers

user image Anonymous

posted on 13 Jun 2024

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

I applied via Campus Placement and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic OOPS concept which is mandatory to keep up to date
  • Q2. Some Sql quetions and arrays and list concept

Interview Preparation Tips

Topics to prepare for Capgemini Analyst interview:
  • OOPS
  • SQL
  • Java
  • ARRAYY

Top Capgemini Analyst Interview Questions and Answers

Q1. N-th Fibonacci Number Problem Statement 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. Formula: F(n) = F(n-... read more
View answer (1)

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement 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. Formula: F(n) = F(n-... read more
View answer (1)

Jobs at Capgemini

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

I applied via Campus Placement and was interviewed in Apr 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

First part was mostly easy aptitude questions with some medium level ones. Second part had easy coding questions based on loops and conditional statements.

Round 2 - Essay Writing 

(1 Question)

  • Q1. Each person was given a topic to write an essay
Round 3 - Cognitive Games 

(1 Question)

  • Q1. Cognitive and memory based timed and untimed puzzles and games were given
Round 4 - Coding Test 

Two easy coding questions were given to solve both based on strings and hash map.

Round 5 - One-on-one 

(1 Question)

  • Q1. Online interview took place after a few days. For 20 minutes technical questions were on my projects, internship and basic data structure like queues and arrays.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't stress out the process is very smooth. Mastering fundamentals of programming and having basic knowledge about various data structures is helpful. Communication and confidence is the key. Give mock interview to a friend or on your own.

Top Capgemini Senior Analyst Interview Questions and Answers

Q1. If a computer speed is slow, how will you increase its speed?
View answer (3)

Senior Analyst Interview Questions asked at other Companies

Q1. Explain 3 statement financial model Calculating discount rate Could you walk me through the DCF model? Other valuation methods. What PE is ideal? What is the other matrix to value the company? Difference between IRR and CAGR. What is Bond Y... read more
View answer (1)

Gcp Data Engineer Interview Questions & Answers

user image Bhau Rakhapasare

posted on 13 Apr 2024

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

(5 Questions)

  • Q1. What is windows function bigquery
  • Ans. 

    Window functions in BigQuery are used to perform calculations across a set of table rows related to the current row.

    • Window functions allow you to perform calculations on a set of rows related to the current row

    • They are used with the OVER() clause in SQL queries

    • Common window functions include ROW_NUMBER(), RANK(), and NTILE()

    • They can be used to calculate moving averages, cumulative sums, and more

  • Answered by AI
  • Q2. What types on nosql databases in gcp
  • Ans. 

    Types of NoSQL databases in GCP include Firestore, Bigtable, and Datastore.

    • Firestore is a flexible, scalable database for mobile, web, and server development.

    • Bigtable is a high-performance NoSQL database service for large analytical and operational workloads.

    • Datastore is a highly scalable NoSQL database for web and mobile applications.

  • Answered by AI
  • Q3. Write code to find max number of product by customer
  • Ans. 

    Code to find max number of product by customer

    • Iterate through each customer's purchases

    • Keep track of the count of each product for each customer

    • Find the product with the maximum count for each customer

  • Answered by AI
  • Q4. Read dataframe python and pyspark
  • Q5. Create dataframe
  • Ans. 

    Creating a dataframe in GCP Data Engineer

    • Use the pandas library to create a dataframe

    • Provide data in the form of a dictionary or list of lists

    • Specify column names if needed

  • Answered by AI

Skills evaluated in this interview

Top Capgemini Gcp Data Engineer Interview Questions and Answers

Q1. Explain Google cloud bigquery architecture?
View answer (2)

Gcp Data Engineer Interview Questions asked at other Companies

Q1. GCP Services, What is use of Bigquery? What is Pubsub,Dataflow,cloud storage. Question related previous roles and responsibility.
View answer (1)

Consultant Interview Questions & Answers

user image Anonymous

posted on 17 Jul 2024

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

(2 Questions)

  • Q1. Why react is faster, default parameters, can you call async function in useEffect
  • Ans. 

    React is faster due to virtual DOM, default parameters provide fallback values, async functions can be called in useEffect

    • React is faster than traditional DOM manipulation because it uses a virtual DOM to minimize actual DOM updates

    • Default parameters in JavaScript allow you to specify default values for function parameters if no value is provided

    • Async functions can be called in useEffect hook in React to perform asynch

  • Answered by AI
  • Q2. ES6 features, react hooks

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well. Basic questions on react and JS were asked

Skills evaluated in this interview

Top Capgemini Consultant Interview Questions and Answers

Q1. What are the different file replication strategies in Azure blob storage ?
View answer (1)

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

Analyst Interview Questions & Answers

user image Anonymous

posted on 17 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

The test is very easy and prepare well

Round 2 - Coding Test 

In two coding questions, solve atleast one to get high packages

Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated and detail-oriented analyst with a strong background in data analysis and problem-solving.

    • I have a Bachelor's degree in Statistics and experience working with large datasets

    • I am proficient in statistical software such as R and Python

    • I have a proven track record of delivering actionable insights to drive business decisions

  • Answered by AI
  • Q2. Project expalantaion
  • Q3. How do you handle deadlines
  • Ans. 

    I prioritize tasks, set realistic timelines, communicate any challenges, and adjust as needed to meet deadlines.

    • Prioritize tasks based on urgency and importance

    • Set realistic timelines for each task

    • Communicate any challenges or delays to stakeholders

    • Adjust and re-prioritize tasks as needed to meet deadlines

  • Answered by AI

Top Capgemini Analyst Interview Questions and Answers

Q1. N-th Fibonacci Number Problem Statement 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. Formula: F(n) = F(n-... read more
View answer (1)

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement 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. Formula: F(n) = F(n-... read more
View answer (1)

Capgemini Interview FAQs

How many rounds are there in Capgemini interview for freshers?
Capgemini interview process for freshers usually has 2-3 rounds. The most common rounds in the Capgemini interview process for freshers are Technical, HR and Resume Shortlist.
How to prepare for Capgemini interview for freshers?
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 Accounting, Excel, Finance, HR and HR Operations.
What are the top questions asked in Capgemini interview for freshers?

Some of the top questions asked at the Capgemini interview for freshers -

  1. In a dark room,there is a box of 18 white and 5 black gloves. You are allowed t...read more
  2. How can you cut a rectangular cake in 8 symmetric pieces in three cut...read more
  3. One question of sorting for a list of people belonging to different cities and...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 Freshers

based on 287 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Accenture Interview Questions
3.8
 • 8.3k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.7k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
DXC Technology Interview Questions
3.7
 • 802 Interviews
View all

Capgemini Reviews and Ratings

based on 43.5k reviews

3.7/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.0

Salary

3.8

Job security

3.7

Company culture

2.8

Promotions

3.4

Work satisfaction

Explore 43.5k Reviews and Ratings
Associate Consultant

Bangalore / Bengaluru

2-6 Yrs

₹ 3.5-9 LPA

Explore more jobs
Consultant
56k salaries
unlock blur

₹5.2 L/yr - ₹18 L/yr

Associate Consultant
50.7k salaries
unlock blur

₹2.9 L/yr - ₹12 L/yr

Senior Consultant
47.3k salaries
unlock blur

₹7.5 L/yr - ₹25 L/yr

Senior Analyst
21.1k salaries
unlock blur

₹2.2 L/yr - ₹9 L/yr

Senior Software Engineer
20.6k salaries
unlock blur

₹3.5 L/yr - ₹12.9 L/yr

Explore more salaries
Compare Capgemini with

Wipro

3.7
Compare

Accenture

3.8
Compare

Cognizant

3.7
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview