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
4.0

based on 1.9k Reviews

Filter interviews by

Info Edge Senior Software Engineer Interview Questions, Process, and Tips

Updated 2 Jul 2024

Top Info Edge Senior Software Engineer Interview Questions and Answers

  • Q1. Buy and Sell Stock You are Harshad Mehta’s friend. He told you the price of a particular stock for the next ‘N’ days. You can either buy or sell a stock. Also, you can on ...read more
  • Q2. Number of Flips Ninja is learning the binary representation of the numbers. He wanted to practice the topic, so he picked a question. The problem statement says, two numb ...read more
  • Q3. Boundary Traversal You have been given a binary tree of integers. Your task is to print the boundary nodes of this binary tree in Anti-Clockwise direction starting from t ...read more
View all 10 questions

Info Edge Senior Software Engineer Interview Experiences

8 interviews found

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

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

I applied via Approached by Company and was interviewed before Jul 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Easy DSA questions on string manipulation
Round 2 - Technical 

(1 Question)

  • Q1. Build an MVC architecture
  • Ans. 

    MVC architecture separates an application into Model, View, and Controller components for better organization and scalability.

    • Model represents the data and business logic

    • View displays the data to the user

    • Controller handles user input and updates the model

    • Example: Model - User class with properties like name, email; View - HTML template to display user info; Controller - User controller to handle user actions

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Discussed previous job experiences.
  • Q2. Was asked if I am comfortable working on weekends/late nights during emergencies.
Round 4 - HR 

(1 Question)

  • Q1. What are your strengths/weaknesses.

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nt ... read more
asked in Capgemini
Q2. Pascal's TriangleYou are given an integer N. Your task is to retu ... read more
Q3. K Largest Elements You are given with an integer k and an array o ... read more
asked in GlobalLogic
Q4. System Design QuestionCreate a simple shopping application. They ... read more
asked in Info Edge
Q5. Buy and Sell StockYou are Harshad Mehta’s friend. He told you the ... read more
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Aptitude test was on hacker earth

Round 3 - Coding Test 

No coding test was taken by the interviewrrwe

Interview Preparation Tips

Interview preparation tips for other job seekers - dckdjc dkjc kd ckjd ckjd ckjd ckjd ckjdcljds cljsd klcj dsljkc dlsjkc ljds cljsd cds

I was interviewed in Sep 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round where the interviewer asked me 2 DSA based problems.

  • Q1. Buy and Sell Stock

    You are Harshad Mehta’s friend. He told you the price of a particular stock for the next ‘N’ days. You can either buy or sell a stock. Also, you can only complete at most 2-transactions....

  • Ans. 

    The idea is to traverse the given list of prices and find a local minimum of every increasing sequence. We can gain maximum profit if we buy the shares at the starting of every increasing sequence (local minimum) and sell them at the end of the increasing sequence (local maximum). 
    Steps :
    1. Find the local minima and store it as starting index. If not exists, return.
    2. Find the local maxima. and store it as an endi...

  • Answered by CodingNinjas
  • Q2. Number of Flips

    Ninja is learning the binary representation of the numbers. He wanted to practice the topic, so he picked a question. The problem statement says, two numbers, ‘A’ and ‘B’ are given. Find th...

  • Ans. 

    For this question, it can be observed that there can be only two possible solutions for an alternate binary string. The resultant string will look like either of the two cases: 

    1. 010101… 
    2. 101010…
    3. 
    Now, in order to find the minimum replacements, count the number of replacements to convert the string in type 1 and store it in variable count.
    For type2, the number of replacements will be n-count (n is le...

  • Answered by CodingNinjas
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical interview round where the interviewer asked me 2 DSA based problems.

  • Q1. Boundary Traversal

    You have been given a binary tree of integers. Your task is to print the boundary nodes of this binary tree in Anti-Clockwise direction starting from the root node.

    NOTE:
    The boundary ...
  • Ans. 

    The idea is to split the problem into 3 parts:
    • Print the left boundary in a top-down manner.
    • Print the leaf nodes in the same order as in the inorder traversal.
    • Print the right boundary in a bottom-up manner.
    Time Complexity : O(N)

  • Answered by CodingNinjas
  • Q2. Reverse List In K Groups

    You are given a linked list of 'N' nodes and an integer 'K'. You have to reverse the given linked list in groups of size K i.e if the list contains x nodes numbered...

  • Ans. 

    Recursion can be used to solve this problem. We reverse every group of k linked list nodes and attach it to the previous group. 

    Steps :
    1) The first step is to check whether the Head is NULL or Not, if its NULL then we can directly return NULL,
    2) If the Head is not NULL, then we need to check the length of Linked List starting from current Head.
    3) If the length is less than k , then there is no need to reverse it a...

  • Answered by CodingNinjas
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round where the interviewer asked behavioral problems.

  • Q1. Basic HR Questions

    1. What are technical challenges that you solved?
    2. Where do you want to work & what interests you?
    3. Why Info Edge?

  • Ans. 

    Tip 1 : The cross questioning can go intense some time, think before you speak.
    Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.
    Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round, like what are the projects currently the company is investing, which team you are mentoring. How all is the...

  • Answered by CodingNinjas

