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

Software Engineer Trainee

Incedo Inc.
upvote
share-icon
4 rounds | 15 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2 months
Topics: Data structures and Algorithms, Python Programming, Aptitude, Object Oriented Programming, and SQL.
Tip
Tip

Tip 1 : Prepare Aptitude from Indiabix
Tip 2 : Learn theoretical concepts of your preferred programming language 
Tip 3 : Prepare Strings and array questions for online coding rounds

Application process
Where: Campus
Eligibility: Above 65% with no backlogs
Resume Tip
Resume tip

Tip 1 : Mention some development projects
Tip 2 : Try to make a simple resume with relevant skills related to your job profile

Interview rounds

01
Round
Easy
Online Coding Interview
Duration120 minutes
Interview date6 Mar 2021
Coding problem2

1. Set Matrix Zeros

Easy
30m average time
65% success
0/40
Asked in companies
AmazonDunzoGoldman Sachs

You are given an N x M integer matrix. Your task is to modify this matrix in place so that if any cell contains the value 0, then all cells in the same row and column as that cell should also be set to 0.

Requirements:

  • If a cell in the matrix has the value 0, set all other cells in that cell's row and column to 0.
  • You should perform this modification in place (without using additional matrices).

You must do it in place.

For Example:

If the given grid is this:
[7, 19, 3]
[4, 21, 0]

Then the modified grid will be:
[7, 19, 0]
[0, 0,  0]
Problem approach

Step 1 : I solve this problem with brute force approach. 
Step 2 : I transverse through all elements of the matrix using loops.
Step 3 : I change the value of entire row and column to zero if I find any zero element.

Try solving now

2. Trapping Rain Water

Moderate
15m average time
80% success
0/80
Asked in companies
RazorpayMorgan StanleyUber

You have been given a long type array/list 'arr’ of size 'n’.


It represents an elevation map wherein 'arr[i]’ denotes the elevation of the 'ith' bar.



Note :
The width of each bar is the same and is equal to 1.
Example:
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].

Output: 10

Explanation: Refer to the image for better comprehension:

Alt Text

Note :
You don't need to print anything. It has already been taken care of. Just implement the given function.
Problem approach

Step 1 : Traverse the array from start to end.
Step 2 : For every element, traverse the array from start to that index and find the maximum height.

Step 3 : traverse the array from the current index to end, and find the maximum height (b).The amount of water that will be stored in this column is min(a,b) - array[i], add this value to the total amount of water stored
Step 4 : Print the total amount of water stored.

Try solving now
02
Round
Easy
Video Call
Duration45 minutes
Interview date8 Mar 2021
Coding problem5

1. OOPS Question

What is object oriented programming give real life examples of different type of OOPS concept?

2. OOPS Question

What is inheritance and its types?

3. OOPS and Python Question

Different types of overriding method. 

What is Super() in python?

4. Python Question

What is lambda function?

5. Puzzle Question

If you are a owner of panipuri shop. Where would you open the shop to gain maximum profit?

03
Round
Easy
Video Call
Duration30 minutes
Interview date11 Mar 2021
Coding problem6

This round is also known as leadership discussion round in which one of their senior leader will judge you whether you are a good fit or not

1. Technical Question

Introduce yourself. Why you wanted to be in software industry?

2. Technical Question

Where would you see yourself in five years?

3. Technical Question

What is success for you?

4. Technical Question

What are your weaknesses and how you are overcoming them?

5. Technical Question

What will you give to the company and what will the company will give you if we hire you?

6. Technical Question

Did you ever participated in a Hackathon? What was your experience there?

04
Round
Easy
HR Round
Duration15 minutes
Interview date11 Mar 2021
Coding problem2

1. Basic HR Question

Introduce yourself and why you want to join Incedo?

2. Basic HR Question

Core values of incedo. After that she told me about the salary and various activities that Incedo does for his employee.

Problem approach

Tip 1 : Learn about Incedo a bit through their website

Here's your problem of the day

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

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
SDE - 1
2 rounds | 9 problems
Interviewed by Incedo Inc.
0 views
0 comments
0 upvotes
Software Engineer Trainee
3 rounds | 3 problems
Interviewed by Incedo Inc.
403 views
1 comments
0 upvotes
Software Engineer Trainee
3 rounds | 10 problems
Interviewed by Incedo Inc.
454 views
0 comments
0 upvotes
SDE - Intern
2 rounds | 3 problems
Interviewed by Incedo Inc.
643 views
0 comments
0 upvotes