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 Software Engineer Interview Questions, Process, and Tips

Updated 18 Feb 2025

Top Capgemini Software Engineer Interview Questions and Answers

  • Q1. In a dark room,there is a box of 18 white and 5 black gloves. You are allowed to pick one and then you are allowed to keep it and check it outside. How many turns do you ...read more
  • Q2. How can you cut a rectangular cake in 8 symmetric pieces in three cuts?
  • Q3. One question of sorting for a list of people belonging to different cities and states.
View all 152 questions

Capgemini Software Engineer Interview Experiences

313 interviews found

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

(2 Questions)

  • Q1. Based on emission and calibration
  • Q2. On egt system and emission norms
Round 2 - Aptitude Test 

Moc English pro online test

Round 3 - HR 

(2 Questions)

  • Q1. Relocation background verification
  • Q2. Ctc finalisation
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. They asked intro,what are u technical skills
  • Q2. Difference between list &tuple
  • Ans. 

    Lists are mutable, tuples are immutable in Python.

    • Lists are enclosed in square brackets [], tuples in parentheses ().

    • Lists can be modified (add, remove, change elements), tuples cannot be modified.

    • Lists are used for collections of similar items, tuples are used for heterogeneous collections.

    • Example: list_example = [1, 2, 3], tuple_example = (1, 'a', True)

  • Answered by AI
  • Q3. About projects in depth

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Software Engineer Interview Questions & Answers

user image Nishanth Shan

posted on 9 Jul 2024

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

Mostly of quants, logical and some communications.

Round 2 - Technical 

(2 Questions)

  • Q1. Self intro, Why capgemini?
  • Q2. Basic concepts of oops and basic programming in whatever language we are comfortable
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Self intro ,questions on projects
  • Q2. Sql topics,difference between list and tuple,
  • Q3. What is normalisation
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization is used to eliminate redundant data and ensure data dependencies make sense.

    • It involves dividing a database into two or more tables and defining relationships between them.

    • Normalization helps in reducing data anomalies and improving data consistency.

    • There are different normal forms such as 1NF, 2N...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Capgemini interview questions for designations

 Senior Software Engineer

 (138)

 Associate Software Engineer

 (31)

 Lead Software Engineer

 (12)

 Software Engineer Analyst

 (11)

 Embedded Software Engineer

 (4)

 Software Engineer Trainee

 (4)

 Software Testing Engineer

 (3)

 Software Engineer Intern

 (1)

Software Engineer Interview Questions & Answers

user image sireesha jayavarapu

posted on 26 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Good basic questions

Round 2 - Group Discussion 

A topic given on technical information.u need to be honest and maintain good communication

Round 3 - HR 

(2 Questions)

  • Q1. Why should we hire you?
  • Q2. Are you willing to relocate

Get interview-ready with Top Capgemini Interview Questions

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Introduction,About projects
  • Q2. Diff between list and tuple ,sql queries,normalization
  • Ans. 

    List and tuple are both data structures in Python, with list being mutable and tuple being immutable. SQL queries are used to retrieve data from databases, and normalization is the process of organizing data in a database to reduce redundancy.

    • List is mutable, tuple is immutable

    • List uses square brackets [], tuple uses parentheses ()

    • SQL queries are used to retrieve data from databases

    • Normalization is the process of organ

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident

Skills evaluated in this interview

Software Engineer Jobs at Capgemini

View all
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops data types spring

Software Engineer Interview Questions & Answers

user image Sai Priya Poka

posted on 16 Aug 2024

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

A general coding round

Round 2 - Aptitude Test 

Aptitude Test: general questions on aptitude

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and a strong background in computer science.

    • Experienced in developing web applications using technologies like HTML, CSS, JavaScript, and React

    • Strong background in computer science with knowledge of data structures and algorithms

    • Proficient in programming languages such as Java, Python, and C++

    • Familiar with version control systems like Gi...

  • Answered by AI
  • Q2. What are your strengths and weaknesses
  • Ans. 

    My strengths include problem-solving skills and attention to detail. My weaknesses include public speaking and time management.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Weaknesses: public speaking

    • Weaknesses: time management

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Aptitude itself include 3-4 topics

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a string
  • Ans. 

    Reverse a string by iterating through the characters and swapping them

    • Create a function that takes a string as input

    • Initialize two pointers, one at the beginning and one at the end of the string

    • Swap the characters at the two pointers and move them towards the center until they meet

  • Answered by AI
  • Q2. Wap for palindrome
  • Ans. 

    A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • Check if the input string is equal to its reverse

    • Ignore spaces and punctuation when checking for palindrome

    • Convert the input string to lowercase for case-insensitive comparison

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and a strong background in computer science.

    • Experienced in developing web applications using technologies such as HTML, CSS, JavaScript, and React

    • Strong background in computer science with knowledge of data structures and algorithms

    • Proficient in programming languages such as Java, Python, and C++

    • Familiar with software development methodo

  • Answered by AI
  • Q2. What are you good at?
  • Ans. 

    I am good at problem-solving, coding efficiently, and collaborating with team members.

    • Strong problem-solving skills

    • Efficient coding abilities

    • Collaboration with team members

  • Answered by AI

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, SQL, Javascript, Python 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
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.

Capgemini Software Engineer Interview Process

based on 223 interviews

6 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • Technical Round - 3
  • HR Round
  • Personal Interview1 Round - 1
  • Personal Interview1 Round - 2
View more
Capgemini Software Engineer Salary
based on 18.5k salaries
₹1.8 L/yr - ₹10.5 L/yr
29% less than the average Software Engineer Salary in India
View more details

Capgemini Software Engineer Reviews and Ratings

based on 1.4k reviews

3.7/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.2

Salary

3.7

Job security

3.7

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 1.4k Reviews and Ratings
Software Engineer

Coimbatore

2-5 Yrs

Not Disclosed

Software Engineer

Coimbatore

2-5 Yrs

Not Disclosed

Software Engineer

Pune

2-5 Yrs

₹ 2.55-9 LPA

Explore more jobs
Consultant
55.2k salaries
unlock blur

₹5.2 L/yr - ₹17.5 L/yr

Associate Consultant
50.8k salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Senior Consultant
46.1k salaries
unlock blur

₹7.5 L/yr - ₹24.5 L/yr

Senior Analyst
20.6k salaries
unlock blur

₹2 L/yr - ₹7.5 L/yr

Senior Software Engineer
20.2k salaries
unlock blur

₹3.5 L/yr - ₹12.1 L/yr

Explore more salaries
Compare Capgemini with

Wipro

3.7
Compare

Accenture

3.8
Compare

Cognizant

3.8
Compare

TCS

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