Open In App

Media.net Interview Experience | On-Campus

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

The whole interview process was divided into three rounds.
The first round was an online coding round of 1 hour and 30 minutes conducted on interview bit. There were a total of three questions and only two students were shortlisted from my college. The next round was on hangouts and that was an algorithmic round and they asked 1 question and they wanted first logic and then code. In the final round, they ask puzzles, questions related to my academic course and about my project.

Round 1 (Coding Round):

  1. You have given a matrix filled of size(n*m, 0< n, m <=1000 ) with 0 and 1. There were q( 0 < q >=100000 ) queries and in each query you will provide (i, j) and k, and you have to find the largest square with centre (i, j) and no. of 1’s in the matrix will be at most k. Hint :(binary search on largest matrix size)
  2. There is tree of N ( 0< N <=10^5) vertices and E edges (0< E <10^5) . You have been given q queries and in each query, you have given two vertices and you have to remove the edge between these two vertices and give the largest size of the tree from the resultant forest. Hint: (Disjoint set).
  3. There are N doors and N persons, the ith person stands on the ith door. There is a cost of entering in each door and also there are M roads connecting (a road connecting two doors) with some cost. You have to return the minimum cost for each person if they want to enter anyone of the door. (A person can enter the door at which he stands or he can move to some other door if the path exist and enter in that door ).

Round 2:

This was algorithmic round so he gave me 1 question.

  1. You have been given two arrays A and B, the first array consists of integer and the second array consists of 0 and 1. There is an operation given:- you can choose any adjacent bits in array B and you can toggle these two bits (00->11, 10->01, 11->00, 01->10) and you can perform this operation any no. of times. Output -> You have to return the sum of A[0]*B[0]+A[1]*B[1]…..A[N-1]*B[N-1]. This sum should be maximum.

Round 3:

  1. You have given two numbers n and m and you want to reach from n to m. You have given two operations a). You can double the number n and b). You can subtract 1 from n. Output -> minimum no. of operation. (eg-> n=6, m=21, output will be 5 => 6, 12, 11, 22, 21)
  2. Explain Inheritance.
  3. What is Interface?
  4. Search and insert in linear probing(hashing).
  5. Difference between thread and process.
  6. About your projects.

Last Updated : 27 Apr, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads