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 = 5SET y = 0WHILE x > 0 DO SET y = y + x SET x = x - 1ENDWHILEPRINT yOutput: 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:
-
“Tell me about yourself” (3 minutes)
- Brief introduction with education and skills
-
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”
-
DBMS Questions:
- “What is normalization?”
- “Write SQL query with JOIN”
-
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:
-
“Why Capgemini?”
- Mentioned global presence, diverse projects
- Learning and growth opportunities
-
“Are you comfortable with relocation?”
- Yes, flexible to work from any location
-
“What are your strengths and weaknesses?”
- Strength: Quick learner
- Weakness: Sometimes overthink
-
“Where do you see yourself in 5 years?”
- Technical growth, leadership role
-
“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!