Logo

Get AmbitionBox App

Faster and better experience!

AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Campus placements

      Interviews questions for 2K+ colleges

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    WINNERS AWAITED!
    • ABECA 2025
      WINNERS AWAITED!

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    • AmbitionBox Best Places to Work 2021

      1st Edition

For Employers
Upload Button Icon Add office photos
logo
Engaged Employer

i

This company page is being actively managed by 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 45k 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
    45k
  • Salaries
    4.4L
  • Interviews
    5k
  • Jobs
    1.6k
  • Benefits
    4.2k
  • Photos
    40
  • Posts
    27

Filter interviews by

Capgemini Data Analyst Interview Questions and Answers

Updated 24 Apr 2025

14 Interview questions

A Data Analyst was asked 2mo ago
Q. What is the life cycle of a Test Data Management (TDM) project?
Ans. 

The TDM project life cycle involves planning, design, implementation, and maintenance of test data management processes.

  • 1. Planning: Define objectives and scope of TDM, e.g., identifying data sources and requirements.

  • 2. Design: Create a blueprint for data management, including data models and storage solutions.

  • 3. Implementation: Execute the design by setting up tools and processes for data generation and masking.

  • 4...

A Data Analyst was asked 2mo ago
Q. How familiar are you with the software development lifecycle and agile methodologies?
Ans. 

I have a solid understanding of software lifecycle stages and agile methodologies, emphasizing iterative development and collaboration.

  • Software Lifecycle includes stages: Planning, Development, Testing, Deployment, and Maintenance.

  • Agile methodologies focus on iterative progress, with Scrum and Kanban being popular frameworks.

  • In Agile, sprints are time-boxed iterations, allowing teams to deliver small, functional i...

Data Analyst Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Write code to calculate the number of people in a room at the end ... read more
View answers (11)
asked in Wipro
Q2. Chocolate Distribution Problem You are given an array/list CHOCOL ... read more
View answers (3)
asked in Wipro
Q3. Ninja and Substrings Problem Statement Ninja has to determine all ... read more
View answers (3)
asked in Capgemini
Q4. Ninja and His Secret Information Encoding Problem Ninja, a new me ... read more
View answers (2)
asked in American Express
Q5. Sliding Window Maximum Problem Statement You are given an array/l ... read more
View answer (1)
View All
A Data Analyst was asked 4mo ago
Q. How can you improve performance optimization in Power BI?
Ans. 

To improve performance optimization in Power BI, focus on data model design, query optimization, and report design.

  • Optimize data model by reducing unnecessary columns and relationships

  • Use query folding to push data transformation tasks to the data source

  • Limit the use of calculated columns and measures to only necessary calculations

  • Avoid using complex DAX expressions that can slow down performance

  • Use aggregations a...

A Data Analyst was asked 6mo ago
Q. Define join and its types.
Ans. 

Join is a SQL operation used to combine rows from two or more tables based on a related column between them.

  • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

  • INNER JOIN returns rows when there is at least one match in both tables.

  • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

  • RIGHT JOIN returns all rows from the right table and the matched rows from t...

What people are saying about Capgemini

View All
corporatecat
Verified Icon
1w
works at
Cognizant
I have two offer currently. Working in BFSI domain 1. Capgemini - 10 LPA fixed, client- barclays, offshore 2. HCLTech- 11.5 fixed, client- Citibank, client location Can you please guide me, which company should I go with? I am hearing a lot of negative review about HCL Tech work culture, like they push their employees to work beyond working hours, does capgemini provide better work life style compared to hcltech ??. Can someone guide me please It will be very helpful for me. Thankyouu
Hi all, requesting your guidance - Switching job for the first time | YOE- 2.8, Current CTC- 4.63
Capgemini
0%
HCLTech
0%
64 participants . expiring in 4d
Got a question about Capgemini?
Ask anonymously on communities.
A Data Analyst was asked 6mo ago
Q. Write a program to print the number of characters in your name.
Ans. 

My name has 10 characters.

  • Count the number of characters in your name

  • Include spaces and special characters if present

  • Use a programming language or tool to calculate the length of your name

A Data Analyst was asked 7mo ago
Q. What is the difference between COUNT and COUNTIF?
Ans. 

count is a function in Excel that counts the number of cells in a range that contain numbers, while countif is a function that counts the number of cells in a range that meet a specific condition.

  • count function counts cells with numbers in a range

  • countif function counts cells based on a specific condition

  • countif function can be used to count cells with text, dates, or logical values based on a criteria

A Data Analyst was asked 13 Apr 2024
Q. What is the difference between global and local variables in Python?
Ans. 

Global variables in Python are accessible throughout the entire program, while local variables are only accessible within the specific function or block of code.

  • Global variables are declared outside of any function or block of code.

  • Local variables are declared within a function or block of code and are only accessible within that function or block.

  • Global variables can be accessed and modified from anywhere in the ...

Are these interview questions helpful?
A Data Analyst was asked 01 Mar 2024
Q. What is a decorator?
Ans. 

A decorator is a design pattern in Python that allows you to add new functionality to an existing object without modifying its structure.

  • Decorators are defined using the @ symbol followed by the decorator function name.

  • They are commonly used to modify or extend the behavior of functions or methods.

  • Decorators can be used for tasks such as logging, authentication, caching, etc.

A Data Analyst was asked 01 Mar 2024
Q. What is a generator?
Ans. 

A generator is a function that can pause and resume its execution, allowing it to yield multiple values over time.

  • Generators are defined using the function* syntax in JavaScript.

  • They use the yield keyword to return a value and pause the function's execution.

  • Generators are useful for iterating over large datasets or performing asynchronous operations.

  • Example: function* myGenerator() { yield 1; yield 2; yield 3; }

A Data Analyst was asked 07 Jan 2024
Q. Write an SQL query to retrieve and sort data from a database.
Ans. 

SQL query to retrieve data from a database and sort it

  • Use the SELECT statement to retrieve data

  • Use the ORDER BY clause to specify the sorting order

  • Specify the column(s) to sort by in the ORDER BY clause

  • Use ASC for ascending order and DESC for descending order

  • Example: SELECT * FROM table_name ORDER BY column_name ASC

1 2

Capgemini Data Analyst Interview Experiences

55 interviews found

Data Analyst Interview Questions & Answers

user image ananthakrishnan

posted on 30 Dec 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is star topology
  • Add your answer
  • Q2. Hybrid topology
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn the fundamentals related to your resume topics.
Anonymous

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 24 Oct 2024

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

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

Round 1 - Aptitude Test 

Genral aptitude questions

Round 2 - Coding Test 

40 mins to solve 2 dsa questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Print the number of characters present in your name
  • Ans. 

    My name has 10 characters.

    • Count the number of characters in your name

    • Include spaces and special characters if present

    • Use a programming language or tool to calculate the length of your name

  • Answered by AI
    Add your answer
  • Q2. SQL questions and basic dsa questions
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Just clear your basics
Anonymous

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 16 Dec 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - HR 

(1 Question)

  • Q1. Why you want to join us?
  • Ans. 

    I am passionate about using data to drive insights and make informed decisions.

    • I am excited about the opportunity to work with a team of talented data analysts and learn from their expertise.

    • I am impressed by the company's reputation for utilizing cutting-edge technology and innovative approaches to data analysis.

    • I believe that my skills and experience align well with the challenges and opportunities presented by this ...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare basic/ fundamental of the role and application.
Anonymous

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 27 Dec 2024

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Three rounds of evaluation will be conducted, each involving an elimination process: the first round will consist of multiple-choice questions on technology, the second round will focus on essay writing, and the third round will assess personality traits.

Round 2 - Coding Test 

There is a duration of one hour to answer two questions, and participants can choose a programming language from a predefined set that includes C, C++, and Java.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a data analyst with a background in statistics and programming, passionate about uncovering insights from data.

    • Graduated with a degree in Statistics

    • Proficient in programming languages like Python and R

    • Experience in analyzing large datasets to extract meaningful information

    • Strong problem-solving skills and attention to detail

    • Effective communicator and team player

  • Answered by AI
    Add your answer
  • Q2. Method overiding
  • Add your answer
Anonymous

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 26 Dec 2024

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 Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How do you use field parameter in dynamic reporting
  • Ans. 

    Field parameters in dynamic reporting allow for customization of data displayed based on user input.

    • Field parameters can be used to filter data based on specific criteria chosen by the user.

    • They can also be used to group data in a certain way to provide a more organized report.

    • Field parameters can be used to change the visualization of data based on user selection.

    • For example, in a sales report, a field parameter could...

  • Answered by AI
    Add your answer
  • Q2. How to improve performance optimization in power bi
  • Ans. 

    To improve performance optimization in Power BI, focus on data model design, query optimization, and report design.

    • Optimize data model by reducing unnecessary columns and relationships

    • Use query folding to push data transformation tasks to the data source

    • Limit the use of calculated columns and measures to only necessary calculations

    • Avoid using complex DAX expressions that can slow down performance

    • Use aggregations and su...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to focus on project day to day work
Anonymous

Data Analyst Interview Questions & Answers

user image Simran

posted on 16 Sep 2024

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

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About my self my qualification my
  • Add your answer
  • Q2. What's is my aim
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Anonymous

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 13 Jul 2024

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

Aptitude is all about the basic ques

Round 2 - Coding Test 

Coding about simple questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Resume about projects
  • Add your answer
  • Q2. What is your project about?
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing hard you can crack easily no worries
Anonymous

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 20 Jun 2024

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

(2 Questions)

  • Q1. What is Primary key and foreign key?
  • Ans. 

    Primary key uniquely identifies each record in a table, while foreign key establishes a link between two tables.

    • Primary key ensures each record in a table is unique

    • Foreign key establishes a relationship between two tables

    • Primary key can be a single column or a combination of columns

    • Foreign key references the primary key of another table

  • Answered by AI
    Add your answer
  • Q2. What is Artificial intelligence?
  • Ans. 

    Artificial intelligence is the simulation of human intelligence processes by machines, especially computer systems.

    • AI involves machines performing tasks that typically require human intelligence, such as visual perception, speech recognition, decision-making, and language translation.

    • Examples of AI include virtual assistants like Siri and Alexa, self-driving cars, recommendation systems like Netflix's algorithm, and fa...

  • Answered by AI
    Add your answer
