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

i

This company page is being actively managed by Media.net Software Services (India) Team. If you also belong to the team, you can get access from here

Media.net Software Services (India) Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 235 Reviews

Play video Play video Video summary
  • About
  • Reviews
    235
  • Salaries
    1.9k
  • Interviews
    70
  • Jobs
    11
  • Benefits
    29
  • Photos
    2

Filter interviews by

Media.net Software Services (India) Interview Questions and Answers

Updated 22 Apr 2025
Popular Designations

51 Interview questions

A Software Engineer was asked 2mo ago
Q. Explain the bubble sort algorithm.
Ans. 

Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if needed.

  • Works by repeatedly comparing adjacent elements.

  • If the first element is greater than the second, they are swapped.

  • This process is repeated until no swaps are needed.

  • Example: Sorting [5, 3, 8, 4] results in [3, 4, 5, 8] after several passes.

  • Time complexity is O(n^2) in the worst cas...

View all Software Engineer interview questions
A Software Engineer was asked 2mo ago
Q. Write a function to check if a given string is a palindrome or not.
Ans. 

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

  • Definition: A palindrome is a word, phrase, or sequence that reads the same backward as forward. Examples include 'madam' and '12321'.

  • Ignoring Spaces and Punctuation: When checking for palindromes, spaces and punctuation are often ignored. For instance, 'A man, a plan, a canal, Panama!' is a palindrome.

  • Case Sensitivity: ...

View all Software Engineer interview questions
An Associate Product Manager was asked 7mo ago
Q. You are the PM of Amazon for cancellations/returns. An increase in the price drop of a product leads to increased returns and cancellations. How would you solve this issue?
Ans. 

Implement dynamic pricing strategies based on customer behavior and market trends to reduce price drops and returns.

  • Utilize data analytics to identify patterns in price drops and returns

  • Implement dynamic pricing algorithms to adjust prices in real-time based on demand and competition

  • Offer personalized discounts or promotions to incentivize customers to keep the product instead of returning it

  • Improve product descri...

View all Associate Product Manager interview questions
An Associate Product Manager was asked 7mo ago
Q. Netflix has just implemented password-sharing features. What next steps would you pursue for growth of Netflix, considering parameters like revenue, engagement, and retention?
Ans. 

Implement personalized recommendations, enhance user experience, and explore new revenue streams.

  • Implement personalized recommendations based on user viewing habits to increase engagement and retention.

  • Enhance user experience by improving interface, adding new features like offline viewing, and expanding content library.

  • Explore new revenue streams such as partnerships with content creators for exclusive content, t...

View all Associate Product Manager interview questions
An Associate Product Manager was asked 7mo ago
Q. Design an application to track the expiration of perishable items in a household.
Ans. 

An application to track expiry of perishable items in a household.

  • Allow users to input items with expiry dates

  • Send notifications when items are close to expiry

  • Provide suggestions for recipes using soon-to-expire items

View all Associate Product Manager interview questions
An Associate Product Manager was asked 7mo ago
Q. What parameters will you consider for building the recommender engine of a news aggregator website?
Ans. 

Parameters for building a recommender engine for a news aggregator website

  • User behavior and preferences

  • Content relevance and quality

  • Collaborative filtering

  • Personalization based on user demographics

  • Real-time updates and trending topics

View all Associate Product Manager interview questions
A DevOps Site Reliability Engineer was asked 7mo ago
Q. Elaborate on how DNS works.
Ans. 

DNS translates domain names to IP addresses to locate resources on the internet.

  • DNS stands for Domain Name System

  • It works by translating human-readable domain names (like www.google.com) into IP addresses (like 172.217.3.100)

  • DNS servers store records like A, CNAME, MX, TXT, etc. to provide information about domain names

  • DNS queries are sent from client devices to DNS servers to resolve domain names

  • DNS caching helps...

View all DevOps Site Reliability Engineer interview questions
Are these interview questions helpful?
A Site Reliability Engineer was asked 7mo ago
Q. Design a TCP server using TCP sockets and system calls.
Ans. 

Designing a TCP server using TCP sockets and sys calls

  • Create a socket using socket() system call

  • Bind the socket to an address and port using bind() system call

  • Listen for incoming connections using listen() system call

  • Accept incoming connections using accept() system call

  • Communicate with clients using read() and write() system calls

View all Site Reliability Engineer interview questions
A Database Developer was asked 9mo ago
Q. Explain the difference between a left join and a right join.
Ans. 

Left join includes all records from the left table and matching records from the right table. Right join includes all records from the right table and matching records from the left table.

  • Left join: Returns all records from the left table and the matched records from the right table.

  • Right join: Returns all records from the right table and the matched records from the left table.

  • Example: Left join - SELECT * FROM t...

View all Database Developer interview questions
A Web Developer was asked 11mo ago
Q. Given the head of a linked list, determine if the linked list has a cycle in it. There is a cycle in a linked list if there is some node in the list that can be reached again by continuously following the n...
Ans. 

Detect loop in a linked list by using Floyd's cycle detection algorithm.

  • Use two pointers, slow and fast, to traverse the linked list.

  • If there is a loop, the fast pointer will eventually meet the slow pointer.

  • Example: 1->2->3->4->5->2 (loop back to 2), slow and fast pointers will meet at node 2.

View all Web Developer interview questions
1 2 3 4 5 6

Media.net Software Services (India) Interview Experiences

70 interviews found

Database Developer Interview Questions & Answers

user image Anonymous

posted on 27 Sep 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Second highest Salary
  • Ans. 

    To find the second highest salary in a database table, you can use a SQL query with the ORDER BY and LIMIT clauses.

    • Use a SQL query with ORDER BY clause to sort the salaries in descending order.

    • Use LIMIT 1,1 to retrieve the second highest salary.

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1,1;

  • Answered by AI
    Add your answer
  • Q2. Left and right join explanation
  • Ans. 

    Left join includes all records from the left table and matching records from the right table. Right join includes all records from the right table and matching records from the left table.

    • Left join: Returns all records from the left table and the matched records from the right table.

    • Right join: Returns all records from the right table and the matched records from the left table.

    • Example: Left join - SELECT * FROM table1...

  • Answered by AI
    Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Question on Binary Search tree
  • Add your answer
  • Q2. One easy array question
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare sql questions and basics of DBMS

Skills evaluated in this interview

Anonymous

Web Developer Interview Questions & Answers

user image Anonymous

posted on 21 Jul 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. DSA easy-medium
  • Add your answer
  • Q2. HTTP/HTTPS, web fundamentals
  • Add your answer
Round 2 - Technical 

(3 Questions)

  • Q1. DSA medium (array, two pointer based)
  • Add your answer
  • Q2. Project based questions were asked
  • Add your answer
  • Q3. DSA easy - medium on string
  • Add your answer
Anonymous

Interview Questions & Answers

user image Anonymous

posted on 22 Feb 2025

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jan 2025.

Round 1 - Aptitude Test 

SQL, Web Tech, Logical Reasoning, Data Interpretation

Round 2 - Technical 

(1 Question)

  • Q1. SQL, Web Tech, Logical Reasoning, Data Interpretation
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Excel, Normal HR Questions
  • Add your answer
Anonymous

Associate Software Test Engineer Interview Questions & Answers

user image Anonymous

posted on 6 Oct 2024

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

Time and distance, profit-loss

Round 2 - Coding Test 

Basic programs like fibonacci, find second largest/smallest

Round 3 - HR 

(2 Questions)

  • Q1. Why are you switching
  • Ans. 

    Seeking new challenges and growth opportunities in software testing field.

    • Desire to work in a more challenging and dynamic environment

    • Interest in gaining experience in software testing

    • Opportunity for career growth and development

  • Answered by AI
    Add your answer
  • Q2. Salary discussion
  • Add your answer
