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

Filter interviews by

Capgemini Software Developer Interview Questions and Answers

Updated 1 Jul 2025

128 Interview questions

A Software Developer was asked 1w ago
Q. Write a program to print prime numbers from 1 to 100.
Ans. 

Prime numbers are natural numbers greater than 1 that have no divisors other than 1 and themselves.

  • A prime number is only divisible by 1 and itself. Example: 2, 3, 5.

  • The first prime number is 2, which is also the only even prime number.

  • All other even numbers greater than 2 are not prime because they can be divided by 2.

  • The prime numbers between 1 and 100 are: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47,...

A Software Developer was asked 1mo ago
Q. What is the difference between method overriding and method overloading?
Ans. 

Method overriding allows a subclass to provide a specific implementation of a method already defined in its superclass, while overloading allows multiple methods with the same name but different parameters.

  • Method Overriding: Redefining a method in a subclass. Example: class Animal { void sound() { } } class Dog extends Animal { void sound() { } }

  • Method Overloading: Same method name with different parameters in the...

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked 1mo ago
Q. What is polymorphism in C++?
Ans. 

Polymorphism in C++ allows methods to do different things based on the object that it is acting upon, enhancing flexibility and reusability.

  • Polymorphism is a core concept in OOP, enabling methods to be overridden in derived classes.

  • There are two types: compile-time (static) and run-time (dynamic) polymorphism.

  • Compile-time polymorphism is achieved through function overloading and operator overloading.

  • Run-time polym...

A Software Developer was asked 1mo ago
Q. What is a program for demonstrating operation overloading?
Ans. 