Interview Preparation Tips

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 - 6 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 questions for designations

 Senior Software Engineer Testing

 (3)

 Software Engineer

 (29)

 Software Development Engineer

 (2)

 Associate Software Engineer

 (1)

 Software Testing Engineer

 (1)

 Software Engineer Level 1

 (1)

 Senior Test Engineer

 (2)

 Software Developer

 (9)

I applied via Naukri.com and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. 1. Count the number of flips require to convert a binary string of 0 and 1 such that resultant string has alternate 0 and 1
  • Ans. 

    Count the number of flips required to convert a binary string to alternate 0 and 1.

    • Iterate through the string and count the number of flips required to make it alternate.

    • Keep track of the current character and the expected character.

    • Example: 001101 -> 010101 requires 2 flips.

    • Example: 101010 -> 010101 requires 3 flips.

  • Answered by AI
  • Q2. 2. From an array of integers which contains values for a particular stock . Find the value at which a person should buy and sell such that the profit is maximum.
  • Ans. 

    Find the maximum profit from buying and selling a stock given an array of its values.

    • Iterate through the array and keep track of the minimum value seen so far.

    • Calculate the profit at each index and update the maximum profit seen.

    • Return the maximum profit.

  • Answered by AI
  • Q3. 3. Boundary traversal of a tree.
  • Ans. 

    Boundary traversal of a tree

    • Boundary traversal involves visiting the nodes on the boundary of a tree in a specific order

    • Start with the root node and traverse the left boundary, then the leaf nodes from left to right, and finally the right boundary

    • Use recursion to traverse the left and right subtrees

    • Exclude the leaf nodes that are also part of the left or right boundary

  • Answered by AI
  • Q4. 4. Reverse a linked list in groups of k nodes.
  • Ans. 

    Reverse a linked list in groups of k nodes.

    • Divide the linked list into groups of k nodes

    • Reverse each group of k nodes

    • Connect the reversed groups to form the final linked list

    • Use recursion or iteration to implement the solution

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Focus on data structures and algorithm (2 rounds)
2. Technologies you are applying for and DSA could also be asked (3rd round )

Skills evaluated in this interview

Get interview-ready with Top Info Edge Interview Questions

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

I applied via Naukri.com and was interviewed before Mar 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Discussion with Lead Engineer around basics of javascript, HTML, CSS, and Resume based question
Round 3 - Technical 

(1 Question)

  • Q1. Discussion with Technical Architect around Some advanced concepts of javascript, React, Some aptitude questions.
Round 4 - One-on-one 

(1 Question)

  • Q1. Discussion with hiring manager. Understanding around the project, roles and responsibility of the position I was being hired for.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good with basics. Be clear about your expertise.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed before Oct 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Asked dome simple LinkedIn list and array questions.

Round 3 - One-on-one 

(1 Question)

  • Q1. Some basic Java and opps and SQL query

Senior Software Engineer interview

user image Prashant Sharma

posted on 23 Nov 2021

Interview questions from similar companies

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
-

I applied via Instahyre and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

String and DP questions

Round 2 - Technical 

(1 Question)

  • Q1. Design BookMyShow
Round 3 - Technical 

(1 Question)

  • Q1. Past challenging projects
  • Ans. 

    Developed a real-time data processing system for a high-traffic e-commerce platform.

    • Implemented distributed computing using Apache Kafka and Spark.

    • Optimized database queries to handle large volumes of data.

    • Designed fault-tolerant architecture to ensure system reliability.

    • Collaborated with cross-functional teams to meet project deadlines.

  • Answered by AI

Info Edge Interview FAQs

How many rounds are there in Info Edge Senior Software Engineer interview?
Info Edge interview process usually has 3-4 rounds. The most common rounds in the Info Edge interview process are Resume Shortlist, Technical and One-on-one Round.
How to prepare for Info Edge Senior 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, CSS, Java, React.Js and HTML.
What are the top questions asked in Info Edge Senior Software Engineer interview?

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

  1. 2. From an array of integers which contains values for a particular stock . Fin...read more
  2. 1. Count the number of flips require to convert a binary string of 0 and 1 such...read more
  3. 4. Reverse a linked list in groups of k nod...read more

Tell us how to improve this page.

People are getting interviews through

based on 4 Info Edge interviews
Job Portal
75%
25% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Join Info Edge India’s first internet classifieds company.
Info Edge Senior Software Engineer Salary
based on 344 salaries
₹10 L/yr - ₹26 L/yr
25% more than the average Senior Software Engineer Salary in India
View more details

Info Edge Senior Software Engineer Reviews and Ratings

based on 48 reviews

3.6/5

Rating in categories

3.3

Skill development

3.5

Work-Life balance

3.1

Salary & Benefits

4.0

Job Security

3.3

Company culture

2.8

Promotions/Appraisal

3.3

Work Satisfaction

Explore 48 Reviews and Ratings
Senior Executive
667 salaries
unlock blur

₹2.6 L/yr - ₹7.7 L/yr

Assistant Manager
585 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
345 salaries
unlock blur

₹10 L/yr - ₹26 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

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview