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
3.9

based on 1.9k Reviews

Filter interviews by

Info Edge Software Developer Interview Questions, Process, and Tips

Updated 12 Nov 2024

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

9 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
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

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
-
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
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

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
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

Get interview-ready with Top Info Edge Interview Questions

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...
  • Ans. 

    I make an integer array of size 26 and save the number occurrence of each character in that string. And validated that with the second string. If both contains same number of occurrences for each character than it is anagram.

  • Answered Anonymously
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)?
  • Ans. 

    Tip 1 : Explain what is oops?
    Tip 2 : List the major concepts of oops.
    Tip 3 : Explain each concept in brief and clarity.

  • Answered Anonymously
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...

  • Ans. 

    A direct approach would be to use an additional empty array of size n, where n is the size of the input array. Manage two pointers, one at the starting index of the input array and another one at the endpoint. Copy the last element of the array first, in the additional array, then the first element of the array, and increment both the pointers one index further. Follow the same pattern unless the start pointer becomes ...

  • Answered Anonymously
  • 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...

  • Ans. 

    In pattern based programs, two things need to be taken care of : No. of lines and If the pattern is increasing or decreasing per line. 
    Pseudo Code :
    printPattern(n) :
    num = 1;
    gap = n - 1;
    for (j=1 to n , j++):
    {
    num = j;
    for (i=1 to gap, i++)
    print(" ")
    gap --;
    for (i=1 to j, i++)
    {
    print num
    num++;
    }
    num--;
    num--;
    for (i=1 to i {
    print num
    num--;
    }
    print new line
    }

  • Answered Anonymously
  • Q2. What is the difference between a web server and an application server?
  • Ans. 

    Web Server: It is a computer program that accepts the request for data and sends the specified documents. Web server may be a computer where the online content is kept. Example :Resin
    Application server: It encompasses Web container as well as EJB container. Application servers organize the run atmosphere for enterprises applications. Example : Web logic

  • Answered Anonymously
  • Q3. How does the internet work?
  • Ans. 

    There are two main concepts that are fundamental to the way the Internet functions: packets and protocols. 
    Packets: In networking, a packet is a small segment of a larger message. Each packet contains both data and information about that data. The information about the packet's contents is known as the "header," and it goes at the front of the packet so that the receiving machine knows what to do with the packet.
    P...

  • Answered Anonymously
  • Q4. Write a SQL query to find the nth highest salary.
  • Ans. 

    TOP keyword can be used to find the nth highest salary. By default ORDER BY clause print rows in ascending order, since we need the highest salary at the top, we have used ORDER BY DESC, which will display salaries in descending order. Again DISTINCT is used to remove duplicates. The outer query will then pick the topmost salary, which would be your Nth highest salary.
    SQL query : 
    SELECT TOP 1 salary
    FROM ( 
    SEL...

  • Answered Anonymously
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

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - HR 

(5 Questions)

  • Q1. Why Amazon Software Developer?
  • Ans. 

    Amazon offers challenging projects, innovative technologies, and a collaborative work environment.

    • Opportunity to work on cutting-edge projects like Amazon Web Services (AWS) or Alexa

    • Access to vast resources and tools for development

    • Collaborative work culture that encourages learning and growth

    • Opportunity to impact millions of customers worldwide

    • Competitive compensation and benefits package

  • Answered by AI
  • Q2. Why do you want to work at amazon ?
  • Ans. 

    I want to work at Amazon because of their innovative culture, vast resources, and opportunities for growth.

    • Amazon is known for its innovative culture and cutting-edge technology.

    • They have vast resources and a global reach, providing opportunities to work on impactful projects.

    • Amazon offers great career growth and development opportunities for software developers.

    • I admire Amazon's customer-centric approach and focus on

  • Answered by AI
  • Q3. What are your strengths and weakness?
  • Ans. 

    My strengths include problem-solving skills and attention to detail. My weakness is sometimes being too critical of my own work.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Weakness: being too critical of my own work

  • Answered by AI
  • Q4. How would you solve?
  • Ans. 

    I would solve the problem by breaking it down into smaller tasks, analyzing requirements, designing a solution, coding, testing, and debugging.

    • Analyze requirements thoroughly before starting the development process

    • Break down the problem into smaller tasks to make it more manageable

    • Design a solution architecture that meets the requirements and is scalable

    • Code the solution using best practices and coding standards

    • Test th...

  • Answered by AI
  • Q5. What are the short term and long-term for teame or organisation?
  • Ans. 

    Short term goals focus on immediate tasks and objectives, while long-term goals involve strategic planning and growth.

    • Short term goals may include completing a specific project, improving team communication, or implementing a new software feature.

    • Long-term goals could involve expanding the team, increasing market share, or developing new products or services.

    • Short term goals help keep the team focused and motivated, wh...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Amazon Software Developer interview:
  • Excel
  • Data Entry
  • Project Management
  • Ms World
  • Programming
  • Google software developer
  • Microsoft software developer
Interview preparation tips for other job seekers - Here are some tips and advice for seekers looking to land a role at amazon software developer....
1. Understand Amazon's culture:?
2. Review job description ?
3.update your resume.? B
INTERVIEW PREPARATION
1.Research the team and role ?
2. Prepare to talk about your experience?
3.How would you solve?
4.What are your strengths and weakness?

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 6 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 113 salaries
₹5.9 L/yr - ₹20.4 L/yr
47% 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
677 salaries
unlock blur

₹2.6 L/yr - ₹7.7 L/yr

Assistant Manager
598 salaries
unlock blur

₹3.3 L/yr - ₹9.5 L/yr

Associate Senior Executive
572 salaries
unlock blur

₹2 L/yr - ₹6.2 L/yr

Sales Executive
448 salaries
unlock blur

₹3.9 L/yr - ₹10 L/yr

Senior Software Engineer
337 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