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

SDE - Intern

Incedo Inc.
upvote
share-icon
2 rounds | 2 Coding problems

Interview preparation journey

expand-icon
Journey
My journey began by focusing on strong fundamentals in core subjects like OS, DBMS, and Computer Networks during my BTech. Alongside this, I consistently practiced Data Structures and Algorithms, which helped me improve my problem-solving skills over time. I also worked on building a strong resume through relevant projects and skills. During placements, I focused on revising concepts and clearly explaining my thought process rather than memorizing answers. The interviews mainly revolved around my resume, DSA, and core subjects. There were challenges initially, but staying consistent and trusting the process helped me succeed. This experience taught me that strong fundamentals, regular practice, and clear communication are key to cracking interviews.
Application story
I applied for the role through my college placement portal. After submitting my application, I went through an initial screening process that included an online assessment. Based on my performance, I was shortlisted for the interview rounds. The overall process was smooth and well-structured, with clear communication at each stage. After clearing all the required rounds, I received the final offer. The entire journey emphasized consistency in preparation and staying confident throughout the process.
Why selected/rejected for the role?
I believe I was selected because I had a clear understanding of my fundamentals and was able to explain my thought process confidently during the interview. My preparation in Data Structures and Algorithms and core subjects helped me approach questions logically, and I made sure to stay calm and communicate clearly. One key learning from this experience is that interviewers value clarity of concepts and honesty more than perfect answers. Even when I wasn’t completely sure, I focused on explaining my approach rather than guessing. This experience reinforced the importance of strong fundamentals, consistent practice, and effective communication, which I believe are crucial for succeeding in interviews.
Preparation
Duration: 8-10 Months
Topics: Data Structures and Algorithms, Full Stack Web Development, Machine Learning, Data Analysis, OOP, Computer Networks, Operating Systems
Tip
Tip

Tip 1: Focus primarily on DSA and problem-solving.

Tip 2: Improve your development skill set.

Tip 3: Gain good knowledge of core subjects.

Application process
Where: Campus
Eligibility: 80% in 10th and 12th, 9+ CGPA in graduation. (Salary Package: 5.5 LPA)
Resume Tip
Resume tip

Tip 1: Make it formal and professional.

Tip 2: Avoid any grammatical mistakes or errors.

Tip 3: Check your ATS score.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration90 minutes
Interview date1 Sep 2025
Coding problem1

The round consisted of coding and MCQs.

1. Spiral Matrix

Easy
15m average time
80% success
0/40
Asked in companies
AppleOLX GroupOracle

You are given a 2-D array 'MATRIX' of dimensions N x M, of integers. You need to return the spiral path of the matrix.

Example Of Spiral Path:

Spiral path of a matrix

Problem approach

Spiral matrix printing involves traversing a matrix in a clockwise spiral order by maintaining four boundaries: top, bottom, left, and right. Initially, these boundaries represent the outer edges of the matrix. The traversal starts by moving from left to right across the top row, then from top to bottom along the right column, followed by right to left across the bottom row, and finally from bottom to top along the left column. After completing one full layer, the boundaries are adjusted inward (top++, bottom--, left++, right--) to move to the next inner layer. This process continues until all elements are covered, ensuring that conditions are checked before traversing the bottom row and left column to avoid duplicates in cases of single rows or columns.

Try solving now
02
Round
Hard
Face to Face
Duration90 minutes
Interview date10 Sep 2025
Coding problem1

1. Reverse Linked List

Easy
15m average time
85% success
0/40
Asked in companies
IBMBig BasketSAP Labs
Note :
You do not need to print anything, just return the head of the reversed linked list. 
Problem approach

Reversing a linked list involves changing the direction of the next pointers so that each node points to its previous node instead of the next one. The idea is to traverse the list once while keeping track of three pointers: prev (initially NULL), curr (starting at the head), and next (to temporarily store the next node).

At each step, you store curr->next in next, then reverse the link by pointing curr->next to prev. After that, move prev to curr and curr to next. This process continues until curr becomes NULL. At the end, prev will be the new head of the reversed linked list.

This approach works in O(n) time and uses O(1) extra space.

Try solving now

Here's your problem of the day

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

Skill covered: Programming

Which data structure is used to implement a DFS?

Choose another skill to practice
Similar interview experiences
SDE - Intern
3 rounds | 1 problems
Interviewed by Incedo Inc.
1828 views
0 comments
0 upvotes
SDE - 1
2 rounds | 9 problems
Interviewed by Incedo Inc.
0 views
0 comments
0 upvotes
SDE - Intern
2 rounds | 3 problems
Interviewed by Incedo Inc.
686 views
0 comments
0 upvotes
SDE - Intern
3 rounds | 6 problems
Interviewed by Incedo Inc.
468 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - Intern
2 rounds | 4 problems
Interviewed by Arcesium
3754 views
0 comments
0 upvotes
company logo
SDE - Intern
3 rounds | 5 problems
Interviewed by Arcesium
2693 views
0 comments
0 upvotes
company logo
SDE - Intern
3 rounds | 5 problems
Interviewed by BNY Mellon
2359 views
0 comments
0 upvotes