Capegemini Consulting India Private Limited interview experience Real time questions & tips from candidates to crack your interview

SDE - 1

Capegemini Consulting India Private Limited
upvote
share-icon
3 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2 months
Topics: C, C++, Java, OOPs, HMTL, CSS, Javascript, SQL, General Aptitude
Tip
Tip

Tip 1 : You need a strong aptitude for knowledge as a first tip
Tip 2 : Solve questions from previous coding questions
Tip 3 : Make sure your resume includes at least two projects

Application process
Where: Linkedin
Eligibility: None
Resume Tip
Resume tip

Tip 1 : Have at least 2 good projects mentioned in your resume with a link
Tip 2 : Focus on skills, internships, projects, and experiences.
Tip 3 : Make it simple, crisp, and one page

Interview rounds

01
Round
Easy
Online Coding Test
Duration60 Minutes
Interview date9 Jul 2019
Coding problem2

This was an online test taken on the Amcat platform. The online test consists of two easy level coding questions

1. Two Sum

Easy
10m average time
90% success
0/40
Asked in companies
MeeshoAdobeInfo Edge India (Naukri.com)

You are given an array of integers 'ARR' of length 'N' and an integer Target. Your task is to return all pairs of elements such that they add up to Target.

Note:

We cannot use the element at a given index twice.

Follow Up:

Try to do this problem in O(N) time complexity. 
Problem approach

C++:

class Solution {
public:
vector twoSum(vector& nums, int target) {
unordered_mapmpp;
for(int i=0;i {
if(mpp.find(target-nums[i])!=mpp.end())
{
return {mpp[target-nums[i]],i};
}
mpp[nums[i]] = i;
}
return {};

}
};

Try solving now

2. Implement strStr()

Moderate
25m average time
70% success
0/80
Asked in companies
IBMFacebookSamsung R&D Institute

You are given two strings A and B. Find the index of the first occurrence of A in B. If A is not present in B, then return -1.

For Example:
A = “bc”, B = “abcddbc”.
String “A” is present at index 1, and 5(0-based index), but we will return 1 as it is the first occurrence of “A” in string “B”.
Follow Up:
Can you solve this in linear time and space complexity?
Problem approach

class Solution {
public int strStr(String haystack, String needle) {
if(needle.length() == 0 )
return 0;
return haystack.indexOf(needle);
}
}

Try solving now
02
Round
Easy
Video Call
Duration30 Minutes
Interview date16 Aug 2019
Coding problem1

This was first technical round taken on the microsoft teams. It was easy round interviewer asked about the project works and skills related questions.

What is OOPs and gave one real life example
why OOPS is useful? Have you used OOPS in your project
Tell me about the most challenging project
Tell me about the basic pillars of OOPs
Is java donot support multiple inheritance
What is abstraction
what is closure in javascript

1. Check If The String Is A Palindrome

Easy
10m average time
90% success
0/40
Asked in companies
IntuitSprinklrCIS - Cyber Infrastructure

You are given a string 'S'. Your task is to check whether the string is palindrome or not. For checking palindrome, consider alphabets and numbers only and ignore the symbols and whitespaces.

Note :

String 'S' is NOT case sensitive.

Example :

Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.
Problem approach

Solution in C++

bool isPalindrome(string s) {

string temp="";
for(int i=0;i { 
if(iswalnum(s[i]) )
{
temp+=tolower(s[i]);
}
}
bool flag=true;
for(int i=0;i {
if(temp[i]!=temp[temp.length()-1-i])
flag=false; 
}

return flag;
}

Try solving now
03
Round
Easy
HR Round
Duration30 Minutes
Interview date30 Aug 2019
Coding problem1

This was HR round and they asked personal related questions about myself.

1. Basic HR questions

Tell me about yourself 

Tell me about the most challenging project

 Tell me about the basic pillars of OOPs 

Why should we hire you?

 What are your strengths and weakness? 

what are acid properties 

Am I ready to relocate to any location in India

 If you won a 10 crore lottery will you still work? 

What do you prefer flexible timing or fixed timings?

Problem approach

Tip 1: Make sure your resume is up-to-date
Tip 2: Be confident and focus on your communication
Tip 3: Prepare for the behavioral questions

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
SDE - 1
2 rounds | 6 problems
Interviewed by Capegemini Consulting India Private Limited
0 views
0 comments
0 upvotes
SDE - 1
3 rounds | 5 problems
Interviewed by Capegemini Consulting India Private Limited
400 views
0 comments
0 upvotes
SDE - 1
3 rounds | 13 problems
Interviewed by Capegemini Consulting India Private Limited
484 views
0 comments
0 upvotes
SDE - 1
2 rounds | 3 problems
Interviewed by Capegemini Consulting India Private Limited
472 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 1
5 rounds | 12 problems
Interviewed by Amazon
115097 views
24 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
58238 views
5 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
35147 views
7 comments
0 upvotes