Round 2 - HR 

(1 Question)

  • Q1. Why did you choose Capgemini?
  • Add your answer

Skills evaluated in this interview

Anonymous

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 10 Feb 2025

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

(1 Question)

  • Q1. Explain end to end project that you worked on
  • Ans. 

    Developed a predictive analytics model for customer churn in a telecom company

    • Collected and cleaned customer data from various sources

    • Performed exploratory data analysis to identify patterns and trends

    • Built a machine learning model to predict customer churn

    • Evaluated the model's performance using metrics like accuracy and precision

    • Presented findings and recommendations to stakeholders

  • Answered by AI
    Add your answer
Anonymous

Data Analyst Interview Questions & Answers

user image Bhanu Priya

posted on 25 Nov 2024

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

(1 Question)

  • Q1. Joins, windows function
  • 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 Data Analyst interview?
Capgemini interview process usually has 2-3 rounds. The most common rounds in the Capgemini interview process are Technical, Aptitude Test and Resume Shortlist.
How to prepare for Capgemini Data Analyst 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 Data Analysis, SQL, Python, Data Analytics and Data Visualization.
What are the top questions asked in Capgemini Data Analyst interview?

Some of the top questions asked at the Capgemini Data Analyst interview -

  1. What is the life cycle of a Test Data Management (TDM) proje...read more
  2. How to improve performance optimization in power...read more
  3. How do you use field parameter in dynamic report...read more
What are the most common questions asked in Capgemini Data Analyst HR round?

The most common HR questions asked in Capgemini Data Analyst interview are -

  1. What are your strengths and weakness...read more
  2. Tell me about yourse...read more
How long is the Capgemini Data Analyst interview process?

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

  • Senior Data Analyst Interview Questions
  • Junior Data Analyst Interview Questions
  • Data Analyst Intern Interview Questions
  • Data Engineer Interview Questions
  • Data Scientist Interview Questions
  • Data Research Analyst Interview Questions
  • Associate Data Analyst Interview Questions
  • Data Entry Operator Interview Questions
  • Show more
  • Medical Data Analyst Interview Questions
  • Senior Data Engineer Interview Questions

Data Analyst Interview Questions from Similar Companies

TCS
TCS Data Analyst Interview Questions
3.6
 • 70 Interviews
Accenture
Accenture Data Analyst Interview Questions
3.8
 • 56 Interviews
Cognizant
Cognizant Data Analyst Interview Questions
3.7
 • 39 Interviews
Wipro
Wipro Data Analyst Interview Questions
3.7
 • 37 Interviews
Infosys
Infosys Data Analyst Interview Questions
3.6
 • 35 Interviews
HCLTech
HCLTech Data Analyst Interview Questions
3.5
 • 22 Interviews
Tech Mahindra
Tech Mahindra Data Analyst Interview Questions
3.5
 • 18 Interviews
IBM
IBM Data Analyst Interview Questions
4.0
 • 13 Interviews
Genpact
Genpact Data Analyst Interview Questions
3.8
 • 10 Interviews
NielsenIQ
NielsenIQ Data Analyst Interview Questions
3.7
 • 7 Interviews
View all
Capgemini Data Analyst Salary
based on 1.7k salaries
₹1.8 L/yr - ₹9.5 L/yr
16% less than the average Data Analyst Salary in India
View more details

Capgemini Data Analyst Reviews and Ratings

based on 172 reviews

3.7/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.0

Salary

3.8

Job security

3.6

Company culture

2.8

Promotions

3.3

Work satisfaction

Explore 172 Reviews and Ratings
Data Analyst Jobs at Capgemini
Capgemini
Data Analyst

Bangalore / Bengaluru

2-5 Yrs

₹ 2.80512-7 LPA

Capgemini
Data Analyst

Bangalore / Bengaluru

2-5 Yrs

₹ 2.80512-7 LPA

Capgemini
Data Analyst - A

Pune

2-5 Yrs

₹ 3-9.5 LPA

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

₹5.3 L/yr - ₹18.5 L/yr

Associate Consultant
51k salaries
unlock blur

₹2.9 L/yr - ₹12.1 L/yr

Senior Consultant
48.8k salaries
unlock blur

₹7.9 L/yr - ₹26 L/yr

Senior Analyst
21.6k salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Senior Software Engineer
21k 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 Data Analyst Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Helping over 1 Crore job seekers every month in choosing their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

6 Lakh+

Interviews

1 Crore+

Users/Month

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Campus Placements
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2026
  • ABECA 2025 winners awaited tag
  • ABECA 2024
  • AmbitionBox Best Places to Work 2022
  • AmbitionBox Best Places to Work 2021
  • Invite employees to rate
AmbitionBox
  • About Us
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter