Skip to content

Capgemini Interview Experience 2025 - Real Stories from Candidates

Read authentic Capgemini placement interview experiences. Learn from real game-based assessment, technical interviews, and HR rounds for Capgemini placement 2025-2026.

Capgemini Placement Interview Experience - Real Stories

Section titled “Capgemini Placement Interview Experience - Real Stories”

Learn from real Capgemini placement interview experiences. Capgemini has a unique game-based assessment followed by technical and HR interviews.

  1. Game-Based Assessment (25 minutes)

    • 15 pseudocode MCQs
    • Test logical thinking
  2. Hands-on Coding (45 minutes)

    • 2 coding problems
    • Languages: C, C++, Java, Python
  3. Technical Interview (30-45 minutes)

    • Programming fundamentals
    • Project discussion
    • CS basics
  4. HR Interview (20-30 minutes)

    • Behavioral questions
    • Company fit
    • Relocation

Interview Experience 1: Analyst Role (2025)

Section titled “Interview Experience 1: Analyst Role (2025)”

Interview Experience 1 - Analyst

Candidate Profile: B.Tech CS, 7.5 CGPA, campus placement

Round 1 - Game-Based Assessment (25 minutes)

Platform: Capgemini Assessment Portal

Pseudocode Questions (15 MCQs):

  • Output prediction from pseudocode
  • Loop tracing questions
  • Conditional statement outputs
  • Array traversal results

Sample Question:

SET x = 5
SET y = 0
WHILE x > 0 DO
SET y = y + x
SET x = x - 1
ENDWHILE
PRINT y

Output: 15

Tips:

  • Read pseudocode carefully
  • Trace through step by step
  • Watch for off-by-one errors
  • Practice pseudocode problems

My Performance: ~12/15 correct Result: Cleared

Round 2 - Hands-on Coding (45 minutes)

Problem 1: Reverse an Array

  • Difficulty: Easy
  • My Approach: Two-pointer swap
  • Time: 10 minutes
  • Result: All test cases passed
public void reverseArray(int[] arr) {
int left = 0, right = arr.length - 1;
while (left < right) {
int temp = arr[left];
arr[left] = arr[right];
arr[right] = temp;
left++;
right--;
}
}

Problem 2: Check Armstrong Number

  • Difficulty: Easy-Medium
  • My Approach: Sum of digits raised to power
  • Time: 15 minutes
  • Result: All test cases passed

Tips:

  • Focus on basic array and string problems
  • Handle edge cases
  • Test with given examples

Result: Cleared coding round

Round 3 - Technical Interview (35 minutes)

Questions Asked:

  1. “Tell me about yourself” (3 minutes)

    • Brief introduction with education and skills
  2. Programming Questions:

    • “What is the difference between C and Java?”
    • “Explain OOPs concepts with examples”
    • “What is the difference between stack and queue?”
    • “Write code to check if number is prime”
  3. DBMS Questions:

    • “What is normalization?”
    • “Write SQL query with JOIN”
  4. Project Discussion:

    • Explained final year project
    • Technologies used
    • Challenges faced

Tips:

  • Know fundamentals well
  • Be confident in communication
  • Explain projects clearly

Result: Cleared technical round

Round 4 - HR Interview (25 minutes)

Questions Asked:

  1. “Why Capgemini?”

    • Mentioned global presence, diverse projects
    • Learning and growth opportunities
  2. “Are you comfortable with relocation?”

    • Yes, flexible to work from any location
  3. “What are your strengths and weaknesses?”

    • Strength: Quick learner
    • Weakness: Sometimes overthink
  4. “Where do you see yourself in 5 years?”

    • Technical growth, leadership role
  5. “Any questions for us?”

    • Asked about training program

Result: Selected! Package: ₹4.25 LPA Location: Mumbai (initially), then project-based

Key Takeaways: Capgemini values fundamentals and communication. Don’t underestimate the game-based assessment - it’s important!

Interview Experience 2 - Off-Campus

Candidate Profile: B.Tech ECE, 7.0 CGPA, career switcher

Application Process
  • Applied through Capgemini careers portal
  • Received assessment link in 2 weeks
  • Completed all rounds within 1 month
Assessment Experience

Game-Based:

  • Challenging pseudocode questions
  • Practiced with online mock tests

Coding:

  • Solved 1 problem completely
  • Partial solution for second
  • Still cleared (50% coding + good game-based score)
Interview Experience

Technical:

  • Basic programming questions
  • Understanding approach over syntax

HR:

  • “Why switching from ECE to IT?”
  • Showed genuine interest in programming

Result: Selected! Package: ₹4 LPA

Key Takeaways: Capgemini welcomes career switchers. Show genuine interest and basic programming knowledge.

  • Loop output prediction
  • Conditional statement results
  • Array traversal outputs
  • String manipulation results
  • Nested loop tracing
  • Function call tracing

Game-Based Prep

  • Practice pseudocode daily
  • Trace code step by step
  • Watch for edge cases
  • Manage time well

Coding Prep

  • Master one language
  • Focus on basic problems
  • Practice array/string problems
  • Handle input/output properly

Interview Prep

  • Know fundamentals well
  • Prepare project explanation
  • Practice speaking
  • Research about Capgemini

Ready to crack Capgemini interviews? Don’t underestimate pseudocode - practice it! Focus on fundamentals and clear communication. Capgemini values attitude alongside skills.

Last updated: February 2026