InfoEdge India Private Limitied interview experience Real time questions & tips from candidates to crack your interview

SDE - Intern

InfoEdge India Private Limitied
upvote
share-icon
5 rounds | 7 Coding problems

Interview preparation journey

expand-icon
Journey
So, I started my DSA journey late in college, around the end of my third year. I followed Striver’s A to Z DSA sheet and initially tried competitive programming, but I couldn’t continue with it.
Application story
So, in January 2025, we came to know about a Python Developer Intern profile at InfoEdge through Naukri, which was for 6 months. We applied, and then they shortlisted some students for the online assessment.
Why selected/rejected for the role?
Yes, I got selected for a 6-month apprenticeship as a Python Developer along with two others for the same profile. Our joining was in late January, and the apprenticeship ended in July 2025.
Preparation
Duration: 2 Months
Topics: DSA, Programming, Web Development, Projects, Generative AI, Basics of System Design
Tip
Tip

Tip 1: Stick to DSA.

Tip 2: Know your projects in detail, including every line of code.

Tip 3: Have a decent understanding of web development and basic knowledge of HLD and Generative AI.

Application process
Where: Naukri
Eligibility: No criteria, (Salary - 30k stipend)
Resume Tip
Resume tip

Tip 1: Include deployed projects.

Tip 2: Don’t write anything you don’t know.

Interview rounds

01
Round
Easy
Online Coding Interview
Duration60 minutes
Interview date13 Jan 2025
Coding problem1

It consisted of aptitude, English, and one coding question, which had to be done only in Python.

1. Maximum Consecutive Ones

Moderate
30m average time
70% success
0/80
Asked in companies
DelhiveryPayUAmazon

Given a binary array 'ARR' of size 'N', your task is to find the longest sequence of continuous 1’s that can be formed by replacing at-most 'K' zeroes by ones. Return the length of this longest sequence of continuous 1’s.

Try solving now
02
Round
Easy
Face to Face
Duration60 minutes
Interview date13 Jan 2025
Coding problem3

It was to be given onsite at around 10 AM. It was purely based on data structures. There were three problems given to us to solve in any language of our choice.

1. Combination Sum II

Moderate
30m average time
70% success
0/80
Asked in companies
UberAdobeInfoEdge India Private Limitied

You are given an array ‘arr’ of ‘n’ positive integers.


You are also given a positive integer ‘target’.


Your task is to find all unique combinations of elements of array ‘arr’ whose sum is equal to ‘target’. Each number in ‘arr’ may only be used once in the combination.


Elements in each combination must be in non-decreasing order and you need to print all unique combinations in lexicographical order.


Note:
In lexicographical order, combination/array  ‘a’  comes before array ‘b’ if at the first index 'i' where 'a[i]' differs from 'b[i]', 'a[i]' < 'b[i]  or length of 'a' is less than 'b'.


Example:
Input: ‘arr’ = [1, 2, 3, 1], ‘target’ = 5. 

Output: [[1,1,3], [2,3]]

Explanation:
All possible valid combinations with sum = 5 in lexicographical order are -:
(1, 1, 3)
(2, 3)


Try solving now

2. Remove Duplicates

Easy
15m average time
80% success
0/40
Asked in companies
AmazonGE (General Electric)Info Edge India (Naukri.com)

Ninja is playing with numbers but hates when he gets duplicate numbers. Ninja is provided an array, and he wants to remove all duplicate elements and return the array, but he has to maintain the order in which the elements were supplied to him.

Try solving now

3. Search Insert Position

Easy
10m average time
85% success
0/40
Asked in companies
HikeUberNineleaps Technologies

You are given a sorted array 'arr' of distinct values and a target value 'm'. You need to search for the index of the target value in the array.


Note:
1. If the value is present in the array, return its index.
2. If the value is absent, determine the index where it would be inserted in the array while maintaining the sorted order. 
3. The given array has distinct integers.
4. The given array may be empty.



Example:
Input:  arr = [1, 2, 4, 7],  m = 6 

Output: 3

Explanation: If the given array 'arr' is: [1, 2, 4, 7] and m = 6. We insert m = 6 in the array and get 'arr' as: [1, 2, 4, 6, 7]. The position of 6 is 3 (according to 0-based indexing)


Try solving now
03
Round
Easy
Face to Face
Duration60 minutes
Interview date27 Jan 2025
Coding problem1

This round was based on my resume and was quite grilling. I was asked questions on C, C++, React, JavaScript, Express, MongoDB, SQL, Python, and Java.

There were two interviewers—one was a Software Engineer and the other was his manager. They asked me about middleware, which port React runs on, the difference between public and default access modifiers in Java, what a generator is in Python, how to handle exceptions in Python, multiple inheritance, promises, and output-based questions on let, var, and const.

They also asked about closures, prop drilling, the difference between state and props, function scope vs block scope variables, callback hell, and the difference between arrow functions and normal functions.

1. Theoretical and Output based

The interview was mainly based on the resume.

 

04
Round
Easy
Face to Face
Duration30 minutes
Interview date27 Jan 2025
Coding problem1

The environment was quite chill. This round was conducted by the Vice President of Operations at InfoEdge.

1. Project Discussion

He asked me about my project. He asked which database I would use to log user details and why. Then, he asked me to explain the architecture of the project.

05
Round
Easy
Face to Face
Duration20 minutes
Interview date27 Jan 2025
Coding problem1

This round was conducted by the Senior Vice President of Product and Operations. He was a former Amazon employee, so he asked me good technical questions. By this round, it was already 8 PM.

1. Find Water In A Glass

Moderate
25m average time
60% success
0/80
Asked in company
InfoEdge India Private Limitied

Eric has an arrangement of infinite glasses, similar to a pascal’s triangle, as shown below.

         1
      2    3
   4    5    6
7    8     9    10 … and so on 

The glasses are all empty and can contain exactly 1 Litre of water each. You can pour water only on the topmost glass (glass with number 1).

When the topmost glass 1 is full, the remaining water will fall into glasses 2 and 3.

For example, if you pour 2 Litres of water,

Glass 1 will be completely full after 1 Litre is poured,

The second litre of water will then flow to glasses 2 and 3, filling 0.5 Litres in both of these glasses.

Eric wants you to find the amount of water in ‘M’th glass in the ‘N’th row, if you are allowed to pour exactly ‘W’ Litres of water.

Find the amount of water in Litres in the ‘M’ glass in the ‘N’th row.

Example:
Input: ‘N’ = ‘2’,  'M' = ‘2’, ‘W’ = ‘2’ 

Output: 0.5

   1
 2   3

In the above example, glass ‘1’ is completely filled after 1 litre of water is poured into it. Then the remaining water is dropped into glasses 2 and 3, filling half of each of them. 
Hence, the 2nd glass in the 2nd row is Glass 3, which has 0.5L of water.  
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
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
5027 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 5 problems
Interviewed by Meesho
6697 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
3720 views
0 comments
0 upvotes
company logo
SDE - Intern
4 rounds | 7 problems
Interviewed by InfoEdge India Private Limitied
45 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - Intern
3 rounds | 6 problems
Interviewed by Amazon
15659 views
4 comments
0 upvotes
company logo
SDE - Intern
4 rounds | 7 problems
Interviewed by Microsoft
15563 views
1 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 4 problems
Interviewed by Amazon
10248 views
2 comments
0 upvotes