Code360 powered by Coding Ninjas X Naukri.com. Code360 powered by Coding Ninjas X Naukri.com
Disney + Hotstar interview experience Real time questions & tips from candidates to crack your interview

Fullstack Developer

Disney + Hotstar
upvote
share-icon
3 rounds | 6 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2 Months
Topics: Tree, DP, OS, DBMS, Computer Networks, Data Structures
Tip
Tip

Tip 1 : Practice from Leetcode, solve Leetcode medium level problems.
Tip 2 : Brush up computer fundamentals from subjects like OS, DBMS and CN.
Tip 3 : Have a good project or good internship experience and have in-depth knowledge regarding what you have done.

Application process
Where: Other
Eligibility: 2021 Graduates, 7 CGPA
Resume Tip
Resume tip

Tip 1 : Have at least one good internship as preference were given to people having some experience.
Tip 2 : Mention your achievements (Competitive Coding, ICPC, GSOC) and some projects or open source experience.

Interview rounds

01
Round
Medium
Video Call
Duration60 minutes
Interview date23 Jul 2021
Coding problem3

It was Data Structures plus computer fundamentals round.

1. LRU Cache Implementation

Moderate
25m average time
65% success
0/80
Asked in companies
ZomatoQualcommOracle

Design and implement a data structure for Least Recently Used (LRU) cache to support the following operations:

1. get(key) - Return the value of the key if the key exists in the cache, otherwise return -1.

2. put(key, value), Insert the value in the cache if the key is not already present or update the value of the given key if the key is already present. When the cache reaches its capacity, it should invalidate the least recently used item before inserting the new item.
You will be given ‘Q’ queries. Each query will belong to one of these two types:
Type 0: for get(key) operation.
Type 1: for put(key, value) operation.
Note :
1. The cache is initialized with a capacity (the maximum number of unique keys it can hold at a time).

2. Access to an item or key is defined as a get or a put operation on the key. The least recently used key is the one with the oldest access time.
Try solving now

2. OS Questions

Mutex, Semaphore

3. DBMS Questions

Indexing, types of indexing, internal data structure of indexing, Normalization, Normalization vs De-Normalization, ACID property.
SQL queries on finding nth highest salary. Difference between stored procedures and functions.

02
Round
Medium
Face to Face
Duration60 minutes
Interview date22 Sep 2021
Coding problem2

Had some coding questions. Asked me about my projects. What is html. What is dom and how do we manipulate it.

1. Next Greater Element

Easy
10m average time
90% success
0/40
Asked in companies
IBMInfo Edge India (Naukri.com)Amazon

You are given an array 'a' of size 'n'.



The Next Greater Element for an element 'x' is the first element on the right side of 'x' in the array, which is greater than 'x'.


If no greater elements exist to the right of 'x', consider the next greater element as -1.


For example:
Input: 'a' = [7, 12, 1, 20]

Output: NGE = [12, 20, 20, -1]

Explanation: For the given array,

- The next greater element for 7 is 12.

- The next greater element for 12 is 20. 

- The next greater element for 1 is 20. 

- There is no greater element for 20 on the right side. So we consider NGE as -1.
Try solving now

2. Row with Maximum 1's

Easy
10m average time
90% success
0/40
Asked in companies
CognizantArcesiumSnapdeal

You have been given a non-empty grid ‘mat’ with 'n' rows and 'm' columns consisting of only 0s and 1s. All the rows are sorted in ascending order.

Your task is to find the index of the row with the maximum number of ones.

Note: If two rows have the same number of ones, consider the one with a smaller index. If there's no row with at least 1 zero, return -1.


Example:

Input: 'n' = 3, 'm' = 3, 'mat' = [[1, 1, 1], [0, 0, 1], [0, 0, 0]]

Output: 0

Explanation: The row with the maximum number of ones is 0 (0 - indexed).
Try solving now
03
Round
Medium
Video Call
Duration60 minutes
Interview date23 Sep 2021
Coding problem1

Interview with Engineering Manager

1. Technical Questions

Basic discussion over LLD of Jira software. Previous internship experience and other technical questions.

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

Suppose list1 is [2, 133, 12, 12], what is max(list1) in Python?

Choose another skill to practice
Start a Discussion
Similar interview experiences
SDE - 1
3 rounds | 5 problems
Interviewed by Disney + Hotstar
618 views
0 comments
0 upvotes
SDE - 1
3 rounds | 5 problems
Interviewed by Disney + Hotstar
395 views
0 comments
0 upvotes
SDE - Intern
3 rounds | 4 problems
Interviewed by Disney + Hotstar
2399 views
0 comments
0 upvotes
SDE - Intern
2 rounds | 3 problems
Interviewed by Disney + Hotstar
633 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Fullstack Developer
6 rounds | 5 problems
Interviewed by Microsoft
1676 views
0 comments
0 upvotes
company logo
Fullstack Developer
4 rounds | 10 problems
Interviewed by Paytm (One97 Communications Limited)
1468 views
1 comments
0 upvotes
company logo
Fullstack Developer
2 rounds | 2 problems
Interviewed by Samsung
1495 views
0 comments
0 upvotes