Upload Button Icon Add office photos
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 211 Reviews

Filter interviews by

Media.net Software Services (India) Software Developer Interview Questions, Process, and Tips

Updated 10 Mar 2024

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

  • Q1. Interleaving Two Strings Problem Statement You are given three strings 'A', 'B', and 'C'. Determine if 'C' is formed by interleaving 'A' and 'B'. String 'C' is an interl ...read more
  • Q2. Construct Binary Tree from Inorder and Postorder Traversal Given two lists representing the inorder and postorder traversal of a binary tree of integer type with 'N' nod ...read more
  • Q3. Nodes at Distance K from Target Node in Binary Tree Given a Binary Tree of distinct integers and two integers, target and K , return a list of values of all nodes locate ...read more
View all 6 questions

Media.net Software Services (India) Software Developer Interview Experiences

5 interviews found

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

I applied via campus placement at The LNM Institute of information Technology, Jaipur and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Coding Test 

It will be around 3 hours and 2 questions of leetcode hard difficulty will be asked in the interview and 1 question is of codeforces 2400+ difficulty question.

Round 2 - Technical 

(2 Questions)

  • Q1. 1-2 DSA medium-hard difficulty question will be asked.
  • Q2. CS fundamentals in depth had been asked in the ending of the interview.
Round 3 - Technical 

(1 Question)

  • Q1. System Design problem was asked.
Round 4 - HR 

(1 Question)

  • Q1. This is a cultural fit round. Common HR question was asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Competitive programmer at the minimum rank of codeforces specialist is must.In depth knowledge of CS fundamentals is required. Basic Understanding of system design concepts is must,with standard problems.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2023. 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 

Held on interview bit. 3 ques were asked. Questions were from range query and DP.

Round 3 - Technical 

(1 Question)

  • Q1. 1 Hard DSA question. Given a sequence of positive numbers, make it a non-decreasing sequence. Operation allowed: adjacent elements can be added to form a single element. What is the minimum no of operatio...

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA as much as you can. Be well-versed in CS fundamentals such as CN, OS, DBMS, and OOPS.
Practice CP if you can.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Asked two array and string dsa questions of medium-hard level

Interview Preparation Tips

Topics to prepare for Media.net Software Services (India) Software Developer interview:
  • DSA

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Hard

The test was at 6 pm with cam on and in fullscreen mode.

  • Q1. 

    Interleaving Two Strings Problem Statement

    You are given three strings 'A', 'B', and 'C'. Determine if 'C' is formed by interleaving 'A' and 'B'.

    String 'C' is an interleaving of 'A' and 'B' if the lengt...

  • Ans. Brute-force

    Approach:

    In order to solve this problem, let us solve a smaller problem first. Let’s assume that the length of the string A and B is 1 and the length of the string C is 2. Now in order to check whether C is formed by interleaving A and B or not, we consider the last character of string C and if this character matches neither with the character of the string A nor with the character of string B, then we retur...

  • Answered Anonymously
  • Q2. 

    Construct Binary Tree from Inorder and Postorder Traversal

    Given two lists representing the inorder and postorder traversal of a binary tree of integer type with 'N' nodes, construct the binary tree and r...

  • Ans. Depth First Search

    To solve this problem, first, we take the last element in the ‘POST_ORDER’  array/list as the root because we know post-order traversal is like the first traverse of the left subtree nodes and then the right subtree node at the end traverse root. Hence the root is present as the last element of post-order traversal. Then we find the position of the root data in the ‘IN_ORDER’ array/list. Let’s as...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

At 10:00 AM. Interviewer was very friendly and young but his cam was off.

  • Q1. 

    Find Paths in Binary Tree

    Kevin has sketched a series of integers, forming a diagram that represents a binary tree. Challenged by a friend, Kevin needs to find all paths from the root to the leaf where th...

  • Ans. Depth First Search and Backtracking

    The basic idea is to perform Depth First Search on the given binary Tree and keep track of the current sum and whenever reached the lead node check if the sum becomes equal to the ‘K’ then pick this path, otherwise just backtrack to the previous node and exclude the value of this leaf node from the current sum.

     

    We are here using a helper function that is recursive in nature and i...

  • Answered Anonymously
Round 3 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

It was held at 4 p.m. The interviewer was senior compared to the one in the previous round. Also, his cam was also on, but he wasn't speaking much and neither giving any expressions.

  • Q1. 

    Boxes of Power Problem Statement

    Given a set of boxes represented by an array gainPower, where each box has a certain power value, along with an initial power value 'power', your task is to maximize the t...

  • Ans. Two Pointers

    The idea is to sort the given array ‘gainPower’ and then use the two-pointer approach. Use two pointers ‘i’ and ‘j’ - one at the beginning and the other at the end of the array ‘gainPower’.

    If the current power is greater than the power of the ith box, then increase the score by 1, subtract the power of the ith box from the current power and remove the box from the set. Otherwise, if the score is greater tha...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in MumbaiEligibility criteriaNone except no active backlogsMedia.net interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, DP, OOPS, Operating Systems, Computer NetworksTime required to prepare for the interview - 7 monthsInterview preparation tips for other job seekers

Tip 1 : DSA is the key. Starting from scratch, one can become proficients in a couple of months.
Tip 2 : Solve questions just a bit outside your comfort zone. Solve too easy to too hard questions is not of any use.
Tip 3 : Be consistent, make a habit of following good coding practices.
Tip 4 : Get to know the ins and out of your projects. You must be very confident while explaining those.
Tip 5 : Don't just directly to system-design, brush up on OOPS principles, networks, OS, DBMS before that.

Application resume tips for other job seekers

Tip 1 : Keep it crisp and to the point. Make bullet points.
Tip 2 : Bold the things you want to be paid attention to. Use numbers rather than vague sentences.
Tip 3 : Only put the things you are confident about.
Tip 4 : Don't put things irrelevant to the job, it only dilutes the main content.

Final outcome of the interviewRejected

Skills evaluated in this interview

Media.net Software Services (India) interview questions for designations

 Software Engineer

 (5)

 Software Intern

 (1)

 Web Developer

 (5)

 Database Developer

 (2)

 UI Developer

 (2)

 PHP Developer

 (1)

 Software Development Engineer

 (1)

 Web Application Developer

 (6)

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Easy

This round was conducted in Hackerrank portal for a total duration of 75 minutes and was divided into 4 sections.

1st Section : Aptitude Section : 14 questions , 28 minutes
2nd Section : Technical Section : 12 questions , 17 minutes
3rd Section :1 coding Questions : 20 minutes+30 minutes

