Incedo Inc. interview experience Real time questions & tips from candidates to crack your interview

Software Engineer

Incedo Inc.
upvote
share-icon
3 rounds | 7 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 8 months
Topics: Data Structures, Algorithms, Oops, C++, Leetcode
Tip
Tip

Tip 1 : Be regular in whatever you have started
Tip 2 : Accept challenges and try to do it on your own. Will take time but will be fruitful later
Tip 3 : Practice with some mock interviews also you can refer some interview questions

Application process
Where: Campus
Eligibility: no criteria
Resume Tip
Resume tip

Tip 1 : Try to Mention facts like your achivements in competitions.
Tip 2 : Don't try to bulk your skills instead mention those which you are most confortable with.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration60 Minutes
Interview date27 Dec 2021
Coding problem1

1. Sort 0 1 2

Easy
22m average time
0/40
Asked in companies
Expedia GroupWalmartHCL Technologies

You have been given an integer array/list(ARR) of size 'N'. It only contains 0s, 1s and 2s. Write a solution to sort this array/list.

Note :
Try to solve the problem in 'Single Scan'. ' Single Scan' refers to iterating over the array/list just once or to put it in other words, you will be visiting each element in the array/list just once.
Try solving now
02
Round
Easy
Online Coding Test
Duration60 minutes
Interview date28 Jul 2022
Coding problem2

1. Reverse the array

Easy
0/40
Asked in companies
CIS - Cyber InfrastructureBNY MellonHCL Technologies

Given an array with N elements, the task is to reverse all the array elements and print the reversed array.

Problem approach

Step 1: make two pointers i and j pointed to first and last. swap the locations and shift the pointers i to next and j to prev. Continue untill i is smaller than j.
Step 2: Interviewer asked me to code.
Step 3: I did the code

Try solving now

2. Count Smaller or Equal elements in array

Moderate
25m average time
70% success
0/80
Asked in companies
OlaMathworksIncedo Inc.

You are given two arrays of integers. Let's call the first array A and the second array B. A finds the number of elements in array B that are smaller than or equal to that element for every array element.

For example:
A = [2, 3, 0] , B = [5, 1]

For the first index, A[0] = 2
In array B only 1 is less than 2. Therefore the answer for the first index is 1.

For the second index, A[1] = 3
In array B only 1 is less than 3. Therefore the answer for the second index is also 1.

For the third index, A[2] = 0
Both the elements of array B are greater than 0. 
Therefore the answer for the third index is 0.

Hence, the final answer is [1,1,0] in this case.
Problem approach

Step 1: brute force approach is to go through all the numbers and check how many are greater than x.
Step 2: Interviewer asked me to optimize
Step 2: Then I tell him about the second approach which is to sort the array in ascending order and then apply binary search on x. Then return 
total size of array minus the index (1 based)

Try solving now
03
Round
Easy
Video Call
Duration60 minutes
Interview date29 Jul 2022
Coding problem4

It was technical + hr round

1. Oops Based Questions

Concepts about oops like what are main features (encapsulation, abstraction, inheritance and polymorphism.) what is polymorphism and its types

2. OOPS based Questions

What is union and how it differ from struct

3. Puzzle

There is a rope which can burn totally in an hour and you have a matchstick to ignite the rope. How to calculate 45 minutes by using the rope

Problem approach

Tip 1: cut the rope in two pieces
Tip 2: burn one pice from both ends 
Tip 3: after the piece is completely burned ignite the other piece from single end

4. Basic HR Question

Suppose you are working on some problem in your company and you get stuck at something and you don't know how to solve this. How will you handle the situation ?

Problem approach

I gave following answers 
Tip 1 : I will google the similar problem and see if there is any solution for this
Tip 2 : I will ask my senior for help and discuss it with him
Interviewer is still asking for some more answers which I said I am not able to think any other

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
3 rounds | 4 problems
Interviewed by Incedo Inc.
838 views
0 comments
0 upvotes
Software Engineer
3 rounds | 4 problems
Interviewed by Incedo Inc.
745 views
0 comments
0 upvotes
Software Engineer
2 rounds | 2 problems
Interviewed by Incedo Inc.
416 views
0 comments
0 upvotes
Software Engineer
2 rounds | 2 problems
Interviewed by Incedo Inc.
586 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Engineer
4 rounds | 1 problems
Interviewed by Newgen Software
3266 views
2 comments
0 upvotes
company logo
Software Engineer
3 rounds | 6 problems
Interviewed by HashedIn
2644 views
0 comments
0 upvotes
company logo
Software Engineer
2 rounds | 2 problems
Interviewed by Ernst & Young (EY)
0 views
0 comments
0 upvotes