Premium Employer

i

This company page is being actively managed by Info Edge Team. If you also belong to the team, you can get access from here

Info Edge Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Info Edge Software Developer Interview Questions, Process, and Tips

Updated 20 Jan 2025

Top Info Edge Software Developer Interview Questions and Answers

  • Q1. Rearrange Array Elements Problem Statement Given an array A containing 'N' integers and an integer m , rearrange the elements of the array such that the differences betw ...read more
  • Q2. Anagram Pairs Problem Statement Determine if two given strings are anagram pairs. Two strings are anagrams if the letters of one can be rearranged to form the other. Inp ...read more
  • Q3. Print Nodes at Distance K from a Given Node Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the spec ...read more
View all 9 questions

Info Edge Software Developer Interview Experiences

10 interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indraprastha Institute of Information Technology (IIIT), Delhi and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Maximum Sum Subarray
  • Q2. Insert node in binary search tree
  • Ans. 

    To insert a node in a binary search tree, compare the value of the node to be inserted with the current node and traverse left or right accordingly.

    • Start at the root node and compare the value of the node to be inserted with the current node.

    • If the value is less than the current node, move to the left child node. If it is greater, move to the right child node.

    • Repeat this process until reaching a leaf node, then insert ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

There were three easy to medium-level coding questions, and they were sourced from LeetCode.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Assignment 

Coding test and scenario based question

Round 2 - Coding Test 

Coding test and sceanrio based question

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Intro your self
  • Q2. Brief your work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to go

Info Edge interview questions for designations

 Software Developer Intern

 (2)

 Software Engineer

 (29)

 Software Tester

 (2)

 Product Developer

 (2)

 Backend Developer

 (1)

 Java Developer

 (1)

 Database Developer

 (1)

 Senior Software Engineer

 (8)

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Aptitude,reasoning,english skills

Round 2 - Technical 

(1 Question)

  • Q1. OOPs concept, Programming
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Get interview-ready with Top Info Edge Interview Questions

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

More questions but very easy

Round 2 - Coding Test 

Create a simple software in 2 hours

Interview Preparation Tips

Interview preparation tips for other job seekers - Good and grow well

I was interviewed in Dec 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

It consists of questions based on array, string and Hashmap.

  • Q1. 

    Anagram Pairs Problem Statement

    Determine if two given strings are anagram pairs. Two strings are anagrams if the letters of one can be rearranged to form the other.

    Input:

    The input consists of a singl...
Round 2 - Telephonic Call 

(1 Question)

Round duration - 20 minutes
Round difficulty - Easy

Basic oops and SQL questions were asked

  • Q1. Can you explain the concepts of Object-Oriented Programming (OOP)?
Round 3 - Face to Face 

Round duration - 60 minutes
Round difficulty - Medium

Contains both coding as well as puzzles

Round 4 - HR 

Round duration - 20 minutes
Round difficulty - Easy

Basic discussion why you want to join info edge. What are your strength and weakness. What you want to do when you join. What motivates you and how info edge will help you?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaInfo Edge India (Naukri.com) interview preparation:Topics to prepare for the interview - Data structures till HashMap & linked list, OOPS, Puzzles and Basic AlgorithmTime required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have clarity of oops concepts including exception handling
Tip 2 : Do not add something in resume which you don't know
Tip 3 : Understand question properly and asked for help if needed while giving interview.

Application resume tips for other job seekers

Tip 1 : Highlight the hands-on experience
Tip 2 : Resume should show your work & skill with clarity

Final outcome of the interviewSelected

Skills evaluated in this interview

Round 1 - Technical 

(2 Questions)

  • Q1. What’s your name & experience
  • Q2. Do you ready for job

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t like this app & company works improved your business management

I applied via Job Portal and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Data structure
  • Q2. Java concepts
  • Q3. Handson coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Get handson in any language but be confident

I was interviewed before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Two coding questions were given in the first round to be solved in 60 minutes.

  • Q1. 

    Rearrange Array Elements Problem Statement

    Given an array A containing 'N' integers and an integer m, rearrange the elements of the array such that the differences between the array elements and m are sor...

  • Q2. 

    Print Nodes at Distance K from a Given Node

    Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the specified node, and return a list of th...

  • Ans. 

    The task is to find all nodes in a binary tree that are at a distance K from a given node.

    • Traverse the binary tree to find the given node

    • From the given node, perform a depth-first search to find all nodes at distance K

    • Use a list to store the values of the nodes at distance K

    • Return the list of values in any order

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions based on DSA, DBMS, Computer Networking and project based questions.

  • Q1. 

    Triangle of Numbers Pattern

    Ninja is tasked with printing a triangle pattern based on a given number 'N' for any test case.

    Example:

    Input:
    N = 4
    Output:
       1
    232
    34545
    4567654

    Explanation:

    The pat...

  • Q2. What is the difference between a web server and an application server?
  • Q3. How does the internet work?
  • Q4. Write a SQL query to find the nth highest salary.
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Chitkara University. Eligibility criteriaAbove 7 CGPAInfo Edge India (Naukri.com) interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Info Edge Interview FAQs

How many rounds are there in Info Edge Software Developer interview?
Info Edge interview process usually has 1-2 rounds. The most common rounds in the Info Edge interview process are Coding Test, Technical and HR.
How to prepare for Info Edge Software Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Info Edge. The most common topics and skills that interviewers at Info Edge expect are Java, Apache, Automation Testing, LAMP and Linux.
What are the top questions asked in Info Edge Software Developer interview?

Some of the top questions asked at the Info Edge Software Developer interview -

  1. Insert node in binary search t...read more
  2. Data structu...read more
  3. OOPs concept, Programm...read more

Tell us how to improve this page.

Info Edge Software Developer Interview Process

based on 7 interviews

1 Interview rounds

  • Coding Test Round
View more
Join Info Edge India’s first internet classifieds company.
Info Edge Software Developer Salary
based on 111 salaries
₹6.2 L/yr - ₹20.4 L/yr
59% more than the average Software Developer Salary in India
View more details

Info Edge Software Developer Reviews and Ratings

based on 29 reviews

3.9/5

Rating in categories

3.6

Skill development

3.4

Work-life balance

3.5

Salary

3.8

Job security

3.2

Company culture

3.5

Promotions

3.4

Work satisfaction

Explore 29 Reviews and Ratings
Senior Executive
744 salaries
unlock blur

₹2.5 L/yr - ₹7.7 L/yr

Assistant Manager
597 salaries
unlock blur

₹3.5 L/yr - ₹9.5 L/yr

Associate Senior Executive
573 salaries
unlock blur

₹2.2 L/yr - ₹6.5 L/yr

Sales Executive
448 salaries
unlock blur

₹3.9 L/yr - ₹10 L/yr

Senior Software Engineer
344 salaries
unlock blur

₹10 L/yr - ₹27.5 L/yr

Explore more salaries
Compare Info Edge with

TCS

3.7
Compare

JustDial

3.5
Compare

Indiamart Intermesh

3.6
Compare

PolicyBazaar

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview