Upload Button Icon Add office photos

Filter interviews by

Media Net Associate/Senior Associate -(Nontechnical) Interview Questions and Answers

Updated 3 Jun 2021

Media Net Associate/Senior Associate -(Nontechnical) Interview Experiences

1 interview found

Interview Questionnaire 

2 Questions

  • Q1. Case study to start a food delivery business in a given area
  • Q2. Questions on ad-tech and company and its products

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Grammer and aptitude test

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was quite good experience. Not so fearful or technical related it's cool one who have good communication skill they can easily crack the job. All the best

I applied via Other and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Typing speed

Interview Preparation Tips

Interview preparation tips for other job seekers - Be specific and answer to the point .
Excellent English communication is must

I appeared for an interview before May 2020.

Interview Questionnaire 

1 Question

  • Q1. Personal questions technical skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy Pearson test

Interview Questionnaire 

1 Question

  • Q1. How will you deliver best results to customer

I appeared for an interview in Aug 2020.

Interview Questionnaire 

2 Questions

  • Q1. Situation based questions
  • Q2. What extra have you done or gone deep to resolve your costumers issue

Interview Preparation Tips

Interview preparation tips for other job seekers - Amazon hire pro recruiting process is confusing.
The result of the online assessment will be sent via mail within nano Seconds (less than seconds)
As soon as the candidates end the online test they will receive an email stating we regret to inform you have not cleared the test. After two weeks or more , Again the team sends a mail stating congratulations for clearing the online assessment n you have been qualified for the HR ops round with the CTC details and also a meeting with hiring manager will be scheduled where the manager first explains the Job role , shift timing , nature of work , week-off and lastly two situation based questions. Once the Interview meeting with Manager is done after three to four weeks , the HR teams sends same regret notification mail and say you have not cleared the final round, we wish you good luck for the future.
This is my experience with Amazon interview and I have experienced this situation twice.

Interview Questionnaire 

6 Questions

  • Q1. 1.Tell me about yourself?
  • Q2. 2. Strength and weakness?
  • Q3. About the Project?
  • Q4. Why non-tech
  • Q5. Why amzon?
  • Q6. Apart from your carrer goals what are your personal goals?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Analytics round was the first round which was easy

Round 2 - Technical 

(2 Questions)

  • Q1. No. of footballs in the air
  • Q2. Design fridge for the blind
  • Ans. 

    Designing a fridge for the blind requires tactile and auditory cues for easy navigation and organization.

    • Include braille labels on shelves and drawers for easy identification of items.

    • Utilize voice recognition technology for hands-free operation.

    • Implement textured buttons and knobs for temperature control and settings.

    • Incorporate a talking feature that announces the contents of the fridge when opened.

    • Ensure contrasting...

  • Answered by AI

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

Round 1 - Coding Test 

They given 2 program to to 1-2 hour

Round 2 - One-on-one 

(1 Question)

  • Q1. Ask basic programming questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Uplers is good company, preparation on coding skills and some besic technical knowledge required

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Online test which can be attempted anytime between 22 May 2020, 06:00 AM and 25 May 2020, 01:00 AM

  • Q1. 

    Postfix Expression Evaluation Problem Statement

    Given a postfix expression, your task is to evaluate the expression. The operator will appear in the expression after the operands. The output for each expr...

  • Ans. 

    Evaluate postfix expressions by applying operators to operands in a given order.

    • Iterate through the postfix expression and push operands onto a stack

    • When an operator is encountered, pop the required number of operands from the stack, apply the operator, and push the result back onto the stack

    • Continue until the entire expression is evaluated and the final result is left on the stack

  • Answered by AI
  • Q2. 

    Dice Throws Problem Statement

    You are given D dice, each having F faces numbered from 1 to F. The task is to determine the number of possible ways to roll all the dice such that the sum of the face-up num...

  • Ans. 

    The task is to determine the number of possible ways to roll all the dice such that the sum of the face-up numbers equals the given 'target' sum.

    • Use dynamic programming to solve the problem efficiently.

    • Create a 2D array to store the number of ways to achieve each sum with different number of dice.

    • Iterate through the dice and sum possibilities to fill up the array.

    • Return the result modulo 10^9 + 7.

    • Optimize the solution ...

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

June 25 2020
Timing: 12:00 pm to 1:00 pm
This round was completely devoted to coding. I was asked to introduce myself and then 2 coding questions were asked.

  • Q1. 

    Find First and Last Positions of an Element in a Sorted Array

    Given a sorted array ARR consisting of N integers and an integer X, find the first and last positions of occurrence of X in the array.

    Note:

    ...
  • Ans. 

    Find the first and last positions of an element in a sorted array efficiently.

    • Use binary search to find the first occurrence of X in the array.

    • Use binary search to find the last occurrence of X in the array.

    • Handle cases where X is not present or present only once.

    • Return the first and last positions as 0-based indices.

  • Answered by AI
  • Q2. 

    Maze with N Doors and 1 Key Problem Statement

    You are given an N x N maze where some cells have doors, and you have a key that can be used only once to open a door. Determine if there exists a path from t...

  • Ans. 

    Determine if there exists a path from the top-left cell to the bottom-right cell of a maze with N doors and 1 key.

    • Use depth-first search (DFS) or breadth-first search (BFS) to explore possible paths through the maze.

    • Keep track of the cells visited and use the key only once to open doors.

    • Check if the bottom-right cell is reachable after traversing the maze.

    • Handle edge cases such as the top-left and bottom-right cells ha...

  • Answered by AI
Round 3 - Video Call 

Round duration - 60 minutes
Round difficulty - Medium

9th July 2020
6:30PM to 7:30PM

Round 4 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

23-July 2020
4:00 PM to 5:00 PM
Coding questions + Several questions on computer fundamentals and networking were asked in a rapid-fire manner.

  • Q1. 

    Stock Trading Maximum Profit Problem

    Given the stock prices for 'N' days, your goal is to determine the maximum profit that can be achieved. You can buy and sell the stocks any number of times but can onl...

  • Ans. 

    The goal is to determine the maximum profit that can be achieved by buying and selling stocks on different days.

    • Iterate through the stock prices and buy on the days when the price is lower than the next day's price, and sell on the days when the price is higher than the next day's price.

    • Calculate the profit by summing up the differences between buying and selling prices.

    • Repeat the process for each test case and output

  • Answered by AI
Round 5 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

6- Aug 2020
3:00 PM to 4:00 PM
Resceduled to: @5:30 PM
Projects, Fundamentals check, Behavioral, Coding

  • Q1. 

    Path Counting in Directed Graph

    Given a directed graph with a specified number of vertices V and edges E, your task is to calculate the total number of distinct paths from a given source node S to all ot...

  • Ans. 

    Calculate total number of distinct paths from a given source node to all other nodes in a directed graph.

    • Use dynamic programming to keep track of the number of paths from the source node to each node.

    • Consider the modulo operation to handle large numbers efficiently.

    • Start by initializing the number of paths from the source node to itself as 1.

    • Iterate through all edges and update the number of paths for each destination ...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. Eligibility criteriaDevelopment skills and leadership principlesAmazon interview preparation:Topics to prepare for the interview - Data structures, OOPS, Operating systems, DBMS, NetworkingTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Be confident while answering questions
Tip 2 : Make the interview conversational and Always keep a smiling face
Tip 3 : Ask something at the end of the interview which shows your interest in the company
Tip 4 : Prepare projects on the skills mentioned in the resume

Application resume tips for other job seekers

Tip 1 : Mention projects and internships.
Tip 2 : Keep your resume short and crisp.

Final outcome of the interviewSelected

Skills evaluated in this interview

Media Net Interview FAQs

What are the top questions asked in Media Net Associate/Senior Associate -(Nontechnical) interview?

Some of the top questions asked at the Media Net Associate/Senior Associate -(Nontechnical) interview -

  1. Case study to start a food delivery business in a given a...read more
  2. Questions on ad-tech and company and its produ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.1k Interviews
Swiggy Interview Questions
3.8
 • 434 Interviews
Uber Interview Questions
4.2
 • 149 Interviews
Expedia Group Interview Questions
3.8
 • 75 Interviews
LinkedIn Interview Questions
4.3
 • 65 Interviews
OLX Interview Questions
3.8
 • 57 Interviews
Facebook Interview Questions
4.3
 • 52 Interviews
Groupon Interview Questions
3.1
 • 42 Interviews
Uplers Interview Questions
4.0
 • 41 Interviews
Fareportal Interview Questions
3.3
 • 30 Interviews
View all
Research Analyst
7 salaries
unlock blur

₹2.4 L/yr - ₹4 L/yr

Data Engineer
7 salaries
unlock blur

₹8 L/yr - ₹14 L/yr

Senior Product Analyst
7 salaries
unlock blur

₹15 L/yr - ₹20.5 L/yr

Web Application Developer
6 salaries
unlock blur

₹7.5 L/yr - ₹10 L/yr

UI Developer
6 salaries
unlock blur

₹4 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Media Net with

Amazon

4.0
Compare

Udaan

3.9
Compare

Uber

4.2
Compare

Fareportal

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