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

Filter interviews by

Info Edge Senior Software Engineer Interview Questions and Answers for Experienced

Updated 14 Jun 2025

Info Edge Senior Software Engineer Interview Experiences for Experienced

3 interviews found

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

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

  • Q1. Program to swap kth node from start and end in Linkedlist.
  • Ans. 

    Swap the kth node from the start with the kth node from the end in a linked list.

    • Identify the kth node from the start and end of the linked list.

    • Traverse the list to find the kth node from the start.

    • Simultaneously traverse to find the kth node from the end.

    • Swap the values of the two identified nodes.

    • Consider edge cases: if k is greater than the length of the list.

  • Answered by AI
  • Q2. Minimum window substring.
  • Ans. 

    Find the smallest substring in a string that contains all characters of another string.

    • Use two pointers to maintain a sliding window over the string.

    • Track character counts of the target string using a hash map.

    • Expand the window by moving the right pointer until all characters are included.

    • Shrink the window by moving the left pointer to find the minimum length.

    • Example: For s = 'ADOBECODEBANC' and t = 'ABC', the result i...

  • Answered by AI
  • Q3. Java Spring boot questions like inndoDB engine,Immutable class,Kafka basics,Profiles,Thread,Runnable , Sql query,GC, final finally finalize
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Js basic concepts- closures, promise, arrow function and regular function difference, ssr
  • Q2. React round- Develop a resuable modal component
  • Ans. 

    Create a reusable modal component in React for displaying content dynamically.

    • Use functional components and hooks for state management.

    • Implement props for dynamic content: title, body, and actions.

    • Utilize CSS for styling and transitions for better UX.

    • Include accessibility features like ARIA roles.

    • Example: <Modal title='Confirm' body='Are you sure?' onConfirm={handleConfirm} />

  • Answered by AI

Senior Software Engineer Interview Questions Asked at Other Companies for Experienced

Q1. If you have to prioritize between coding standards and project de ... read more
Q2. Duplicate Integer in Array Given an array ARR of size N, containi ... read more
asked in Visa
Q3. Given a grid containing 0s and 1s and a source row and column, in ... read more
asked in Mphasis
Q4. Trapping Rain Water Problem Statement Given a long type array/lis ... read more
Q5. In Azure Data Factory, how would you implement the functionality ... read more
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. OOPS, java, data structure
  • Q2. Coding assignment for binary search
  • Ans. 

    Implement binary search algorithm to find a target string in a sorted array of strings.

    • Ensure the array of strings is sorted before performing binary search.

    • Compare the target string with the middle element of the array and adjust the search range accordingly.

    • Repeat the process until the target string is found or the search range is exhausted.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What is your Notice period
  • Q2. Expectation from new job

Skills evaluated in this interview

What people are saying about Info Edge

View All
crunchylamprey
Verified Icon
2w
works at
Info Edge
What's that one thing that makes you seriously reconsider joining a startup?
Hire and fire
0%
Toxic ceo/lala ram
0%
Work life balance
0%
Lack of vision
0%
47 participants . poll closed
Got a question about Info Edge?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. About database locks and engines
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Print the nodes of a n-ary tree in an arc wise manner as seen from the outside.
  • Ans. 

    Print nodes of n-ary tree in arc wise manner from outside

    • Traverse the tree level by level from outside to inside

    • Use a queue to keep track of nodes at each level

    • Print the nodes at each level in a clockwise or anticlockwise manner

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Uber Senior Software Engineer interview:
  • n-ary tree

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

It was a ideal machine coding round. Consisting of a question to be completed within 45 mins. For a given manager to employee hierarchy, count direct + indirect repartees.

Interview Preparation Tips

Topics to prepare for Uber Senior Software Engineer interview:
  • Data Structures
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

React based
problem solving round

Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Mostly DSA expect DP, graph problems

Round 3 - Technical 

(1 Question)

  • Q1. Graph traversal + DP
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

  • Q1. Screening round: How do you add a new element to a complete binary tree, where all levels are fully populated except for the last level, which is filled from left to right?
  • Ans. 

    To add an element to a complete binary tree, insert it at the next available position, maintaining the complete structure.

    • 1. Identify the next available position in the tree, which is the leftmost empty spot at the last level.

    • 2. Use a queue or array to keep track of nodes for level-order traversal to find the insertion point.

    • 3. Insert the new element as a child of the last node in the queue or array.

    • 4. If the last leve...

  • Answered by AI
  • Q2. Design a parking lot system that allows users to park and unpark their vehicles. Given a specific slot, the system should return the vehicle located in that slot. Additionally, what changes would be necess...
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Asked medium level graph question.

Round 2 - Coding Test 

Asked LLD question with at flow executable.

Round 3 - HLD 

(1 Question)

  • Q1. Asked HLD questions.

Info Edge Interview FAQs

How many rounds are there in Info Edge Senior Software Engineer interview for experienced candidates?
Info Edge interview process for experienced candidates usually has 3 rounds. The most common rounds in the Info Edge interview process for experienced candidates are Resume Shortlist, Technical and HR.
How to prepare for Info Edge Senior Software Engineer interview for experienced candidates?
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, Javascript, Microservices, Software Engineering and Kafka.
What are the top questions asked in Info Edge Senior Software Engineer interview for experienced candidates?

Some of the top questions asked at the Info Edge Senior Software Engineer interview for experienced candidates -

  1. Program to swap kth node from start and end in Linkedli...read more
  2. React round- Develop a resuable modal compon...read more
  3. coding assignment for binary sea...read more
How long is the Info Edge Senior Software Engineer interview process?

The duration of Info Edge Senior Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.7/5

based on 3 interview experiences

Difficulty level

Moderate 67%
Hard 33%

Duration

Less than 2 weeks 100%
View more
Join Info Edge India’s first internet classifieds company.
Info Edge Senior Software Engineer Salary
based on 367 salaries
₹14 L/yr - ₹25 L/yr
13% more than the average Senior Software Engineer Salary in India
View more details

Info Edge Senior Software Engineer Reviews and Ratings

based on 50 reviews

3.4/5

Rating in categories

3.2

Skill development

3.5

Work-life balance

3.0

Salary

3.8

Job security

3.2

Company culture

2.9

Promotions

3.3

Work satisfaction

Explore 50 Reviews and Ratings
Senior Executive
681 salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Sales Executive
658 salaries
unlock blur

₹10 L/yr - ₹10 L/yr

Assistant Manager
617 salaries
unlock blur

₹4.3 L/yr - ₹9.5 L/yr

Associate Senior Executive
601 salaries
unlock blur

₹2.8 L/yr - ₹6.2 L/yr

Senior Software Engineer
367 salaries
unlock blur

₹14 L/yr - ₹25 L/yr

Explore more salaries
Compare Info Edge with

TCS

3.6
Compare

Amazon

4.0
Compare

Flipkart

3.9
Compare

Indiamart Intermesh

3.6
Compare
write
Share an Interview