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

Network Engineer

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

Interview preparation journey

expand-icon
Preparation
Duration: 9 months
Topics: Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming
Tip
Tip

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do at least 2 projects

Application process
Where: Other
Eligibility:
Resume Tip
Resume tip

Tip 1 : Have some projects on resume
Tip 2 : Do not put false things on resume

Interview rounds

01
Round
Easy
Online Coding Interview
Duration150 minutes
Interview date6 Dec 2022
Coding problem3

This round consists of 30 mcqs and 2 coding question.

1. System Deisgn

What is Network Cabling?

What is a ‘subnet’?

What is DNS?

What is Network Topology?

2. Kth smallest element in an unsorted array

Moderate
15m average time
85% success
0/80
Asked in companies
FlipkartAmazonGrab

Given an unsorted array ‘arr’ of distinct integers and an integer ‘k’, your task is to find the ‘k-th’ smallest element in the array.

Example:
n = 5, k = 2 and arr[] = {6, 5, 4, 8, 7}
The array elements in sorted order are [4, 5, 6, 7, 8]. The ‘2-nd’ smallest element in the array is 5, so the answer is 5.
Note:
1. Don’t print anything. Return the value of ‘k-th’ smallest element.
2. ‘k’ is a positive integer and not greater than the size of the array.
3. The array ‘arr’ is unsorted, and all the elements of the array are distinct.
Problem approach

Follow the given steps to solve the problem:

Sort the input array in the increasing order
Return the element at the K-1 index (0 – Based indexing) in the sorted array

Try solving now

3. Equilibrium Index

Easy
0/40
Asked in companies
GoogleWalmartAdobe

You are given an array Arr consisting of N integers. You need to find the equilibrium index of the array.

An index is considered as an equilibrium index if the sum of elements of the array to the left of that index is equal to the sum of elements to the right of it.

Note:

1. The array follows 0-based indexing, so you need to return the 0-based index of the element.
2. Note that the element at the equilibrium index won’t be considered for either left sum or right sum.
3. If there are multiple indices which satisfy the given condition, then return the left-most index i.e if there are indices i,j,k…. which are equilibrium indices, return the minimum among them
4. If no such index is present in the array, return -1.
Problem approach

Use two loops. The Outer loop iterates through all the element and inner loop finds out whether the current index picked by the outer loop is equilibrium index or not

Try solving now
02
Round
Easy
HR Round
Duration30 minutes
Interview date20 Dec 2022
Coding problem1

1. Basic HR Questions

Tell us about yourself and your family?

Where do you see yourself in 5 years?

Why do you think you are the right choice for this role?

What is your expected salary?

Can you migrate or commute to any other city other than Delhi-NCR?

 

Here's your problem of the day

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

Skill covered: Programming

Which SQL keyword removes duplicate records from a result set?

Choose another skill to practice
Similar interview experiences
Junior analyst
1 rounds | 3 problems
Interviewed by Capegemini Consulting India Private Limited
1291 views
1 comments
0 upvotes
Software Engineer
2 rounds | 3 problems
Interviewed by Capegemini Consulting India Private Limited
0 views
0 comments
0 upvotes
SDE - 1
2 rounds | 3 problems
Interviewed by Capegemini Consulting India Private Limited
352 views
0 comments
0 upvotes
Software Engineer
3 rounds | 5 problems
Interviewed by Capegemini Consulting India Private Limited
437 views
0 comments
0 upvotes