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

Software Engineer

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

Interview preparation journey

expand-icon
Preparation
Duration: 3 months
Topics: Data Structures, Algorithms, Computer Networking, Operating Systems, DBMS.
Tip
Tip

Tip 1 : Consistency is most important
Tip 2 : Solve at least one problem daily
Tip 3 : Projects done with good understanding can do wonders in interview.

Application process
Where: Campus
Eligibility: 7 CGPA with no active backlogs
Resume Tip
Resume tip

Tip 1 : Mention things you are really good at, don't lie. 
Tip 2 : Keep it short and crisp, don't forget to highlight things you don't want to miss.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration90 minutes
Interview date15 Mar 2021
Coding problem2

Test was conducted in afternoon at around 12 p.m. 
I gave the test at my home.
There were four sections- Aptitude, Coding ,Automata Fix and Personality
Test was monitored online.

1. MCQ Questions

Mixed type of question for Aptitude on topics like Time and Distance, Percentage, Age Problems etc. Other questions were from OS, Networking, DBMS etc.

Number Of MCQs - 40

2. Two Sum

Easy
10m average time
90% success
0/40
Asked in companies
Chegg Inc.FacebookAmazon

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

The basic idea is to maintain a hash table for each element num in nums, using num as key and its index (0-based) as value. For each num, search for target - num in the hash table. If it is found and is not the same element as num, then we are done.

Try solving now
02
Round
Medium
Online Coding Test
Duration45 minutes
Interview date16 Jun 2022
Coding problem1

The interviewer started with a coding question followed by skills mentioned in the resume and then finally the discussion went on the projects that I mentioned in resume.

1. N-th Node From The End

Easy
10m average time
90% success
0/40
Asked in companies
Thought WorksHikeAmazon

You are given a Singly Linked List of integers. You have to find the N-th node from end.

For Example
If the given list is (1 -> -2 -> 0 -> 4) and N=2:

example

Then the 2nd node from the end is 0.
Problem approach

To solve this, I firstly gave a brute force approach after which the interviewer asked me to give an optimal solution, so I 
gave him the two pointer approach to solve this.
I took two nodes so that one can follow the other i.e. if one node is at index 0, other will be at index 1.
I maintained a count of total number of node to reach the nth node from end. 
Keep increasing the nodes one by one till count does not gets equal to (N-M+1), (N = number of nodes, M = nth node from last).
When count is equal to N-M+1, point the slow node's next to fast node's next and free the fast node.
With this approach the interviewer was satisfied.

Try solving now
03
Round
Easy
HR Round
Duration30 minutes
Interview date16 Jun 2022
Coding problem1

1. Basic HR Questions

Introduce yourself.

What are your hobbies?

What are your expectations from this company?

What are your future goals?

What do you know about us?

Problem approach

Tip 1 : Be confident and speak carefully while being modest but not too much
Tip 2 : Be optimistic and eager to learn and reflect this in interview

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
Software Engineer
3 rounds | 4 problems
Interviewed by Incedo Inc.
716 views
0 comments
0 upvotes
Software Engineer
3 rounds | 7 problems
Interviewed by Incedo Inc.
508 views
0 comments
0 upvotes
Software Engineer
2 rounds | 2 problems
Interviewed by Incedo Inc.
397 views
0 comments
0 upvotes
Software Engineer
2 rounds | 2 problems
Interviewed by Incedo Inc.
553 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Engineer
4 rounds | 1 problems
Interviewed by Newgen Software
3210 views
2 comments
0 upvotes
company logo
Software Engineer
3 rounds | 6 problems
Interviewed by HashedIn
2583 views
0 comments
0 upvotes
company logo
Software Engineer
2 rounds | 2 problems
Interviewed by Ernst & Young (EY)
0 views
0 comments
0 upvotes