Anonymous

Web Application Developer Interview Questions & Answers

user image Anonymous

posted on 24 Jul 2024

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

(2 Questions)

  • Q1. Dsa easy medium array question
  • Add your answer
  • Q2. Dsa medium tree question
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Web fundamentals
  • Add your answer
  • Q2. Dsa medium two pointer question
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 22 Apr 2025

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

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

  • Q1. Check string is pallindrome or not
  • Ans. 

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

    • Definition: A palindrome is a word, phrase, or sequence that reads the same backward as forward. Examples include 'madam' and '12321'.

    • Ignoring Spaces and Punctuation: When checking for palindromes, spaces and punctuation are often ignored. For instance, 'A man, a plan, a canal, Panama!' is a palindrome.

    • Case Sensitivity: Palin...

  • Answered by AI
    Add your answer
  • Q2. Bubble sort explanation
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - nothing
Anonymous

Analyst Interview Questions & Answers

user image Anonymous

posted on 12 Jul 2024

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

(2 Questions)

  • Q1. Tell us about the projects you worked on earlier
  • Add your answer
  • Q2. Case study discussion for amazon
  • Add your answer
Round 2 - Case Study 

Case study of you tube video success

Round 3 - HR 

(2 Questions)

  • Q1. Tell us about your self
  • Add your answer
  • Q2. Willing to relocate
  • Ans. 

    Yes, I am open to relocating for the right opportunity to advance my career and contribute to the team's success.

    • Relocation can provide exposure to new markets and clients, enhancing my professional growth.

    • I have previously relocated for a job, which helped me develop adaptability and resilience.

    • Being open to relocation allows me to explore diverse cultures and work environments, enriching my personal and professional ...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your resume and case studies on media marketing
Anonymous

Product Manager Interview Questions & Answers

user image Anonymous

posted on 26 Sep 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Case Study 

Guesstimate: what is the ecommerce apparel market size in India

Interview Preparation Tips

Interview preparation tips for other job seekers - Very structured case studies in the interviews. Prepare prodman case studies, guesstimates, improvement questions well
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Oct 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Add your answer
  • Q2. DS/Ago problem - dynamic programming
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - nothing
Anonymous

Product Manager Interview Questions & Answers

user image Anonymous

posted on 8 Apr 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Guesstimate on delivery boys
  • Add your answer
  • Q2. Metrics dashboard creation
  • Add your answer
Round 2 - One-on-one 

(1 Question)

  • Q1. Design thinking RCA
  • Add your answer
Round 3 - One-on-one 

(1 Question)

  • Q1. Past Experience, case study
  • Add your answer
Anonymous

Top trending discussions

