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 11 Mar 2025

Top Capgemini Interview Questions and Answers for Freshers

View all 333 questions

Capgemini Interview Experiences for Freshers

Popular Designations

585 interviews found

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

(1 Question)

  • Q1. OOPS concepts, Testng

Selenium Automation Tester Interview Questions asked at other Companies

Q1. How to get the count of all text box in a web page?
View answer (6)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Are you comfortable with night shift
  • Ans. 

    Yes, I am comfortable with night shifts.

    • I have previous experience working night shifts and have adapted well to the schedule.

    • I am a night owl and actually prefer working during the night.

    • I understand the importance of maintaining a healthy work-life balance even when working night shifts.

  • Answered by AI
  • Q2. Package details

Top Capgemini Process Associate Interview Questions and Answers

Q1. Tell me something about eurobonds, capital market. Describe your resume.
View answer (5)

Process Associate Interview Questions asked at other Companies

Q1. How will you explain a red colour (or any colour) to a person who is blind since his or her birth?
View answer (21)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. JPA Hibernate related question
  • Q2. Object oriented Programming questions
Round 2 - Coding Test 

Occurance each characters in a string

Top Capgemini Java Developer Interview Questions and Answers

Q1. Is Java platform-independent, if yes why?
View answer (6)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)

Software Developer Interview Questions & Answers

user image Khyati Tandon

posted on 14 Aug 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is filter in java 8
  • Ans. 

    Filter in Java 8 is a method used to iterate through a collection and filter out elements based on a specified condition.

    • Filter is a method in the Stream interface in Java 8.

    • It takes a Predicate as an argument to specify the condition for filtering.

    • Example: List names = Arrays.asList("Alice", "Bob", "Charlie"); List filteredNames = names.stream().filter(name -> name.startsWith("A")).collect(Collectors.toList());

Answered by AI

Skills evaluated in this interview

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 (42)

Capgemini interview questions for popular designations

 Analyst

 (425)

 Consultant

 (400)

 Software Engineer

 (316)

 Senior Consultant

 (283)

 Associate Consultant

 (254)

 Software Developer

 (152)

 Senior Analyst

 (149)

 Senior Software Engineer

 (138)

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

(2 Questions)

  • Q1. What is use state in react js
  • Ans. 

    useState is a hook in React that allows functional components to have state.

    • useState is a hook provided by React for managing state in functional components.

    • It returns an array with two elements - the current state value and a function to update that value.

    • Example: const [count, setCount] = useState(0);

    • The initial state value is passed as an argument to useState.

  • Answered by AI
  • Q2. Write a code snippet for use effect
  • Ans. 

    Code snippet for useEffect hook in React

    • UseEffect is a hook in React that allows you to perform side effects in function components

    • It runs after every render and can be used for data fetching, subscriptions, or manually changing the DOM

    • Example: useEffect(() => { console.log('Component rendered') }, [])

  • Answered by AI

Skills evaluated in this interview

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)

Get interview-ready with Top Capgemini Interview Questions

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

Need to complete the Assignment

Round 2 - Technical 

(1 Question)

  • Q1. Based on our subjects
Round 3 - One-on-one 

(1 Question)

  • Q1. About our self and way of working discussion

Technical Writer Interview Questions asked at other Companies

Q1. Tell me about the OS your phone uses? What are the other phone operating systems available in the market
View answer (2)

Jobs at Capgemini

View all

Consultant Interview Questions & Answers

user image Sreelakshmi Nair

posted on 8 Jun 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Excel knowledge-Macros
  • Q2. Intership knowledgeable
  • Q3. Communication skill

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)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Write shell script for palindrome
  • Ans. 

    Shell script to check if a string is a palindrome

    • Use a for loop to iterate through the characters of the string

    • Compare the characters from the start and end of the string to check for palindrome

    • Use a conditional statement to determine if the string is a palindrome or not

  • Answered by AI
  • Q2. Explain OOPs concept
  • Ans. 

    OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPs focuses on creating reusable code by organizing it into objects

    • It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation

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

  • Answered by AI
  • Q3. Write sql query to display even records
  • Ans. 

    Use SQL query with modulo operator to display even records

    • Use modulo operator (%) to filter even records

    • Add a WHERE clause with row number condition

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why should we hire you
  • Q2. What do you know about CGO
  • Ans. 

    CGO stands for C Go, a compiler for the Go programming language that translates Go code into C code.

    • CGO allows Go code to call C code and vice versa

    • It is commonly used for interfacing Go code with existing C libraries

    • CGO enables Go programs to use platform-specific functionality not available in Go standard library

  • Answered by AI

Skills evaluated in this interview

Top Capgemini Technical Support Engineer Interview Questions and Answers

Q1. Tell me how you handle Mutiple complex escalations
View answer (1)

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

Software Analyst Interview Questions & Answers

user image Kirti Bharti

posted on 28 Feb 2025

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

I was interviewed in Aug 2024.

Round 1 - Aptitude Test 

Just math , english, reasoning

Round 2 - Technical 

(1 Question)

  • Q1. Few queries on Java, SQL
Round 3 - HR 

(1 Question)

  • Q1. Discussion of self and company

Top Capgemini Software Analyst Interview Questions and Answers

Q1. Trailing Zeros in Factorial Problem Find the number of trailing zeroes in the factorial of a given number N. Input: The first line contains an integer T representing the number of test cases.Each of the following T lines contains an integer... read more
View answer (1)

Software Analyst Interview Questions asked at other Companies

Q1. DFS Traversal Problem Statement Given an undirected and disconnected graph G(V, E), where V is the number of vertices and E is the number of edges, the connections between vertices are provided in the 'GRAPH' matrix. Each element of the mat... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions and CS fundamentals

Round 2 - Coding Test 

2 coding questions 1 very easy other medium

Round 3 - Technical 

(3 Questions)

  • Q1. Resume based questions
  • Q2. CS fundamental based questions
  • Q3. Write pseudocode of 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

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. About your self etc

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 need to take in order for you to find a perfect pair?
View answer (525)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)

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 280 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all

Capgemini Reviews and Ratings

based on 42k 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.9

Promotions

3.5

Work satisfaction

Explore 42k Reviews and Ratings
Guidewire Developer

Pune,

Bangalore / Bengaluru

+1

6-11 Yrs

Not Disclosed

Sap Apo Consultant

Bangalore / Bengaluru,

Delhi/Ncr

+1

6-11 Yrs

Not Disclosed

Middleware Administrator

Pune,

Bangalore / Bengaluru

+1

4-9 Yrs

Not Disclosed

Explore more jobs
Consultant
55.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
50.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
46.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Analyst
20.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
20.3k salaries
unlock blur

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