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 Engineer Interview Questions, Process, and Tips

Updated 18 Feb 2025

Top Info Edge Software Engineer Interview Questions and Answers

  • Q1. Break The Integer Problem Statement Given an integer N , the task is to divide this integer into 'K' positive parts (where K ≥ 2 ) such that their sum equals N . The obj ...read more
  • Q2. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a spe ...read more
  • Q3. Balanced Parentheses Combinations Given an integer N representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using th ...read more
View all 50 questions

Info Edge Software Engineer Interview Experiences

29 interviews found

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

I applied via Job Fair and was interviewed in Jan 2023. There was 1 interview round.

Round 1 - HR 

(6 Questions)

  • Q1. Tell me about yourself
  • Q2. Whow do you expected salary
  • Q3. Describe about a topic
  • Ans. 

    Topic description

    • Pointer 1

    • Pointer 2

    • Pointer 3

  • Answered by AI
  • Q4. Will you do night shift
  • Q5. Which book you read last time
  • Q6. What is you strength

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication skills. And English will be fluent

I applied via Naukri.com and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Coding decoding, algebra,trigonometry etc.

Round 2 - Technical 

(1 Question)

  • Q1. C#,oops concept,method,constructor,polymorphism etc
  • Ans. 

    Class & object:-

    Class:- Class is a blueprint/template.

                Class is not real world entity.

                Class don't occupy memory.

    Object:- Object is instance of Class.

                  Object is a real world entity.

                  Object Occupy memory.

    Method:-Method is code ...

  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Info Edge Software Engineer interview:
  • C#
  • Python
  • HTML
  • CSS3
Interview preparation tips for other job seekers - Bring positive energy and do something ageah of time that make you feel invincible when interviewing.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Standard aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. Techinal system design question

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on basics related to Oops, dsa and basic system design.

Software Engineer Interview Questions & Answers

user image Bharat agarwal

posted on 9 Jun 2022

I applied via Campus Placement and was interviewed before Jun 2021. There were 5 interview rounds.

Round 1 - Coding Test 

Round 1 was conducted online on Doselect platform for a duration of 94 minutes. This round consists of 24 MCQs and 2 coding questions. MCQs are divided into 4 sections with 6 MCQs in each section. Each section need to be done in 6 minutes. Time allotted for both coding question are 25 minutes and 45 minutes.

Round 2 - One-on-one 

(3 Questions)

  • Q1. Search an element In a rotated sorted array.
  • Ans. 

    Search an element in a rotated sorted array.

    • Find the pivot point where the array is rotated

    • Determine which half of the array the target element is in

    • Perform binary search on that half of the array

    • Handle edge cases such as duplicates and empty arrays

  • Answered by AI
  • Q2. Find minimum number of coins that make a given value using backtracking and dynamic programming both.
  • Ans. 

    Find minimum number of coins for a given value using backtracking and dynamic programming.

    • Backtracking involves exploring all possible solutions and choosing the best one.

    • Dynamic programming involves breaking down the problem into smaller subproblems and solving them.

    • For backtracking, we can start with the largest coin and keep subtracting it until we reach the target value.

    • For dynamic programming, we can create a tabl...

  • Answered by AI
  • Q3. SQL query related to joins.
Round 3 - One-on-one 

(2 Questions)

  • Q1. To write a program which can divide, multiply, subtract and add two fractional number and give solution in simplest fraction form. Every fractional number should be consider as an object.
  • Ans. 

    A program to perform basic arithmetic operations on fractional numbers and simplify the result.

    • Create a Fraction class with numerator and denominator attributes

    • Implement methods for addition, subtraction, multiplication, and division

    • Use the Euclidean algorithm to simplify the result

    • Handle edge cases such as dividing by zero or negative denominators

  • Answered by AI
  • Q2. Discussion related to projects done during college.
Round 4 - One-on-one 

(3 Questions)

  • Q1. Discussion related to projects done during college.
  • Q2. Theoretical question related to DSA and Oops concept.
  • Q3. To write a program which will detect repeated word sequences.
  • Ans. 

    Program to detect repeated word sequences

    • Read input text and split into words

    • Create a dictionary to store word sequences and their frequency

    • Iterate through the words and check for repeated sequences

    • Output the repeated sequences and their frequency

  • Answered by AI
Round 5 - HR 

(4 Questions)

  • Q1. Introduce yourself including your hobbies, projects, experiences and educations.
  • Q2. Why do you want to join Info edge ?
  • Q3. How will you contribute to Info Edge?
  • Q4. Do you have any question regarding Info Edge?

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DSA and problem solving. Try to be clear with Oops concept and core subjects like CN, DBMS.

Skills evaluated in this interview

Info Edge interview questions for designations

 Senior Software Engineer

 (7)

 Software Development Engineer

 (2)

 Software Testing Engineer

 (1)

 Associate Software Engineer

 (1)

 Senior Software Engineer Testing

 (3)

 Software Engineer Level 1

 (1)

 Software Developer

 (10)

 Software Tester

 (2)

I applied via Campus Placement and was interviewed in Jun 2021. There were 5 interview rounds.

Round 1 - Coding Test 

24 MCQ on Cyber Security, DSA, Linux and SQL (6 each)
2 coding questions, one medium and one hard
Duration- 94 minutes
Platform- DoSelect

Round 2 - Technical 

(3 Questions)

  • Q1. Write a program to find the largest palindromic substring in the input string.
  • Ans. 

    Program to find the largest palindromic substring in input string.

    • Iterate through each character in the input string and check for palindromic substrings.

    • Keep track of the largest palindromic substring found so far.

    • Use dynamic programming or expand around center approach for efficient solution.

    • Example: Input string 'babad', largest palindromic substring is 'bab' or 'aba'.

  • Answered by AI
  • Q2. Write a program to find all the elements which are present in one array but not in 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

  • Answered by AI
  • Q3. Theoretical Questions related to DBMS, SQL, OS, OOPS
Round 3 - Technical 

(2 Questions)

  • Q1. Write a program to find all triplets with a given sum.
  • Ans. 

    Program to find all triplets with a given sum in an array.

    • Use three nested loops to iterate through all possible combinations of triplets.

    • Check if the sum of the current triplet is equal to the given sum.

    • Store the triplets that satisfy the condition in a list and return the list.

  • Answered by AI
  • Q2. Theoretical Questions related to DBMS, SQL, OOPS, OS, Computer Networks.
Round 4 - Technical 

(1 Question)

  • Q1. Write a program to evaluate a mathematical expression (stack was involved).
  • Ans. 

    Program to evaluate a mathematical expression using stack

    • Use a stack to store operands and operators

    • Iterate through the expression and push operands onto the stack

    • When an operator is encountered, pop operands from the stack, perform the operation, and push the result back onto the stack

    • Continue until the entire expression is evaluated

    • The final result will be the top element of the stack

  • Answered by AI
Round 5 - HR 

(4 Questions)

  • Q1. What makes you feel you are satisfied in your job?
  • Q2. Why do you want to join Info Edge?
  • Q3. Where do you see yourself in 5 years?
  • Q4. Do you have any questions regarding Info Edge?

Interview Preparation Tips

Topics to prepare for Info Edge Software Engineer interview:
  • DSA
  • OOPS
  • OS
  • DBMS
Interview preparation tips for other job seekers - Even if you fail to run the program during an interview, make sure you are able to explain clearly whatever logic you use and the code that you write, along with the complexity.

Skills evaluated in this interview

Get interview-ready with Top Info Edge Interview Questions

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 - One-on-one 

(1 Question)

  • Q1. Intoduction your self

Interview Preparation Tips

Interview preparation tips for other job seekers - While thinking for your career, make sure you give yourself priority and you're thinking about your future too. There is no harm in thinking for ourselves. Know what you want to be in your life. Know what interests you have