View All
Interview Tips & Stories
5d (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 Media.net Software Services (India)?
Ask anonymously on communities.
More about working at Media.net Software Services (India)
  • HQ - Dubai, Dubai, United Arab Emirates (UAE)
  • Marketing & Advertising
  • 1k-5k Employees (India)

Media.net Software Services (India) Interview FAQs

How many rounds are there in Media.net Software Services (India) interview?
Media.net Software Services (India) interview process usually has 2-3 rounds. The most common rounds in the Media.net Software Services (India) interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Media.net Software Services (India) 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 Media.net Software Services (India). The most common topics and skills that interviewers at Media.net Software Services (India) expect are Digital Marketing, Campaign Management, Python, Javascript and Marketing.
What are the top questions asked in Media.net Software Services (India) interview?

Some of the top questions asked at the Media.net Software Services (India) interview -

  1. You are the PM of Amazon for cancellations/returns. Increase in price drop of a...read more
  2. 1 Hard DSA question. Given a sequence of positive numbers, make it a non-decrea...read more
  3. Netflix has just implemented password-sharing features. What next steps would y...read more
How long is the Media.net Software Services (India) interview process?

The duration of Media.net Software Services (India) interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Media.net Software Services (India) Interviews By Designations

  • Media.net Software Services (India) Web Application Developer Interview Questions
  • Media.net Software Services (India) Software Engineer Interview Questions
  • Media.net Software Services (India) Product Manager Interview Questions
  • Media.net Software Services (India) Software Developer Interview Questions
  • Media.net Software Services (India) Web Developer Interview Questions
  • Media.net Software Services (India) Research Analyst Interview Questions
  • Media.net Software Services (India) UI Developer Interview Questions
  • Media.net Software Services (India) Site Reliability Engineer Interview Questions
  • Show more
  • Media.net Software Services (India) Database Developer Interview Questions
  • Media.net Software Services (India) Analyst Interview Questions

Interview Questions for Popular Designations

  • Product Manager Interview Questions
  • Software Engineer Interview Questions
  • Web Application Developer Interview Questions
  • Web Developer Interview Questions
  • Software Developer Interview Questions
  • Senior Engineer Interview Questions
  • Consultant Interview Questions
  • Associate Software Engineer Interview Questions
  • Show more
  • Java Developer Interview Questions
  • Deputy Manager Interview Questions

Overall Interview Experience Rating

4/5

based on 57 interview experiences

Difficulty level

Easy 13%
Moderate 63%
Hard 23%

Duration

Less than 2 weeks 69%
2-4 weeks 17%
4-6 weeks 10%
6-8 weeks 3%
View more

Interview Questions from Similar Companies

R.R. Donnelley
R.R. Donnelley Interview Questions
3.8
 • 117 Interviews
Epsilon
Epsilon Interview Questions
3.8
 • 93 Interviews
Publicis
Publicis Interview Questions
3.7
 • 54 Interviews
Regalix
Regalix Interview Questions
2.9
 • 50 Interviews
Xdbs
Xdbs Interview Questions
3.1
 • 39 Interviews
Groupm Media
Groupm Media Interview Questions
3.8
 • 37 Interviews
Affinity Express
Affinity Express Interview Questions
3.0
 • 35 Interviews
Mediamint
Mediamint Interview Questions
3.4
 • 35 Interviews
Dentsu Aegis Network
Dentsu Aegis Network Interview Questions
3.3
 • 32 Interviews
Merkle Sokrati
Merkle Sokrati Interview Questions
3.8
 • 31 Interviews
View all

Media.net Software Services (India) Reviews and Ratings

based on 235 reviews

3.6/5

Rating in categories

3.1

Skill development

3.8

Work-life balance

3.4

Salary

3.2

Job security

3.6

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 235 Reviews and Ratings
Jobs at Media.net Software Services (India)
Media.net Software Services (India)
Media.Net - Manager - Business Finance (5-8 yrs)

5-8 Yrs

Not Disclosed

Media.net Software Services (India)
Media.Net - Senior Human Resources Business Partner (5-7 yrs)

5-7 Yrs

Not Disclosed

Media.net Software Services (India)
Media.Net - Associate Manager - Financial Planning & Analysis (2-5 yrs)

2-5 Yrs

Not Disclosed

Explore more jobs
Media.net Software Services (India) Salaries in India
Web Application Developer
70 salaries
unlock blur

₹7.8 L/yr - ₹14 L/yr

Research Analyst
53 salaries
unlock blur

₹2.5 L/yr - ₹4.8 L/yr

Softwaretest Engineer
49 salaries
unlock blur

₹4.5 L/yr - ₹9.2 L/yr

UI Developer
45 salaries
unlock blur

₹4.8 L/yr - ₹11 L/yr

Senior Product Analyst
44 salaries
unlock blur

₹16 L/yr - ₹24 L/yr

Explore more salaries
Compare Media.net Software Services (India) with
R.R. Donnelley

R.R. Donnelley

3.8
Compare
Epsilon

Epsilon

3.8
Compare
ChannelPlay

ChannelPlay

3.8
Compare
Affinity Express

Affinity Express

3.0
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Media.net Software Services (India) 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