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
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Manhattan Associates

Compare button icon Compare button icon Compare
3.6

based on 360 Reviews

  • About
  • Reviews
    360
  • Salaries
    3.3k
  • Interviews
    41
  • Jobs
    19
  • Benefits
    51
  • Photos
    -

Filter interviews by

Manhattan Associates Interview Questions and Answers

Updated 16 May 2025
Popular Designations

22 Interview questions

A Front end Developer was asked 1mo ago
Q. Create a counter application using React with TypeScript.
Ans. 

A simple counter component in React using TypeScript to increment and decrement a value.

  • Create a functional component using React and TypeScript.

  • Use useState hook to manage the counter state: const [count, setCount] = useState<number>(0);

  • Implement increment and decrement functions: const increment = () => setCount(count + 1); const decrement = () => setCount(count - 1);

  • Render buttons for increment and ...

View all Front end Developer interview questions
A Front end Developer was asked 1mo ago
Q. How would you animate a dropdown menu?
Ans. 

Create a smooth animated dropdown menu using CSS and JavaScript for enhanced user experience.

  • Use CSS transitions for smooth opening and closing effects. Example: `transition: max-height 0.3s ease;`

  • Set initial styles for the dropdown, such as `max-height: 0; overflow: hidden;` to hide it initially.

  • Toggle the dropdown visibility using JavaScript by changing the `max-height` property. Example: `dropdown.style.maxHeig...

View all Front end Developer interview questions
A Software Engineer was asked 6mo ago
Q. Implement a HashMap.
Ans. 

HashMap is a data structure that stores key-value pairs for efficient data retrieval.

  • HashMap allows O(1) average time complexity for get and put operations.

  • It handles collisions using techniques like chaining or open addressing.

  • Example: In Java, HashMap<String, Integer> map = new HashMap<>();

  • HashMap is not synchronized, making it unsuitable for multi-threaded environments without external synchronizati...

View all Software Engineer interview questions
A Java Software Developer was asked 10mo ago
Q. How does a HashMap work?
Ans. 

HashMap is a data structure in Java that stores key-value pairs and allows fast retrieval of values based on keys.

  • HashMap is part of the Java Collections framework.

  • Keys in a HashMap must be unique.

  • HashMap allows null keys and values.

  • Example: HashMap<String, Integer> map = new HashMap<>();

  • Example: map.put("John", 25);

View all Java Software Developer interview questions
A full stack .net developer was asked 12mo ago
Q. What is the difference between an interface and an abstract class?
Ans. 

Interface defines only method signatures while abstract class can have method implementations.

  • Interface cannot have method implementations, only method signatures.

  • Abstract class can have method implementations and variables.

  • A class can implement multiple interfaces but can inherit only one abstract class.

  • Interfaces are used for defining contracts while abstract classes are used for code reusability.

View all full stack .net developer interview questions
A full stack .net developer was asked 12mo ago
Q. What are two uses of the 'using' keyword?
Ans. 

The 'using' keyword is used in C# to ensure that an object is disposed of properly after use.

  • Automatically disposes of resources when they are no longer needed

  • Simplifies code by handling cleanup tasks

  • Example: using (var file = new FileStream("example.txt", FileMode.Open)) { // code here }

View all full stack .net developer interview questions
A full stack .net developer was asked 12mo ago
Q. What is dependency injection in Angular?
Ans. 

Dependency injection in Angular is a design pattern where components are given their dependencies rather than creating them.

  • Allows for easier testing and maintenance of code

  • Promotes reusability and modularity

  • Reduces tight coupling between components

  • Example: Injecting a service into a component constructor

View all full stack .net developer interview questions
Are these interview questions helpful?
A full stack .net developer was asked 12mo ago
Q. What is the use of the new keyword?
Ans. 

The new keyword is used in C# to create an instance of a class or structure.

  • Used to instantiate objects in C#

  • Can be used with constructors to initialize object properties

  • Helps in creating instances of classes or structures

View all full stack .net developer interview questions
A Software Engineer was asked
Q. What are the different types of joins in SQL?
Ans. 

SQL joins combine rows from two or more tables based on related columns, enabling complex queries and data retrieval.

  • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;

  • LEFT JOIN (or LEFT OUTER JOIN): Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;

  • RIGHT JOIN (or R...

View all Software Engineer interview questions
A Software Developer was asked
Q. Write a program to reverse a linked list.
Ans. 

Program to reverse a linked list

  • Create a function to reverse the linked list by changing the next pointers

  • Use three pointers to keep track of current, previous, and next nodes

  • Iterate through the list and update the pointers accordingly

  • Return the new head of the reversed linked list

View all Software Developer interview questions
1 2 3

Manhattan Associates Interview Experiences

41 interviews found

Java Software Developer Interview Questions & Answers

user image Anonymous

posted on 8 Sep 2024

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

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Spring annotations
  • Add your answer
  • Q2. Hashmap working
  • Ans. 

    HashMap is a data structure in Java that stores key-value pairs and allows fast retrieval of values based on keys.

    • HashMap is part of the Java Collections framework.

    • Keys in a HashMap must be unique.

    • HashMap allows null keys and values.

    • Example: HashMap<String, Integer> map = new HashMap<>();

    • Example: map.put("John", 25);

  • Answered by AI
    Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Simple coding question
  • Add your answer
  • Q2. Typecasting fgg
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Good in

Skills evaluated in this interview

Anonymous

Front end Developer Interview Questions & Answers

user image Anonymous

posted on 16 May 2025

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

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

  • Q1. Make a counter on React (Typescript)
  • Ans. 

    A simple counter component in React using TypeScript to increment and decrement a value.

    • Create a functional component using React and TypeScript.

    • Use useState hook to manage the counter state: const [count, setCount] = useState<number>(0);

    • Implement increment and decrement functions: const increment = () => setCount(count + 1); const decrement = () => setCount(count - 1);

    • Render buttons for increment and decre...

  • Answered by AI
    Add your answer
  • Q2. Animate a dropdown menu
  • Ans. 

    Create a smooth animated dropdown menu using CSS and JavaScript for enhanced user experience.

    • Use CSS transitions for smooth opening and closing effects. Example: `transition: max-height 0.3s ease;`

    • Set initial styles for the dropdown, such as `max-height: 0; overflow: hidden;` to hide it initially.

    • Toggle the dropdown visibility using JavaScript by changing the `max-height` property. Example: `dropdown.style.maxHeight = ...

  • Answered by AI
    Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 10 Jan 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. HashMap related coding question
  • Add your answer
Anonymous

Angular Frontend Developer Interview Questions & Answers

user image Anonymous

posted on 6 Jan 2025

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Bootstrapping process
  • Add your answer
  • Q2. Lifecycle hooks
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Jul 2024

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java , spring boot, sql, current roles discussion
  • Add your answer
Round 2 - HR 

(1 Question)

  • Q1. Ctc discussion took place
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - keep fundamentals clear and strong. R&D is only worth joining here, rest pso and cso are not worth as you wont get to work on java or related stuff.
Anonymous

full stack .net developer Interview Questions & Answers

user image Anonymous

posted on 28 Jun 2024

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

I applied via Approached by Company and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. What is the use of new keywords
  • Ans. 

    The new keyword is used in C# to create an instance of a class or structure.

    • Used to instantiate objects in C#

    • Can be used with constructors to initialize object properties

    • Helps in creating instances of classes or structures

  • Answered by AI
    Add your answer
  • Q2. Difference between interface and abstract class
  • Ans. 

    Interface defines only method signatures while abstract class can have method implementations.

    • Interface cannot have method implementations, only method signatures.

    • Abstract class can have method implementations and variables.

    • A class can implement multiple interfaces but can inherit only one abstract class.

    • Interfaces are used for defining contracts while abstract classes are used for code reusability.

  • Answered by AI
    Add your answer
  • Q3. Give 2 uses of using keyword
  • Ans. 

    The 'using' keyword is used in C# to ensure that an object is disposed of properly after use.

    • Automatically disposes of resources when they are no longer needed

    • Simplifies code by handling cleanup tasks

    • Example: using (var file = new FileStream("example.txt", FileMode.Open)) { // code here }

  • Answered by AI
    Add your answer
  • Q4. What is pipes in Angular
  • Ans. 

    Pipes in Angular are used for transforming data in templates.

    • Pipes are used to format data before displaying it in the view

    • They can be used for currency, date, uppercase/lowercase transformations, etc.

    • Example: {{ birthday | date:'MM/dd/yyyy' }}

  • Answered by AI
    Add your answer
  • Q5. What is dependency injection in Angular
  • Ans. 

    Dependency injection in Angular is a design pattern where components are given their dependencies rather than creating them.

    • Allows for easier testing and maintenance of code

    • Promotes reusability and modularity

    • Reduces tight coupling between components

    • Example: Injecting a service into a component constructor

  • Answered by AI
    Add your answer
  • Q6. 1 coding question
  • Add your answer
Round 2 - HR 

(2 Questions)

  • Q1. Why you are leaving your corrent organization
  • Ans. 

    Seeking new challenges and growth opportunities

    • Desire for career advancement

    • Looking for new challenges and learning opportunities

    • Seeking a more collaborative work environment

    • Company restructuring or changes in management

  • Answered by AI
    Add your answer
  • Q2. Why should i hire you
  • Ans. 

    I have a strong background in full stack development with expertise in .NET technologies.

    • Extensive experience in developing web applications using .NET framework

    • Proficient in front-end technologies like HTML, CSS, and JavaScript

    • Skilled in back-end development with C# and SQL Server

    • Proven track record of delivering high-quality projects on time

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basic clear

Skills evaluated in this interview

Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 4 Apr 2025

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

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

  • Q1. Core java in depth
  • Add your answer
  • Q2. Problem solving skills
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 4 Jul 2023

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

I applied via Naukri.com and was interviewed in Jun 2023. There were 5 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 

(1 Question)

  • Q1. About OOPS concept, basic SQL questions, core Java questions
  • Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. Core Java questions, simple coding questions, SQL questions.
  • Add your answer
Round 4 - Behavioral 

(3 Questions)

  • Q1. Asked about the work I did in previous company, what are my strengths?, Discussed regarding current job roles and responsibilities Puzzle questions
  • Add your answer
  • Q2. How to pour exact half water from one container to other without knowing the measurements?
  • Ans. 

    Use the tilt method to pour exact half water from one container to other without measurements.

    • Fill both containers with water

    • Tilt one container slowly until water reaches the halfway mark

    • Stop pouring when the water level reaches halfway in the other container

  • Answered by AI
    View 1 more answer
  • Q3. A dog fell into 30 feet well, trying to climb up to the ground. It will climb 3 feets a day, but in night it will drop 2 feets, So how many days do dog required to reach ground?
  • Ans. 

    The dog will take 28 days to reach the ground.

    • The dog climbs 1 foot (3 feet climb - 2 feet drop) each day.

    • It needs to climb 30 feet to reach the ground.

    • So, it will take 30 days to climb 30 feet, but it will already be on the ground on the 28th day.

  • Answered by AI
    View 1 more answer
Round 5 - HR 

(1 Question)

  • Q1. Discussed about why I am leaving the previous company, About salary, Date of joining.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviews will be easy, they just check whether we know about concept, whether we try to solve problems...
Anonymous

Software Engineer Interview Questions & Answers

user image Rakshsmart Gowda

posted on 30 May 2024

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

2 dsa which is leetcode easy mostly and also some java related

Round 2 - One-on-one 

(1 Question)

  • Q1. Manager round on how we fit in team
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Hr discussion on the pay expectations
  • Add your answer
Anonymous

Java Developer Interview Questions & Answers

user image Anonymous

posted on 28 Jul 2023

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jun 2023. There were 5 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 - One-on-one 

(1 Question)

  • Q1. Basic questions on oops, exception handling, spring boot annotations, collections
  • Add your answer
Round 3 - One-on-one 

(1 Question)

  • Q1. Coding questions on Java 8 features, streams, lambdas as well
  • Add your answer
Round 4 - One-on-one 

(1 Question)

  • Q1. This is was kind of managerial round. Goes with questions like what is your learning, why job switch, difficult part of your job and some puzzles as well
  • Add your answer
Round 5 - HR 

(1 Question)

  • Q1. Questions like self intro, fam background, why manhattan, what do you know about manhattan, package, strengths and weakness
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - For the 3rd round, they call you to office for a F2F interview. After that HR round takes place and they just say that your interview did not yield a positive response. When you ask for feedback, they simply laugh at your face. This is the worst that can be done to an applicant.
P.S- I was a referred candidate
Anonymous

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Manhattan Associates?
Ask anonymously on communities.
More about working at Manhattan Associates
  • HQ - Atlanta,Georgia, United States
  • IT Services & Consulting
  • 1k-5k Employees (India)
  • Internet
  • Retail

Manhattan Associates Interview FAQs

How many rounds are there in Manhattan Associates interview?
Manhattan Associates interview process usually has 2-3 rounds. The most common rounds in the Manhattan Associates interview process are Technical, One-on-one Round and HR.
How to prepare for Manhattan Associates 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 Manhattan Associates. The most common topics and skills that interviewers at Manhattan Associates expect are Supply Chain, Front End, Commerce, Analytical and Linux.
What are the top questions asked in Manhattan Associates interview?

Some of the top questions asked at the Manhattan Associates interview -

  1. How to pour exact half water from one container to other without knowing the me...read more
  2. A dog fell into 30 feet well, trying to climb up to the ground. It will climb 3...read more
  3. 1. Find number of times a string occurs in second string. Practice more on stri...read more
How long is the Manhattan Associates interview process?

The duration of Manhattan Associates interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Manhattan Associates Interviews By Designations

  • Manhattan Associates Software Engineer Interview Questions
  • Manhattan Associates Senior Software Engineer Interview Questions
  • Manhattan Associates Software Developer Interview Questions
  • Manhattan Associates Quality Analyst Interview Questions
  • Manhattan Associates Technical Lead Interview Questions
  • Manhattan Associates Java Developer Interview Questions
  • Manhattan Associates Technical Analyst Interview Questions
  • Manhattan Associates Principal Interview Questions
  • Show more
  • Manhattan Associates QA Engineer Interview Questions
  • Manhattan Associates Senior Manager Interview Questions

Interview Questions for Popular Designations

  • Software Engineer Interview Questions
  • Senior Software Engineer Interview Questions
  • Software Developer Interview Questions
  • Associate Interview Questions
  • Analyst Interview Questions
  • Team Lead Interview Questions
  • Intern Interview Questions
  • System Engineer Interview Questions
  • Show more
  • HR Executive Interview Questions
  • Deputy Manager Interview Questions

Overall Interview Experience Rating

4.2/5

based on 31 interview experiences

Difficulty level

Easy 16%
Moderate 84%

Duration

Less than 2 weeks 68%
2-4 weeks 32%
View more

Interview Questions from Similar Companies

ITC Infotech
ITC Infotech Interview Questions
3.7
 • 376 Interviews
Newgen Software Technologies
Newgen Software Technologies Interview Questions
3.8
 • 193 Interviews
3i Infotech
3i Infotech Interview Questions
3.4
 • 151 Interviews
Happiest Minds Technologies
Happiest Minds Technologies Interview Questions
3.6
 • 140 Interviews
Microland
Microland Interview Questions
3.5
 • 137 Interviews
Test Yantra Software Solutions
Test Yantra Software Solutions Interview Questions
3.1
 • 131 Interviews
Sify Technologies
Sify Technologies Interview Questions
3.8
 • 131 Interviews
Mastek
Mastek Interview Questions
3.6
 • 127 Interviews
Maveric Systems
Maveric Systems Interview Questions
3.5
 • 124 Interviews
Sonata Software
Sonata Software Interview Questions
3.4
 • 122 Interviews
View all

Manhattan Associates Reviews and Ratings

based on 360 reviews

3.6/5

Rating in categories

3.2

Skill development

3.4

Work-life balance

3.3

Salary

4.0

Job security

3.5

Company culture

3.3

Promotions

3.2

Work satisfaction

Explore 360 Reviews and Ratings
Jobs at Manhattan Associates
Manhattan Associates
Senior Security Analyst

Bangalore / Bengaluru

1-5 Yrs

Not Disclosed

Manhattan Associates
Solutions Engineer - OMS/Supply Chain Planning

Bangalore / Bengaluru

2-6 Yrs

Not Disclosed

Manhattan Associates
Senior NOC - Critical Incident Management

Bangalore / Bengaluru

1-6 Yrs

Not Disclosed

Explore more jobs
Manhattan Associates Salaries in India
Software Engineer
743 salaries
unlock blur

₹5.1 L/yr - ₹12 L/yr

Senior Software Engineer
473 salaries
unlock blur

₹14 L/yr - ₹25.5 L/yr

Technical Lead
252 salaries
unlock blur

₹20.5 L/yr - ₹36.2 L/yr

Senior Consultant
109 salaries
unlock blur

₹13.5 L/yr - ₹22 L/yr

Technical Analyst
101 salaries
unlock blur

₹5 L/yr - ₹10.2 L/yr

Explore more salaries
Compare Manhattan Associates with
ITC Infotech

ITC Infotech

3.7
Compare
3i Infotech

3i Infotech

3.4
Compare
Sify Technologies

Sify Technologies

3.8
Compare
Microland

Microland

3.5
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Manhattan Associates 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