Operation overloading allows custom behavior for operators in user-defined classes, enhancing code readability and usability.

  • Overloading the '+' operator to add two complex numbers: class Complex { int real, imag; Complex operator+(const Complex &c) { return Complex(real + c.real, imag + c.imag); } };

  • Overloading the '<<' operator for outputting a custom class: class Point { int x, y; ...

What people are saying about Capgemini

View All
a senior software engineer
2d (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 Software Developer was asked 3mo ago
Q. What is the explanation of a factorial program?
Ans. 

A factorial program calculates the product of all positive integers up to a given number, denoted as n!.

  • Factorial of a non-negative integer n is the product of all positive integers less than or equal to n.

  • Mathematically, n! = n × (n-1) × (n-2) × ... × 1.

  • Example: 5! = 5 × 4 × 3 × 2 × 1 = 120.

  • Factorial of 0 is defined as 1 (0! = 1).

  • Factorials grow very quickly; for instance, 10! = 3,628,800.

A Software Developer was asked 8mo ago
Q. Code for Sequence
Ans. 

Generate a sequence of numbers or characters based on a given pattern.

  • Use a loop to generate the sequence based on the pattern provided.

  • Consider using if-else statements for different cases in the pattern.

  • Store the generated sequence in an array of strings.

A Software Developer was asked 8mo ago
Q. Code for data statics
Ans. 

Code for data statistics involves analyzing and summarizing data to extract meaningful insights.

  • Use built-in functions in programming languages like Python, R, or SQL to calculate statistics such as mean, median, mode, standard deviation, etc.

  • Consider using libraries like NumPy, Pandas, or SciPy for more advanced statistical analysis.

  • Visualize data using tools like Matplotlib, Seaborn, or Tableau to better underst...

Are these interview questions helpful?
A Software Developer was asked 8mo ago
Q. How does the login page appear when clicking on a webpage icon like Facebook?
Ans. 

The login page is displayed when a user clicks on a webpage icon like Facebook by redirecting to a separate login page.

  • Clicking on the webpage icon triggers a redirect to the login page

  • The login page prompts the user to enter their credentials

  • After successful login, the user is redirected back to the original webpage

🔥 Asked by recruiter 3 times
A Software Developer was asked 8mo ago
Q. What is an object?
Ans. 

An object is a self-contained entity that consists of data and methods to manipulate that data.

  • Objects are instances of classes in object-oriented programming.

  • They have attributes (data) and methods (functions) to operate on the data.

  • Objects can interact with each other through method calls.

  • Example: In a car simulation program, a 'Car' object may have attributes like 'color' and 'speed', and methods like 'accelera...

🔥 Asked by recruiter 2 times
A Software Developer was asked 8mo ago
Q. What is a class?
Ans. 

A class is a blueprint for creating objects in object-oriented programming.

  • Defines the properties and behaviors of objects

  • Can be used to create multiple instances of objects

  • Encapsulates data and methods within a single unit

Capgemini Software Developer Interview Experiences

164 interviews found

Software Developer Interview Questions & Answers

user image Lakshmi bhumireddy

posted on 28 Oct 2024

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

It included all aptitude

Round 2 - Assignment 

Contains all pseudo questions related to DSA

Round 3 - Technical 

(6 Questions)

  • Q1. What is a class?
  • Ans. 

    A class is a blueprint for creating objects in object-oriented programming.

    • Defines the properties and behaviors of objects

    • Can be used to create multiple instances of objects

    • Encapsulates data and methods within a single unit

  • Answered by AI
  • Q2. What is an object?
  • Ans. 

    An object is a self-contained entity that consists of data and methods to manipulate that data.

    • Objects are instances of classes in object-oriented programming.

    • They have attributes (data) and methods (functions) to operate on the data.

    • Objects can interact with each other through method calls.

    • Example: In a car simulation program, a 'Car' object may have attributes like 'color' and 'speed', and methods like 'accelerate' a...

  • Answered by AI
  • Q3. How the login page comes when clicks on some webpage icon like facebook?
  • Ans. 

    The login page is displayed when a user clicks on a webpage icon like Facebook by redirecting to a separate login page.

    • Clicking on the webpage icon triggers a redirect to the login page

    • The login page prompts the user to enter their credentials

    • After successful login, the user is redirected back to the original webpage

  • Answered by AI
  • Q4. DDL and DML commands
  • Q5. Polymorphism and method overriding?
  • Ans. 

    Polymorphism allows methods to do different things based on the object type, while method overriding enables subclass methods to replace superclass methods.

    • Polymorphism is a core concept in OOP that allows objects to be treated as instances of their parent class.

    • Method overriding occurs when a subclass provides a specific implementation of a method already defined in its superclass.

    • Example of polymorphism: A function t...

  • Answered by AI
  • Q6. Entire opps in java
  • Ans. 

    Object-oriented programming in Java involves creating classes, objects, inheritance, polymorphism, and encapsulation.

    • Classes are blueprints for objects, defining attributes and behaviors.

    • Objects are instances of classes, representing real-world entities.

    • Inheritance allows a class to inherit attributes and methods from another class.

    • Polymorphism enables objects to be treated as instances of their parent class.

    • Encapsulat...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Easy Problem on Strings
Round 2 - Technical 

(1 Question)

  • Q1. Java, Spring, Spring boot and project specifics
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Coding Test 

N0rmal hacker rank queationss

Round 2 - Technical 

(5 Questions)

  • Q1. What is servlet implement code
  • Ans. 

    Servlet implement code is the code that defines the behavior of a servlet in a Java web application.

    • Servlet implement code is written in Java and typically extends the HttpServlet class.

    • It includes methods like doGet() and doPost() to handle HTTP GET and POST requests.

    • Servlet implement code can interact with databases, process form data, and generate dynamic web content.

  • Answered by AI
  • Q2. Write jwt implementation methods
  • Ans. 

    JWT implementation methods involve encoding, decoding, and verifying tokens for secure authentication.

    • Use a library like jsonwebtoken to easily create and verify JWT tokens

    • When creating a token, include a payload with user information and a secret key for signing

    • To verify a token, decode it using the secret key and check the signature

  • Answered by AI
  • Q3. What is oops concets
  • Ans. 

    Object-oriented programming concepts that focus on classes and objects.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

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

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation details and showing only the necessary features.

    • ...

  • Answered by AI
  • Q4. What is rdbms and use
  • Ans. 

    RDBMS stands for Relational Database Management System. It is a type of database management system that stores data in a structured format.

    • Organizes data into tables with rows and columns

    • Uses SQL for querying and managing data

    • Enforces relationships between tables using foreign keys

    • Examples include MySQL, PostgreSQL, Oracle

  • Answered by AI
  • Q5. What is microservies anduse
  • Ans. 

    Microservices are a software development technique where applications are broken down into smaller, independent services that communicate with each other.

    • Each microservice is responsible for a specific function or feature

    • Microservices can be developed, deployed, and scaled independently

    • Communication between microservices is typically done through APIs

    • Examples: Netflix, Amazon, Uber

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - cpre java, spring boot. or server side technlogies prepare that perfectly

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

It was pretty easy and quick

Round 2 - Technical 

(2 Questions)

  • Q1. Ques related to dsa and oops
  • Q2. What are your projects that you have worked on
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Strings related in java
  • Q2. Multithreading in java
Round 2 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Q2. Date of joining
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Naukri.com

Round 1 - Coding Test 

To find the first non duplicate character in a string?

Round 2 - Technical 

(2 Questions)

  • Q1. OOPS concepts like inheritance, abstraction, interface vs abstract
  • Q2. Scenario based questions on strings
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

  • Q1. Write Prime Number from 1-100
  • Ans. 

    Prime numbers are natural numbers greater than 1 that have no divisors other than 1 and themselves.

    • A prime number is only divisible by 1 and itself. Example: 2, 3, 5.

    • The first prime number is 2, which is also the only even prime number.

    • All other even numbers greater than 2 are not prime because they can be divided by 2.

    • The prime numbers between 1 and 100 are: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, ...

  • Answered by AI
  • Q2. Mention all palindromes in the world
  • Ans. 

    Palindromes are words, phrases, or sequences that read the same backward as forward, showcasing symmetry in language.

    • Words: 'level', 'radar', 'civic', 'deified'

    • Phrases: 'A man, a plan, a canal, Panama!'

    • Numbers: 121, 12321

    • Dates: 02/02/2020

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What do you mean by Oops concepts
  • Ans. 

    Oops concepts refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction hides the complex implementation d...

  • Answered by AI
  • Q2. Serialization and Deserialization Concepts
  • Q3. Java Stream API problem give to code
  • Ans. 

    Java Stream API simplifies data processing with functional-style operations on collections.

    • Streams can be created from collections, arrays, or I/O channels. Example: List<String> names = Arrays.asList('Alice', 'Bob'); Stream<String> stream = names.stream();

    • Common operations include filter, map, and reduce. Example: List<Integer> lengths = names.stream().map(String::length).collect(Collectors.toList())...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic java
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is asynchronous communication?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Introduction about your self
  • Q2. Java opps concept and implementation
  • Ans. 

    Java OOPs concepts refer to the principles of Object-Oriented Programming and their implementation in Java.

    • Java OOPs concepts include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Polymorphism allows objects to be treated as instances o...

  • Answered by AI

Skills evaluated in this interview

Capgemini Interview FAQs

How many rounds are there in Capgemini Software Developer interview?
Capgemini interview process usually has 2-3 rounds. The most common rounds in the Capgemini interview process are Technical, Coding Test and Aptitude Test.
How to prepare for Capgemini Software Developer 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 JMS, SOAP, Middleware, SOA and Scrum.
What are the top questions asked in Capgemini Software Developer interview?

Some of the top questions asked at the Capgemini Software Developer interview -

  1. What is the advantage of generic collection, when and why we should approach fo...read more
  2. what is array and how it is different from linked lis...read more
  3. What is the difference between one way SSL and two way S...read more
How long is the Capgemini Software Developer interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 149 interview experiences

Difficulty level

Easy 31%
Moderate 65%
Hard 5%

Duration

Less than 2 weeks 64%
2-4 weeks 19%
4-6 weeks 9%
6-8 weeks 2%
More than 8 weeks 6%
View more
Capgemini Software Developer Salary
based on 6k salaries
₹4.2 L/yr - ₹20.8 L/yr
12% more than the average Software Developer Salary in India
View more details

Capgemini Software Developer Reviews and Ratings

based on 440 reviews

3.7/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.1

Salary

3.8

Job security

3.7

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 440 Reviews and Ratings
Software Developer (Chatbot CCAI/DailogFlow)

Mumbai,

Pune

+1

3-6 Yrs

₹ 2.5-28 LPA

Software Developer (Generative AI)

Mumbai,

Chennai

+1

4-6 Yrs

₹ 3-28 LPA

Explore more jobs
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.5 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

3.7
Compare

Accenture

3.7
Compare

Cognizant

3.7
Compare

TCS

3.6
Compare
write
Share an Interview