Skip to content

Capgemini Interview Experiences

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
  1. Hands-on Coding (45 minutes)
  • 2 coding problems
  • Languages: C, C++, Java, Python
  1. Technical Interview (30-45 minutes)
  • Programming fundamentals
  • Project discussion
  • CS basics
  1. 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

    1. 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”

    1. DBMS Questions:
  • “What is normalization?”

  • “Write SQL query with JOIN”

    1. 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

    1. “Are you comfortable with relocation?”
  • Yes, flexible to work from any location

    1. “What are your strengths and weaknesses?”
  • Strength: Quick learner

  • Weakness: Sometimes overthink

    1. “Where do you see yourself in 5 years?”
  • Technical growth, leadership role

    1. “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

After technical rounds, Capgemini usually closes with a short HR / hiring-manager conversation: motivation, location, notice period, and a couple of behavioural stories. Prepare those answers on the dedicated page rather than cramming them into this hub.

HR interview questions

Common Capgemini HR questions, sample answer frames, and STAR tips.

TCS · Infosys · Cognizant · Wipro · Accenture · HCL


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