Capgemini

Capgemini

Global leader in partnering with companies to transform and manage their business by harnessing the power of technology.

4 Rounds ~21 Days Medium
Start Mock Interview

The Interview Loop

Recruiter Screen (30 min)

Standard fit check, behavioral questions, and resume overview.

Technical Loop (3-4 Rounds)

Deep dive into domain knowledge, coding, and system design.

Interview Question Bank

Backend Engineer Coding easy

Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.

#Stack #Strings
Backend Engineer Coding easy

Given an array of integers and a target sum, return the indices of the two numbers that add up to the target. Optimize for time complexity.

#Arrays #Hash Table
Backend Engineer Coding medium

Given an array of intervals, merge all overlapping intervals and return an array of the non-overlapping intervals.

#Arrays #Sorting
Backend Engineer Coding medium

Given a string, find the length of the longest substring without repeating characters.

#Strings #Sliding Window
Backend Engineer Coding medium

Given an array of strings, group the anagrams together. You can return the answer in any order.

#Strings #Hash Table
Backend Engineer Coding hard

Given the head of a linked list, reverse the nodes of the list k at a time, and return the modified list.

#Linked List #Recursion
Backend Engineer Coding medium

Find the Kth largest element in an unsorted array. Can you do it in O(N) time complexity on average?

#Arrays #Heap #Quickselect
Cloud Engineer Coding easy

Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.

#Arrays #Hash Maps
Cloud Engineer Coding medium

Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.

#Stacks #Strings
Data Engineer Coding easy

Write a Python function to check if a given string is a valid palindrome, ignoring spaces, case, and special characters.

#Python #String Manipulation
Data Engineer Coding medium

Implement a Python function to find the length of the longest substring without repeating characters.

#Python #Sliding Window
Data Scientist Coding hard

Implement a Python function to calculate the TF-IDF scores for a given corpus of documents from scratch (without using scikit-learn).

#Python #NLP #Math Implementation
Data Scientist Coding medium

Given a list of strings, write a Python program to group anagrams together.

#Python #Hash Maps #String Manipulation
Data Scientist Coding medium

Write a Python function to find the longest palindromic substring in a given string.

#Python #Dynamic Programming #String Manipulation
DevOps Engineer Coding easy

Write a Python function to check if a given string is a palindrome, ignoring spaces and case.

#Python #Strings
Full Stack Engineer Coding easy

Reverse a singly linked list.

#Linked Lists #Pointers
Full Stack Engineer Coding easy

Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.

#Arrays #Hash Table
Full Stack Engineer Coding medium

Find the length of the longest substring without repeating characters.

#Strings #Sliding Window #Hash Set
Full Stack Engineer Coding medium

Given an array of intervals where intervals[i] = [starti, endi], merge all overlapping intervals.

#Arrays #Sorting
Full Stack Engineer Coding easy

Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.

#Strings #Stack
Machine Learning Engineer Coding hard

Implement a basic K-Means clustering algorithm from scratch in Python using NumPy.

#Python #NumPy #Machine Learning Algorithms
Machine Learning Engineer Coding medium

Write a Python function to merge overlapping intervals from a list of time intervals.

#Python #Arrays #Sorting
Machine Learning Engineer Coding medium

Find the top K most frequent elements in an array of user interaction logs.

#Python #Heaps #Hash Maps
Machine Learning Engineer Coding hard

Write a Python function to calculate the TF-IDF scores for a given list of text documents without using Scikit-Learn.

#Python #NLP #Math
Software Engineer Coding medium

Write a program to group anagrams from an array of strings.

#Strings #Hash Map #Sorting
Software Engineer Coding medium

Check if a given binary tree is a valid Binary Search Tree (BST).

#Trees #DFS #Recursion
Software Engineer Coding medium

Find the longest substring without repeating characters.

#Strings #Sliding Window #Hash Set
Software Engineer Coding medium

Write a program to find the maximum subarray sum (Kadane's Algorithm).

#Arrays #Dynamic Programming
Software Engineer Coding easy

Write a program to find the second largest element in an array without sorting it.

#Arrays #Optimization
Software Engineer Coding easy

Reverse a string in place without using any built-in reverse functions.

#Strings #Two Pointers
Software Engineer Coding easy

Merge two sorted linked lists into one sorted linked list.

#Linked Lists #Sorting
Software Engineer Coding easy

Detect a cycle in a linked list.

#Linked Lists #Two Pointers
Software Engineer Coding easy

Find the missing number in an array containing n distinct numbers taken from 0, 1, 2, ..., n.

#Math #Bit Manipulation #Arrays

Difficulty Radar

Based on recent AI-sourced data.

Meet Your Interviewers

The "Standard" Interviewer

Senior Engineer

Focuses on core competencies, system constraints, and clear communication.

Simulate

Unwritten Rules

Think Out Loud

Always explain your thought process before writing code or drawing architecture.

Practice Now