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

Software Engineer

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

Interview preparation journey

expand-icon
Preparation
Duration: 3-4 months
Topics: OOPS, MySQL, SpringBoot, HIbernate, Java8
Tip
Tip

Tip 1 : First have over view of the concepts through theory and then do the practical implementation.
Tip 2 : Make an habit of solving atleast 5-7 problems daily. (Doesn't matter big or small).
Tip 3 : Once you finish a course/topic, always make a project on those with the topics you have covered. This will help you understand what have you grasped properly and what need to be focused on.

Application process
Where: Campus
Eligibility: above 7
Resume Tip
Resume tip

Tip 1 : Always try to highlight your projects that you have made.
Tip 2 : Never lie in the Skill section. Because that's the main section every recruiter/interviewer is keen of. There is no use of mentioning the skills (tech) which you don't poses. That may ultimately put you in unfavorable situation in an interview (as it will make a 'not so good' impression on the interviewer).

Interview rounds

01
Round
Medium
Online Coding Interview
Duration60 minutes
Interview date21 Aug 2020
Coding problem1

The exam was scheduled around 11 am.

1. Bubble Sort

Easy
10m average time
90% success
0/40
Asked in companies
Lenskart.comOptumWells Fargo

Bubble Sort is one of the sorting algorithms that works by repeatedly swapping the adjacent elements of the array if they are not in sorted order.

You are given an unsorted array consisting of N non-negative integers. Your task is to sort the array in non-decreasing order using the Bubble Sort algorithm.

For Example:
Bubble Sort implementation for the given array:  {6,2,8,4,10} is shown below :-

Alt test

Problem approach

Following are the steps involved in bubble sort(for sorting a given array in ascending order):

Starting with the first element(index = 0), compare the current element with the next element of the array.
If the current element is greater than the next element of the array, swap them.
If the current element is less than the next element, move to the next element. Repeat Step 1.
Let's consider an array with values {5, 1, 6, 2, 4, 3}



#include 

void bubbleSort(int arr[], int n)
{
int i, j, temp;
for(i = 0; i < n; i++)
{
for(j = 0; j < n-i-1; j++)
{
if( arr[j] > arr[j+1])
{
// swap the elements
temp = arr[j];
arr[j] = arr[j+1];
arr[j+1] = temp;

}
}

// print the sorted array
printf("Sorted Array: ");
for(i = 0; i < n; i++)
{
printf("%d ", arr[i]);
}
}

int main()
{
int arr[100], i, n, step, temp;
// ask user for number of elements to be sorted
printf("Enter the number of elements to be sorted: ");
scanf("%d", &n);
// input elements if the array
for(i = 0; i < n; i++)
{
printf("Enter element no. %d: ", i+1);
scanf("%d", &arr[i]);
}
// call the function bubbleSort
bubbleSort(arr, n);

return 0;
}

Try solving now
02
Round
Easy
Group Discussion
Duration20 Minutes
Interview date21 Aug 2020
Coding problem0

The interviewer gave us the current topic on Article370. We had have a Group Discussion on that citing the details of Article 370.

03
Round
Easy
HR Round
Duration15 Minutes
Interview date21 May 2022
Coding problem1

In the HR Round, the HR asked some basic questions like give your introduction, why you want to join our company and discussed about the salary structure.

1. Basic HR questions

1. Tell me about yourself.
2. Why we should hire you.
3. Why you want to join our company.
4. Under circumstance x , how would you perform.
5. In absence of a senior, how will you manage client

Problem approach

Tip 1 : be confident
Tip 2 : speak politely
Tip 3 : be firm with your answers, dont change them if interviewer cross - questions you

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
Software Engineer
2 rounds | 3 problems
Interviewed by Capegemini Consulting India Private Limited
0 views
0 comments
0 upvotes
Software Engineer
2 rounds | 7 problems
Interviewed by Capegemini Consulting India Private Limited
676 views
0 comments
0 upvotes
Software Engineer
3 rounds | 5 problems
Interviewed by Capegemini Consulting India Private Limited
553 views
0 comments
0 upvotes
Software Engineer
3 rounds | 5 problems
Interviewed by Capegemini Consulting India Private Limited
569 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Engineer
3 rounds | 7 problems
Interviewed by Optum
7977 views
1 comments
0 upvotes
company logo
Software Engineer
5 rounds | 5 problems
Interviewed by Microsoft
10148 views
1 comments
0 upvotes
company logo
Software Engineer
2 rounds | 4 problems
Interviewed by Amazon
4448 views
1 comments
0 upvotes