This Round was Conducted on Hackerrank (Webcam Enabled).

  • Q1. Given a problem statement and a piece of code, how would you find and correct the bug in the code?
  • Q2. 

    Nodes at Distance K from Target Node in Binary Tree

    Given a Binary Tree of distinct integers and two integers, target and K, return a list of values of all nodes located at a distance K from the target no...

  • Ans. Efficient Approach

    The basic idea of this approach is to divide the set of nodes into two groups:

    1. Nodes that are present in the subtree are rooted at the target node.
    2. Rest of the nodes.

    For any node which is present in the subtree rooted at the target node, we can very easily find the list of node values that are at ‘K’ distance from the target node.

     

    Let us assume a function 

    getNodesAtDistance(TreeNode<int>...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

I was shared a link of Google Meet and the Google Docs was shared where there was 1 coding problem to be coded there and then the code was run on an IDE to check the sample tests.
Then the interview was followed by a lot of Operating System and Computer System Architecture Questions.
There were 2 Interviewers and both were helpful.
The timing was from 2:30 PM to 4:00 PM

  • Q1. 

    Subarray Challenge: Largest Equal 0s and 1s

    Determine the length of the largest subarray within a given array of 0s and 1s, such that the subarray contains an equal number of 0s and 1s.

    Input:

    Input beg...

  • Ans. Brute Force
    • We generate all the possible subarrays by using two nested loops.
    • We can run two nested loops, the outer loop picks the starting element and the inner loop picks the ending element.
    • The third loop considers all elements in between the starting and ending elements.
    • Check if each subarray has equal number of 0s and 1s
    • This can be easily done by considering 0 as -1 and 1 as 1 since the sum for equal numbers of 0s a...
  • Answered Anonymously
Round 3 - HR 

Round duration - 45 minutes
Round difficulty - Easy

The round was held on Google Meet with HR from 2:30 PM to 3:15 PM.
The HR was friendly and asked the basic questions.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in MumbaiEligibility criteriaAbove 8 CGPAMedia.net interview preparation:Topics to prepare for the interview - DP, Greedy Techniques, Sorting Concepts, OS, DBMSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice daily 4-5 medium level problems on sites like Leetcode, CodeZen, Hackerearth
Tip 2 : Even though Data Structures and Algorithms is the base but study Course Subjects like DBMS,OS,OOPS too.
Tip 3 : Try to Participate in Contests on LeetCode,Codeforces.

Application resume tips for other job seekers

Tip 1 : Mention atleast 1 project and past work experience as it sets good impression.
Tip 2 : Keep your resume up to date for the role you are applying.
Tip 3 : Try to keep your resume of 1 Page.

Final outcome of the interviewSelected

Skills evaluated in this interview

Get interview-ready with Top Media.net Software Services (India) Interview Questions

Interview questions from similar companies

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

(4 Questions)

  • Q1. Basic JavaScript and React.js questions
  • Q2. Questions on functions, hooks and DOM
  • Q3. Questions on SSR
  • Q4. Questions on strings and arrays
Round 2 - Coding Test 

Api related questions

I applied via Naukri.com and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Assignment 

Html, css, javascript

Round 2 - Technical 

(1 Question)

  • Q1. Magento2 related questions.
Round 3 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why are you looking for a change?
  • Q3. Share details of your previous job.

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand the interviewars question what they want.

Interview Questionnaire 

2 Questions

  • Q1. Core python
  • Q2. OOPS concept
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Dot net related stuffs
  • Q2. Dependency injection
Round 2 - Coding Test 

Built an app using dot net and angular

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

I applied via Referral and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

In this round, there is aptitude & 2 coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Java oops concept
  • Q2. Again Live coding test
Round 3 - HR 

(1 Question)

  • Q1. Discussion about salary and company

Interview Preparation Tips

Topics to prepare for Kantar Analytics Practice Software Engineer interview:
  • Core Java
  • Advanced Java
  • Springboot

Media.net Software Services (India) Interview FAQs

How many rounds are there in Media.net Software Services (India) Software Developer 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, Coding Test and Resume Shortlist.
What are the top questions asked in Media.net Software Services (India) Software Developer interview?

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

  1. 1 Hard DSA question. Given a sequence of positive numbers, make it a non-decrea...read more
  2. CS fundamentals in depth had been asked in the ending of the intervi...read more
  3. This is a cultural fit round. Common HR question was ask...read more

Tell us how to improve this page.

Media.net Software Services (India) Software Developer Interview Process

based on 3 interviews

1 Interview rounds

  • Coding Test Round
View more

Interview Questions from Similar Companies

R.R. Donnelley Interview Questions
3.9
 • 99 Interviews
Publicis Interview Questions
3.7
 • 54 Interviews
Regalix Interview Questions
2.9
 • 44 Interviews
Xdbs Interview Questions
3.2
 • 39 Interviews
Groupm Media Interview Questions
4.0
 • 35 Interviews
Mediamint Interview Questions
3.5
 • 32 Interviews
Merkle Sokrati Interview Questions
3.8
 • 31 Interviews
PubMatic Interview Questions
4.1
 • 29 Interviews
View all
Media.net Software Services (India) Software Developer Salary
based on 21 salaries
₹10.9 L/yr - ₹38 L/yr
198% more than the average Software Developer Salary in India
View more details

Media.net Software Services (India) Software Developer Reviews and Ratings

based on 3 reviews

3.8/5

Rating in categories

2.4

Skill development

3.9

Work-life balance

3.8

Salary

2.1

Job security

3.0

Company culture

2.3

Promotions

2.3

Work satisfaction

Explore 3 Reviews and Ratings
Web Application Developer
77 salaries
unlock blur

₹7.5 L/yr - ₹20 L/yr

Research Analyst
59 salaries
unlock blur

₹2.5 L/yr - ₹9 L/yr

Softwaretest Engineer
44 salaries
unlock blur

₹4.5 L/yr - ₹11.1 L/yr

Product Operations Analyst
40 salaries
unlock blur

₹3.8 L/yr - ₹8 L/yr

Digital Marketing Associate
39 salaries
unlock blur

₹4 L/yr - ₹5.5 L/yr

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

PubMatic

4.1
Compare

Affle

3.1
Compare

Komli Media

4.0
Compare

Vserv Digital Services

4.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview