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 Engineer Interview Questions and Answers

Updated 9 Jul 2025

166 Interview questions

🔥 Asked by recruiter 3 times
A Software Engineer was asked 1mo ago
Q. Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.
Ans. 

A palindrome is a word, phrase, number, or sequence that reads the same backward as forward.

  • Examples of palindromic words: 'level', 'radar', 'civic'.

  • Examples of palindromic phrases: 'A man, a plan, a canal, Panama!'

  • Palindromes can also be numbers, e.g., 121, 1331.

  • They are often used in puzzles and word games.

A Software Engineer was asked 1mo ago
Q. What is the difference between local and global variables?
Ans. 

Local variables are defined within a function, while global variables are accessible throughout the entire program.

  • Local variables are declared inside a function or block and can only be accessed within that function.

  • Global variables are declared outside of all functions and can be accessed from any part of the program.

  • Example of a local variable: function example() { let localVar = 5; console.log(localVar); ...

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
A Software Engineer was asked 1mo ago
Q. Briefly describe the C language.
Ans. 

C is a high-level programming language known for its efficiency and control, widely used in system and application software development.

  • Developed in the early 1970s at Bell Labs.

  • Supports procedural programming and low-level memory manipulation.

  • Used for system programming, embedded systems, and application development.

  • Example: A simple C program to print 'Hello, World!': #include <stdio.h> int main() { pr...

🔥 Asked by recruiter 2 times
A Software Engineer was asked 2mo ago
Q. What is your preferred work location?
Ans. 

I prefer a location that fosters collaboration, innovation, and work-life balance, ideally in a tech hub.

  • Proximity to tech companies: Being near industry leaders like Google or Amazon can provide networking opportunities.

  • Access to talent: Locations with a strong tech community can facilitate collaboration and knowledge sharing.

  • Work-life balance: Areas with good amenities and recreational options can enhance overal...

What people are saying about Capgemini

View All
thrivingsnapdragon
1w
works at
Accenture
Need feedback regarding One Finance BU at Capgemini
I am planning to join the One Finance Transformation team under Group IT at Capgemini. Can you please provide some insights if it is a good option to join in terms of learning, career progression and monetary benefits? Thanks.
Got a question about Capgemini?
Ask anonymously on communities.
A Software Engineer was asked 4mo ago
Q. Write code to group employees by salary.
Ans. 

Group employees by salary using data structures to organize and summarize employee information effectively.

  • Data Structure: Use a dictionary or map to group employees by their salary, where the key is the salary and the value is a list of employees.

  • Example: For employees with salaries 50000, 60000, and 50000, the output would be {50000: [Employee1, Employee3], 60000: [Employee2]}.

  • Iterate through the employee list: ...

A Software Engineer was asked 4mo ago
Q. Write a program to find the least occurring character in a string.
Ans. 

This program identifies the least occurring character in a given string, considering case sensitivity and ignoring spaces.

  • Count Characters: Use a dictionary to count occurrences of each character in the string.

  • Ignore Spaces: Ensure that spaces are not counted when determining the least occurring character.

  • Find Minimum: Iterate through the dictionary to find the character with the minimum count.

  • Return Result: Outpu...

A Software Engineer was asked 5mo ago
Q. Write pseudocode for a basic DSA question.
Ans. 

Pseudocode for a basic DSA question

  • Start by defining the problem statement and input/output requirements

  • Identify the key data structures and algorithms needed to solve the problem

  • Write step-by-step instructions in pseudocode to solve the problem

  • Test the pseudocode with sample inputs to ensure correctness

Are these interview questions helpful?
A Software Engineer was asked 7mo ago
Q. Can the main method be overridden in Java?
Ans. 

The main method in Java cannot be overridden, but it can be overloaded in subclasses.

  • The main method is static, so it belongs to the class, not instances.

  • Overriding requires an instance of the superclass, which is not applicable for static methods.

  • You can overload the main method, e.g., public static void main(String[] args, int num) {}

  • When you run a Java application, the JVM looks for the main method with the exa...

A Software Engineer was asked 7mo ago
Q. What is the difference between POST and PUT requests?
Ans. 

POST creates resources, while PUT updates existing ones. Both are HTTP methods used in RESTful APIs.

  • POST is used to create a new resource on the server. Example: POST /users creates a new user.

  • PUT is used to update an existing resource. Example: PUT /users/1 updates the user with ID 1.

  • POST can result in multiple resources being created, while PUT is idempotent, meaning repeated calls have the same effect.

  • POST does...

A Software Engineer was asked 7mo ago
Q. What is EMR?
Ans. 

EMR stands for Electronic Medical Record, a digital version of a patient's paper chart.

  • EMR is used by healthcare providers to store patient information electronically.

  • It includes medical history, diagnoses, medications, treatment plans, immunization dates, allergies, radiology images, and laboratory test results.

  • EMRs can be accessed and shared by authorized providers and staff across different healthcare organizat...

Capgemini Software Engineer Interview Experiences

333 interviews found

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

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a program to find the least occuring character in a string
  • Q2. Write the code to group by salary for each employees

Interview Preparation Tips

Interview preparation tips for other job seekers - How can we increase the performance of database retrieval
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Asked about technical expertise and topic related question
  • Q2. Notice period and salary discussion
Round 2 - Technical 

(2 Questions)

  • Q1. Technical in depth
  • Q2. Salary discussion
Round 3 - HR 

(1 Question)

  • Q1. Notice period and salary discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Coding questions on java

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on java oops
  • Q2. Questions on java
Round 3 - Technical 

(2 Questions)

  • Q1. OOPS questions asked in interview
  • Q2. Oops questions asked in interview
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

  • Q1. Java 8 coding questions fetch the employee data based on highest salary using Java 8 stream API and optional class need to use for handling null handle
  • Q2. How to communicate Microservices
  • Ans. 

    Microservices communicate through APIs, messaging queues, and event-driven architectures for efficient data exchange.

    • RESTful APIs: Microservices expose endpoints for HTTP requests, allowing services to communicate over the web. Example: A user service and an order service can interact via REST APIs.

    • gRPC: A high-performance RPC framework that uses Protocol Buffers for serialization, enabling efficient communication betw...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. What is oops dbms and sql query
  • Ans. 

    OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, DBMS (Database Management System) is software for managing databases, and SQL (Structured Query Language) is a language used to communicate with databases.

    • OOPs focuses on creating objects that contain data and methods to manipulate that data.

    • DBMS is a software system that allows users to interact with a database, storing and r...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - learn basics of oops dbms dsa and software eng
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. What is constructor?
  • Q2. Method overloading and method overriding
  • Q3. What is object?

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers basic questions were asked after the online test

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Basic aptitude and pseudo codes

Round 2 - Coding Test 

Bsic coding questions- easy to solve

Round 3 - Technical 

(5 Questions)

  • Q1. Python based questions
  • Q2. SQL based questions
  • Q3. ReactJS based questions
  • Q4. Encapsulation and abstraction
  • Q5. What are delete, truncate?

Skills evaluated in this interview

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

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

  • Q1. Java related questions
  • Q2. Personality test

Software Engineer Interview Questions & Answers

user image Rugved kulkarni

posted on 9 Oct 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Computer network questions
  • Q2. SQL questions best on normalisation
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the EMR
  • Q2. What is Spark and mapreduce
  • Ans. 

    Spark and MapReduce are both distributed computing frameworks used for processing large datasets.

    • Spark is a fast and general-purpose cluster computing system that provides in-memory processing capabilities.

    • MapReduce is a programming model for processing and generating large data sets with a parallel, distributed algorithm on a cluster.

    • Spark is known for its speed and ease of use, while MapReduce is more traditional and...

  • Answered by AI

Skills evaluated in this interview

Capgemini Interview FAQs

How many rounds are there in Capgemini Software Engineer interview?
Capgemini interview process usually has 2-3 rounds. The most common rounds in the Capgemini interview process are Technical, Aptitude Test and HR.
How to prepare for Capgemini Software Engineer 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 Software Engineering, Software Development, Java, Software Design and HTML.
What are the top questions asked in Capgemini Software Engineer interview?

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

  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
What are the most common questions asked in Capgemini Software Engineer HR round?

The most common HR questions asked in Capgemini Software Engineer interview are -

  1. What are your strengths and weakness...read more
  2. Why should we hire y...read more
  3. What is your family backgrou...read more
How long is the Capgemini Software Engineer interview process?

The duration of Capgemini Software Engineer 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 248 interview experiences

Difficulty level

Easy 27%
Moderate 70%
Hard 3%

Duration

Less than 2 weeks 61%
2-4 weeks 24%
4-6 weeks 9%
6-8 weeks 4%
More than 8 weeks 3%
View more
Capgemini Software Engineer Salary
based on 20.1k salaries
₹4.1 L/yr - ₹10.3 L/yr
23% less than the average Software Engineer Salary in India
View more details

Capgemini Software Engineer Reviews and Ratings

based on 1.6k reviews

3.7/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.1

Salary

3.8

Job security

3.7

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 1.6k Reviews and Ratings
Software Engineer

Mumbai

2-5 Yrs

₹ 2.8-10 LPA

Software Engineer

Pune

2-5 Yrs

₹ 2.4-9 LPA

Software Engineer

Hyderabad / Secunderabad

2-5 Yrs

₹ 2.8-12 LPA

Explore more jobs
Consultant
58.6k 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
50k salaries
unlock blur

₹12.4 L/yr - ₹21 L/yr

Senior Analyst
22.1k salaries
unlock blur

₹3.1 L/yr - ₹7.5 L/yr

Senior Software Engineer
21.6k salaries
unlock blur

₹4.7 L/yr - ₹12.9 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