I applied via Naukri.com and was interviewed in Mar 2022. There were 4 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 - Aptitude Test 

Aptitude solving questions

Round 3 - Group Discussion 

Discussion

Round 4 - HR 

(6 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. What are your salary expectations?
  • Q3. What is your family background?
  • Q4. Share details of your previous job.
  • Q5. Where do you see yourself in 5 years?
  • Q6. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Info Edge Software Engineer interview:
  • C, java,
  • Telecommunication
Interview preparation tips for other job seekers - I'm fresher easy to learn new skills
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 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 - Coding Test 

Arrays and Basic DSA

Round 3 - Technical 

(1 Question)

  • Q1. Linked List, Graphs

I applied via Campus Placement and was interviewed before Mar 2021. There were 6 interview rounds.

Round 1 - Aptitude Test 

Basic questions based on Mathematics and Simple Algebra were asked. All questions were MCQs.
For example, Work and time based questions, Solving equations-based questions.

The test was conducted on Firstnaukri.com

Round 2 - Coding Test 

It was basically under the first round only. Can be said as the second part of the first round.
It had simple programming MCQs based on C, C++, Java. There were some Computer Science Fundamental questions based on DBMS, SQL, and others.

Round 3 - Technical 

(2 Questions)

  • Q1. Build a pyramid pattern of numbers in O(n) time using any language.
  • Ans. 

    Print a pyramid pattern of numbers in O(n) time.

    • Use nested loops to print the pattern.

    • The outer loop will iterate from 1 to n.

    • The inner loop will iterate from 1 to the current value of the outer loop.

    • Print the inner loop variable and a space after each iteration.

    • Print a new line after the inner loop completes.

  • Answered by AI
  • Q2. Build a system for College Fest Management.
  • Ans. 

    A system for managing college fests

    • Create a website for event registration and ticketing

    • Develop a mobile app for real-time updates and notifications

    • Implement a database to store event details and participant information

    • Integrate payment gateway for online transactions

    • Include features for event scheduling, venue management, and volunteer coordination

  • Answered by AI
Round 4 - Technical 

(3 Questions)

  • Q1. SQL question based on the second-highest salary in the employee table.
  • Q2. Egg dropping problem.
  • Q3. Some Ad-hoc array-based programming problems.
Round 5 - Technical 

(5 Questions)

  • Q1. NoSQL vs SQL databases
  • Ans. 

    NoSQL databases are non-relational and flexible, while SQL databases are relational and structured.

    • NoSQL databases are better suited for handling unstructured data

    • SQL databases are better suited for handling structured data

    • NoSQL databases are horizontally scalable

    • SQL databases are vertically scalable

    • Examples of NoSQL databases include MongoDB and Cassandra

    • Examples of SQL databases include MySQL and PostgreSQL

  • Answered by AI
  • Q2. How do you decide which type of tech stack to use?
  • Ans. 

    Tech stack selection depends on project requirements, team expertise, scalability, and budget.

    • Analyze project requirements and choose a stack that fits best

    • Consider team expertise and choose a stack that team is comfortable with

    • Evaluate scalability requirements and choose a stack that can handle future growth

    • Consider budget constraints and choose a stack that is cost-effective

    • Research and compare different stacks to ma

  • Answered by AI
  • Q3. How would you use your Data structures and algorithms knowledge in managing the working of a server?
  • Ans. 

    Data structures and algorithms can be used to optimize server performance and improve scalability.

    • Implement efficient data structures for storing and accessing data on the server

    • Use algorithms to optimize server processes and reduce response times

    • Implement caching algorithms to improve performance and reduce server load

    • Use data structures to manage server resources and prioritize tasks

    • Implement load balancing algorithm...

  • Answered by AI
  • Q4. How would you introduce a new version of an API without breaking the previous one?
  • Ans. 

    Introduce new API version without breaking the previous one.

    • Use versioning in the API endpoint URL

    • Provide documentation for both versions

    • Gradually phase out the old version

    • Use backward-compatible changes

    • Test thoroughly before releasing the new version

  • Answered by AI
  • Q5. Why have you chosen NodeJS for building your projects?
  • Ans. 

    NodeJS is fast, scalable and has a large community support.

    • NodeJS is built on Chrome's V8 JavaScript engine which makes it fast and efficient.

    • It is event-driven and non-blocking which makes it scalable for handling large amounts of data.

    • NodeJS has a large community support with a vast number of libraries and modules available.

    • It is also cross-platform compatible and can be used for both server-side and client-side deve...

  • Answered by AI
Round 6 - HR 

(4 Questions)

  • Q1. What is your family background?
  • Ans. 

    My family background is diverse and multicultural.

    • My parents come from different cultural backgrounds.

    • I have siblings who are pursuing different careers.

    • We celebrate various cultural traditions and festivals together.

  • Answered by AI
  • Q2. Why should we hire you?
  • Ans. 

    You should hire me because I have a strong technical background, excellent problem-solving skills, and a passion for software development.

    • I have a Bachelor's degree in Computer Science and extensive experience in software development.

    • I have a deep understanding of various programming languages and frameworks, including Java, Python, and JavaScript.

    • I have successfully completed several complex projects, demonstrating my...

  • Answered by AI
  • Q3. Why are you looking for a change?
  • Ans. 

    Looking for new challenges and growth opportunities.

    • Seeking a more challenging role to enhance my skills and knowledge.

    • Interested in working with new technologies and staying up-to-date with industry trends.

    • Want to work in a more collaborative and innovative environment.

    • Desire for career advancement and professional growth.

    • Seeking better work-life balance or location change.

  • Answered by AI
  • Q4. Tell me about yourself.
  • Ans. 

    I am a software engineer with experience in developing and maintaining software applications.

    • I have a Bachelor's degree in Computer Science.

    • I have worked on various projects using different programming languages such as Java, C++, and Python.

    • I am skilled in software development methodologies like Agile and have experience with version control systems like Git.

    • I have strong problem-solving and analytical skills, which h...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be present and don't "tackle" the interviewer.
The interviewer is your best friend, and try to be polite and be clear about what you are thinking.

NEVER EVER GIVE UP WHILE SOLVING A PROBLEM. Unless the interviewer herself says that let's get to the other question. They want to see your persistence.

Skills evaluated in this interview

I was interviewed before Jan 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 60 minute
Round difficulty - Easy

I was asked 3 Coding ques based on arrays , 4 SQL query based on given database, and to write a basic React code based on my resume.

  • Q1. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

  • Ans. 

    The task is to identify all distinct triplets within an array that sum up to a specified number.

    • Iterate through the array and use nested loops to find all possible triplets.

    • Check if the sum of the triplet equals the specified number.

    • Print the triplet if found, else print -1.

  • Answered by AI
Round 2 - Video Call 

(7 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was a technical round where the interviewer asked me questions based on DSA, Computer Networking, Operating Systems, HTML, CSS, React and Node js.

  • Q1. 

    Balanced Parentheses Combinations

    Given an integer N representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.

    Explanati...

  • Ans. 

    Generate all possible combinations of balanced parentheses for a given number of pairs.

    • Use recursion to generate all possible combinations of balanced parentheses.

    • Keep track of the number of open and close parentheses used in each combination.

    • Terminate recursion when the number of open and close parentheses used equals the given number of pairs.

  • Answered by AI
  • Q2. Can you explain the different OSI layers?
  • Ans. 

    The OSI (Open Systems Interconnection) model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven distinct layers.

    • Physical Layer: Deals with physical connections and transmission of raw data. Example: Ethernet cables.

    • Data Link Layer: Manages data transfer between devices on the same network. Example: MAC addresses.

    • Network Layer: Handles routing and forwarding o...

  • Answered by AI
  • Q3. What is the difference between a process and a thread?
  • Ans. 

    A process is an independent entity that contains its own memory space and resources, while a thread is a lightweight sub-process that shares the same memory space and resources with other threads.

    • A process has its own memory space, while threads share the same memory space within a process.

    • Processes are independent entities, while threads are sub-processes that rely on the process for execution.

    • Threads are lighter weig...

  • Answered by AI
  • Q4. How do you center a div using CSS?
  • Ans. 

    To center a div using CSS, set the left and right margins to auto and specify a width for the div.

    • Set margin-left and margin-right to auto

    • Specify a width for the div

    • Use display: block to ensure the div takes up the full width

  • Answered by AI
  • Q5. What is the virtual DOM in React?
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM in React, used for efficient updates.

    • Virtual DOM is a concept where a lightweight copy of the actual DOM is created in memory.

    • When changes are made to the virtual DOM, React compares it with the actual DOM to identify the minimal number of updates needed.

    • This process helps in optimizing performance by reducing the number of DOM manipulations.

    • Example: When a user inter...

  • Answered by AI
  • Q6. Can you explain the updating phase of the React lifecycle?
  • Ans. 

    Updating phase in React lifecycle is where the component re-renders due to changes in props or state.

    • ComponentWillReceiveProps() is called before the update to compare new props with current props.

    • ShouldComponentUpdate() is called to determine if the component should re-render.

    • ComponentWillUpdate() is called before the re-render.

    • Render() is called to update the UI with the new props or state.

    • ComponentDidUpdate() is cal

  • Answered by AI
  • Q7. What is the Event Loop in Node.js?
  • Ans. 

    The Event Loop in Node.js is a mechanism that allows Node.js to perform non-blocking I/O operations.

    • The Event Loop is responsible for handling asynchronous operations in Node.js.

    • It allows Node.js to execute multiple operations concurrently without blocking the main thread.

    • Event Loop continuously checks the event queue for new events and processes them in a loop.

    • Example: When a file is being read asynchronously in Node....

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

1 coding problem and a puzzle was asked in this round.

  • Q1. 

    Break The Integer Problem Statement

    Given an integer N, the task is to divide this integer into 'K' positive parts (where K ≥ 2) such that their sum equals N. The objective is to maximize the product of t...

  • Ans. 

    Given an integer N, divide it into K positive parts to maximize their product.

    • Divide N into K parts such that their sum equals N

    • Maximize the product of the K parts

    • Constraints: 1 ≤ T ≤ 11, 2 ≤ N ≤ 55

    • Example: For N = 10, parts [3, 3, 4] give product 36

  • Answered by AI
  • Q2. How many times in a day do the two hands on a clock coincide?
  • Ans. 

    The two hands of a clock coincide 22 times in a day.

    • The two hands of a clock coincide at 12:00, 1:05, 2:10, 3:15, 4:20, 5:25, 6:30, 7:35, 8:40, 9:45, and 10:50.

    • The hands coincide once every hour, except for when they coincide at 12:00 where they coincide twice.

    • The hands coincide at 12:00, 1:05, 2:10, 3:15, 4:20, 5:25, 6:30, 7:35, 8:40, 9:45, 10:50, and 11:55.

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

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

Tell us how to improve this page.

Info Edge Software Engineer Interview Process

based on 14 interviews

5 Interview rounds

  • Coding Test Round
  • Technical Round - 1
  • Technical Round - 2
  • Technical Round - 3
  • HR Round
View more
Join Info Edge India’s first internet classifieds company.
Info Edge Software Engineer Salary
based on 232 salaries
₹7.5 L/yr - ₹19.8 L/yr
69% more than the average Software Engineer Salary in India
View more details

Info Edge Software Engineer Reviews and Ratings

based on 32 reviews

3.6/5

Rating in categories

3.8

Skill development

3.6

Work-life balance

3.6

Salary

4.2

Job security

3.5

Company culture

3.4

Promotions

3.4

Work satisfaction

Explore 32 Reviews and Ratings
Senior Executive
747 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Senior Executive
610 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
604 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Executive
448 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
352 salaries
unlock blur

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