AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
logo
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 Work with us arrow

Compare button icon Compare button icon Compare
3.9

based on 2.1k Reviews

  • Why join us
  • Reviews
    2.1k
  • Salaries
    10.9k
  • Interviews
    344
  • Jobs
    466
  • Benefits
    318
  • Photos
    18
  • Posts
    6

Filter interviews by

Info Edge Software Engineer Interview Questions and Answers

Updated 9 Jun 2025

60 Interview questions

A Software Engineer was asked 1mo ago
Q. What is the dynamic programming approach to solving the Sudoku puzzle?
Ans. 

Dynamic programming for Sudoku involves breaking down the problem into smaller subproblems and solving them efficiently.

  • Backtracking: Use a backtracking algorithm to fill the Sudoku grid, trying numbers 1-9 in empty cells and checking for validity.

  • State Representation: Represent the Sudoku board as a 2D array, where each cell can hold a number from 1 to 9 or be empty.

  • Memoization: Store previously computed states t...

A Software Engineer was asked 1mo ago
Q. What is Dijkstra's algorithm and how is it applied to graph theory?
Ans. 

Dijkstra's algorithm finds the shortest path between nodes in a graph, optimizing route selection in various applications.

  • Graph Representation: Dijkstra's algorithm works on weighted graphs, where edges have non-negative weights, representing distances or costs.

  • Initialization: It starts by setting the initial node's distance to zero and all others to infinity, marking the initial node as visited.

  • Relaxation Process...

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
View answers (268)
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
View answers (527)
asked in Tech Mahindra
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
View answers (81)
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
View answers (22)
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
View answers (9)
View All
A Software Engineer was asked 3mo ago
Q. Are you proficient in Excel?
Ans. 

Yes, I am proficient in Excel and can utilize its features for data analysis and reporting.

  • I can create complex formulas, such as VLOOKUP and INDEX-MATCH, to analyze data efficiently.

  • I am skilled in using pivot tables to summarize large datasets and extract meaningful insights.

  • I can create visually appealing charts and graphs to present data clearly.

  • I am familiar with data validation techniques to ensure data inte...

A Software Engineer was asked 9mo ago
Q. How do you cope with stress?
Ans. 

To cope with stress, it is important to practice self-care, seek support from others, and engage in stress-relieving activities.

  • Practice self-care by getting enough sleep, eating well, and exercising regularly.

  • Seek support from friends, family, or a therapist to talk about your feelings and get advice.

  • Engage in stress-relieving activities such as meditation, yoga, or hobbies you enjoy.

  • Set boundaries and prioritize...

A Software Engineer was asked 10mo ago
Q. Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.
Ans. 

A palindrome is a string that reads the same forwards and backwards, like 'racecar' or 'level'.

  • A simple way to check for a palindrome is to reverse the string and compare it to the original.

  • Example: 'madam' reversed is 'madam', so it's a palindrome.

  • Ignoring spaces and punctuation can be important: 'A man, a plan, a canal, Panama!' is a palindrome.

  • Case sensitivity matters: 'Racecar' is not the same as 'racecar' unl...

A Software Engineer was asked 12mo ago
Q. Write a program to convert a postfix expression to a prefix expression.
Ans. 

Converting postfix expressions to prefix involves rearranging operators and operands based on their positions.

  • Postfix (Reverse Polish Notation) places operators after their operands, e.g., 'AB+' means 'A + B'.

  • Prefix (Polish Notation) places operators before their operands, e.g., '+AB' means 'A + B'.

  • To convert, use a stack: push operands, pop for operators, and rearrange accordingly.

  • Example: Postfix 'AB+C*' convert...

A Software Engineer was asked 12mo ago
Q. Given an array of distinct integers candidates and a target integer target, return a list of all unique combinations of candidates where the chosen numbers sum to target. You may return the combinations in ...
Ans. 

Combination sum problem involves finding all unique combinations of numbers that sum up to a target value.

  • Use backtracking to explore all combinations.

  • Start with an empty combination and add numbers recursively.

  • Avoid duplicates by ensuring the same number isn't used multiple times in one combination.

  • Example: For candidates [2, 3, 6, 7] and target 7, valid combinations are [7] and [2, 2, 3].

  • Consider edge cases like...

Are these interview questions helpful?
A Software Engineer was asked
Q. Given a directed acyclic graph (DAG), find a topological ordering of its vertices. Implement the topological sort algorithm.
Ans. 

Topological sort is a linear ordering of vertices in a directed acyclic graph.

  • Topological sort is used to find a linear ordering of vertices in a directed acyclic graph.

  • It is commonly implemented using depth-first search (DFS) algorithm.

  • The algorithm starts by visiting a vertex and then recursively visits all its adjacent vertices before adding it to the result list.

  • Topological sort is not possible if the graph ha...

🔥 Asked by recruiter 2 times
A Software Engineer was asked
Q. Given a linked list, reverse the nodes of a linked list k at a time and return its modified list. k is a positive integer and is less than or equal to the length of the linked list. If the number of nodes i...
Ans. 

Reverses a linked list in groups of k

  • Break the linked list into groups of k nodes

  • Reverse each group individually

  • Connect the reversed groups back together

A Software Engineer was asked
Q. Write a program to find all the elements which are present in one array but not in the other array.
Ans. 

Program to find elements present in one array but not in other array

  • Iterate through each element in the first array and check if it exists in the second array

  • If not found, add it to a new array of unique elements

  • Repeat the process for the second array to find elements unique to it

1 2 3 4 5 6

Info Edge Software Engineer Interview Experiences

31 interviews found

Software Engineer Interview Questions & Answers

user image Mayank Singh

posted on 9 Jun 2025

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. What is AI?
  • Add your answer
  • Q2. What is ChatGPT
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 6 Dec 2024

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

Logical reasoning, Quantitative aptitude

Round 2 - Coding Test 

Array,Strings,DSA concepts like searching algorithm

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Apr 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. What is the dynamic programming approach to solving the Sudoku puzzle?
  • Add your answer
  • Q2. What is Dijkstra's algorithm and how is it applied to graph theory?
  • Ans. 

    Dijkstra's algorithm finds the shortest path between nodes in a graph, optimizing route selection in various applications.

    • Graph Representation: Dijkstra's algorithm works on weighted graphs, where edges have non-negative weights, representing distances or costs.

    • Initialization: It starts by setting the initial node's distance to zero and all others to infinity, marking the initial node as visited.

    • Relaxation Process: The...

  • Answered by AI
    Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 31 Jul 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Easy 3 hours long , Math logical reasoning , english grammer

Round 2 - Coding Test 

1 easy question , 1 medium question and 1 hard question

Round 3 - Technical 

(2 Questions)

  • Q1. Palindrome of string
  • Add your answer
  • Q2. Mid of the linked list
  • Add your answer
Round 4 - HR 

(2 Questions)

  • Q1. Are you ready to relocation
  • Add your answer
  • Q2. Tell me about your family background
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dsa and sql properly

Skills evaluated in this interview

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Feb 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I appeared for an interview in Dec 2024.

Interview Questionnaire 

1 Question

  • Q1. Tumko Excel aata hai ?
  • Ans. 

    Yes, I am proficient in Excel and can utilize its features for data analysis and reporting.

    • I can create complex formulas, such as VLOOKUP and INDEX-MATCH, to analyze data efficiently.

    • I am skilled in using pivot tables to summarize large datasets and extract meaningful insights.

    • I can create visually appealing charts and graphs to present data clearly.

    • I am familiar with data validation techniques to ensure data integrity...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Jo hoga sd dekha sjaayega :)
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 6 Jun 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

The duration was one hour

Round 2 - Technical 

(2 Questions)

  • Q1. Post fix to pre fix
  • Ans. 

    Converting postfix expressions to prefix involves rearranging operators and operands based on their positions.

    • Postfix (Reverse Polish Notation) places operators after their operands, e.g., 'AB+' means 'A + B'.

    • Prefix (Polish Notation) places operators before their operands, e.g., '+AB' means 'A + B'.

    • To convert, use a stack: push operands, pop for operators, and rearrange accordingly.

    • Example: Postfix 'AB+C*' converts to ...

  • Answered by AI
    Add your answer
  • Q2. Combination sum
  • Ans. 

    Combination sum problem involves finding all unique combinations of numbers that sum up to a target value.

    • Use backtracking to explore all combinations.

    • Start with an empty combination and add numbers recursively.

    • Avoid duplicates by ensuring the same number isn't used multiple times in one combination.

    • Example: For candidates [2, 3, 6, 7] and target 7, valid combinations are [7] and [2, 2, 3].

    • Consider edge cases like empt...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Just study DSA
Anonymous

Software Engineer Interview Questions & Answers

user image Piyush Gupta

posted on 21 Sep 2024

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

Resume walkthrough and 1 medium level DSA question.

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 3 Apr 2024

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

DSA Questions around DP

Round 2 - One-on-one 

(2 Questions)

  • Q1. Circular linked list?
  • Add your answer
  • Q2. Topological sorting in graph
  • Ans. 

    Topological sorting is a linear ordering of vertices in a directed acyclic graph where for every directed edge uv, vertex u comes before v.

    • Topological sorting is used in scheduling tasks, such as in project management or task scheduling algorithms.

    • It can be implemented using depth-first search (DFS) algorithm.

    • Kahn's algorithm is another popular method for topological sorting.

    • Example: Given a graph with vertices A, B, C...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Jun 2024

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

Easy to medium questions

Round 2 - Technical 

(1 Question)

  • Q1. DSA questions based on Arrays
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 2 Sep 2024

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

I applied via Campus Placement and was interviewed before Sep 2023. There were 5 interview rounds.

Round 1 - Coding Test 

Don't exactly remeber the questions now

Round 2 - Technical 

(2 Questions)

  • Q1. It was a string problem
  • Add your answer
  • Q2. Again just a better version of question 1
  • Add your answer
Round 3 - Technical 

(2 Questions)

  • Q1. Puzzles were asked
  • Add your answer
  • Q2. Project related and some DSA questions
  • Add your answer
Round 4 - Technical 

(2 Questions)

  • Q1. Project related questions were asked.
  • Add your answer
  • Q2. Detailed review of the company
  • Add your answer
Round 5 - HR 

(2 Questions)

  • Q1. The greatest strength and weakness
  • Ans. 

    My greatest strength is my problem-solving skills and my greatest weakness is my tendency to overthink.

    • Strength: I excel at breaking down complex problems into manageable tasks and finding efficient solutions.

    • Weakness: I sometimes spend too much time analyzing a situation and second-guessing myself, which can lead to delays in decision-making.

    • Strength: In a previous project, I was able to identify a critical bug in the...

  • Answered by AI
    Add your answer
  • Q2. How to cope with stress?
  • Ans. 

    To cope with stress, it is important to practice self-care, seek support from others, and engage in stress-relieving activities.

    • Practice self-care by getting enough sleep, eating well, and exercising regularly.

    • Seek support from friends, family, or a therapist to talk about your feelings and get advice.

    • Engage in stress-relieving activities such as meditation, yoga, or hobbies you enjoy.

    • Set boundaries and prioritize task...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be calm and composed and everything will be fine.
Anonymous

What people are saying about Info Edge

View All
specificroller
Verified Icon
2w
works at
Info Edge
New Rephrase AI feature - thoughts?
I love the new AI rephrase feature. What are your views on it?
Got a question about Info Edge?
Ask anonymously on communities.
More about working at Info Edge
  • HQ - Noida, Uttar Pradesh, India
  • Internet
  • 5k-10k Employees (India)
  • Public

Info Edge Interview FAQs

How many rounds are there in Info Edge Software Engineer interview?
Info Edge interview process usually has 3-4 rounds. The most common rounds in the Info Edge interview process are Technical, Coding Test and HR.
How to prepare for Info Edge Software Engineer 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 Javascript, Kafka, Redis, Software Engineering and MySQL.
What are the top questions asked in Info Edge Software Engineer interview?

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

  1. Write the code for rearranging the array in consecutive pair multiplication. Fo...read more
  2. Q: What is a Transaction in DBMS and ACID properties? Q: What is Thread and ho...read more
  3. System design of BookMyShow. Design the algorithm and database for the seat bo...read more
What are the most common questions asked in Info Edge Software Engineer HR round?

The most common HR questions asked in Info Edge Software Engineer interview are -

  1. Where do you see yourself in 5 yea...read more
  2. Why are you looking for a chan...read more
  3. What is your family backgrou...read more

Tell us how to improve this page.

Info Edge Interviews By Designations

  • Info Edge Software Engineer Interview Questions
  • Info Edge Senior Executive Interview Questions
  • Info Edge Software Developer Interview Questions
  • Info Edge Sales Executive Interview Questions
  • Info Edge Data Scientist Interview Questions
  • Info Edge Business Analyst Interview Questions
  • Info Edge Senior Software Engineer Interview Questions
  • Info Edge Operations Executive Interview Questions
  • Show more
  • Info Edge Manager Interview Questions
  • Info Edge Data Analyst Interview Questions

Interview Questions for Popular Designations

  • Senior Software Engineer Interview Questions
  • Associate Software Engineer Interview Questions
  • Softwaretest Engineer Interview Questions
  • Software Engineer Trainee Interview Questions
  • Software Developer Intern Interview Questions
  • Software Development Engineer Interview Questions
  • Software Developer Interview Questions
  • Junior Software Developer Interview Questions
  • Show more
  • Junior Software Engineer Interview Questions
  • Full Stack Software Developer Interview Questions

Overall Interview Experience Rating

4.4/5

based on 15 interview experiences

Difficulty level

Easy 38%
Moderate 63%

Duration

Less than 2 weeks 50%
2-4 weeks 38%
More than 8 weeks 13%
View more

Top Skills for Info Edge Software Engineer

Algorithms Interview Questions & Answers
250 Questions
Data Structures Interview Questions & Answers
250 Questions
Web Development Interview Questions & Answers
250 Questions
logo
Join Info Edge India’s first internet classifieds company.

Software Engineer Interview Questions from Similar Companies

Amazon
Amazon Software Engineer Interview Questions
4.0
 • 79 Interviews
Uber
Uber Software Engineer Interview Questions
4.2
 • 14 Interviews
Flipkart
Flipkart Software Engineer Interview Questions
3.9
 • 9 Interviews
JustDial
JustDial Software Engineer Interview Questions
3.5
 • 9 Interviews
MakeMyTrip
MakeMyTrip Software Engineer Interview Questions
3.6
 • 9 Interviews
Indiamart Intermesh
Indiamart Intermesh Software Engineer Interview Questions
3.6
 • 6 Interviews
LinkedIn
LinkedIn Software Engineer Interview Questions
4.3
 • 6 Interviews
Facebook
Facebook Software Engineer Interview Questions
4.3
 • 6 Interviews
Zepto
Zepto Software Engineer Interview Questions
3.5
 • 5 Interviews
Naukri
Naukri Software Engineer Interview Questions
4.1
 • 5 Interviews
View all
Info Edge Software Engineer Salary
based on 218 salaries
₹6.9 L/yr - ₹24 L/yr
61% more than the average Software Engineer Salary in India
View more details

Info Edge Software Engineer Reviews and Ratings

based on 35 reviews

3.6/5

Rating in categories

3.8

Skill development

3.6

Work-life balance

3.6

Salary

4.3

Job security

3.4

Company culture

3.2

Promotions

3.3

Work satisfaction

Explore 35 Reviews and Ratings
Info Edge Salaries in India
Senior Executive
758 salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

Sales Executive
658 salaries
unlock blur

₹10 L/yr - ₹10 L/yr

Assistant Manager
619 salaries
unlock blur

₹3.5 L/yr - ₹9.5 L/yr

Associate Senior Executive
589 salaries
unlock blur

₹2.2 L/yr - ₹6.2 L/yr

Senior Software Engineer
367 salaries
unlock blur

₹9.1 L/yr - ₹28 L/yr

Explore more salaries
Compare Info Edge with
TCS

TCS

3.6
Compare
Amazon

Amazon

4.0
Compare
Flipkart

Flipkart

3.9
Compare
Indiamart Intermesh

Indiamart Intermesh

3.6
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Info Edge Interview Questions >
  • Info Edge Software Engineer Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter