Upload Button Icon Add office photos

Filter interviews by

Disney+ Hotstar Product Designer Interview Questions and Answers

Updated 1 Feb 2024

Disney+ Hotstar Product Designer Interview Experiences

1 interview found

Product Designer Interview Questions & Answers

user image Monika Saikrishnan

posted on 1 Feb 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. A task will be given, only is its shortlisted ull be taken to the next round
  • Q2. Theyll just assign u with a task
Round 2 - One-on-one 

(1 Question)

  • Q1. I was not selected nga

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

Asked to present my portfolio and case study

Round 2 - Case Study 

Questions regarding case study and usability testings methods

Round 3 - One-on-one 

(2 Questions)

  • Q1. White boarding exercise
  • Q2. Design a app for gifting personalized gifts to family members
  • Ans. 

    An app for personalized gift-giving to family members

    • Allow users to create profiles for each family member

    • Include a variety of customizable gift options such as mugs, photo frames, and jewelry

    • Provide a reminder feature for important dates like birthdays and anniversaries

    • Offer a secure payment gateway for easy transactions

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Assignment 

Nothing much just about generic landing pages

Round 2 - HR 

(1 Question)

  • Q1. Very easy, about your project just talk
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Question are very tough and faad

Round 2 - Coding Test 

Question like trees linked list and graphs

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck for your future
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. They asked me about web workers and web assembly. The whole questions were planned to reject the candidate.

Interview Preparation Tips

Interview preparation tips for other job seekers - Better opportunities are there.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Assignment 

Design a poster and then adapt into different sizes for Google ads and FB Ads.

Round 3 - HR 

(1 Question)

  • Q1. Past experience and what lead to join MX Player

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and make a fantastic portfolio in OTT perspective
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Oct 2023.

Round 1 - Assignment 

Strategy Roadmap - mention strategies to increase profit per order

Round 2 - One-on-one 

(3 Questions)

  • Q1. 5 year roadmap of Netflix
  • Ans. 

    Netflix plans to focus on expanding original content, global expansion, technology innovation, partnerships, and improving user experience over the next 5 years.

    • Expand original content library to attract and retain subscribers

    • Continue global expansion to reach new markets and increase subscriber base

    • Invest in technology innovation to enhance streaming quality and personalization

    • Form strategic partnerships with content ...

  • Answered by AI
  • Q2. Explain a past project in detail
  • Q3. How will you grow user count of Amazon from x to 10x in 2 years?
  • Ans. 

    To grow user count of Amazon from x to 10x in 2 years, focus on customer acquisition, retention, and engagement strategies.

    • Implement targeted marketing campaigns to attract new users

    • Enhance user experience to increase retention rate

    • Leverage data analytics to understand user behavior and preferences

    • Expand product offerings to cater to a wider audience

    • Utilize social media and influencer partnerships for brand awareness

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Difficult interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Assignment 

Sql questions- mainly around window functions and joins

Round 2 - Case Study 

How would you understand if suddenly order dropped by 20% for flipkart
Statistics questions as well

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on structured thinking, statistics should be crisp

I applied via Recruitment Consultant and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1. Favourite Product
  • Ans. 

    My favourite product is the iPhone.

    • Sleek design and user-friendly interface

    • High-quality camera and advanced features

    • Seamless integration with other Apple products

    • Regular software updates and strong security measures

  • Answered by AI
  • Q2. 2. Build a search algorithm for a social media app
  • Ans. 

    Build a search algorithm for a social media app

    • Identify relevant search criteria such as keywords, hashtags, user profiles, and location

    • Rank search results based on relevance and popularity

    • Implement filters to refine search results

    • Consider user behavior and search history to personalize results

    • Optimize search speed and efficiency

  • Answered by AI
  • Q3. 3. How would you go about launching a new city for a food tech startup like Swiggy

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for all types of product interview questions like RCA, GTM, Metrics of different types of companies etc.

Read about the company and ask lots of questions

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    0/1 Knapsack Problem Statement

    A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...

  • Ans. 

    Yes, the 0/1 Knapsack problem can be solved using dynamic programming with a space complexity of not more than O(W).

    • Use a 1D array to store the maximum value that can be stolen for each weight capacity from 0 to W.

    • Iterate through each item and update the array based on whether including the item would increase the total value.

    • The final value in the array at index W will be the maximum value that can be stolen.

  • Answered by AI
  • Q2. 

    Find the Second Largest Element

    Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.

    If a second largest element does not exist, return -1.

    Example:

    Input:
    ARR = [2,...
  • Ans. 

    Find the second largest element in an array of integers.

    • Iterate through the array to find the largest and second largest elements.

    • Handle cases where all elements are identical.

    • Return -1 if a second largest element does not exist.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

System Design Round

  • Q1. Design a system for Twitter, discussing its architecture, key components, and scalability considerations.
  • Ans. 

    Design a scalable system for Twitter with key components and architecture.

    • Use microservices architecture for scalability and fault isolation.

    • Key components include user service, tweet service, timeline service, and notification service.

    • Use a distributed database like Cassandra for storing tweets and user data.

    • Implement a message queue like Kafka for handling real-time updates and notifications.

    • Use a caching layer like ...

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

It is just a formality

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaResume shortlistingSwiggy interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Core Java, Algorithms, DBMS, SQL,Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : System Design
Tip 2 : Practice questions from leetcode
Tip 3 : Have some projects.

Application resume tips for other job seekers

Tip 1 : Mention what you know 
Tip 2 : Good previous work to showcase

Final outcome of the interviewSelected

Skills evaluated in this interview

Disney+ Hotstar Interview FAQs

How many rounds are there in Disney+ Hotstar Product Designer interview?
Disney+ Hotstar interview process usually has 2 rounds. The most common rounds in the Disney+ Hotstar interview process are Technical and One-on-one Round.
How to prepare for Disney+ Hotstar Product Designer 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 Disney+ Hotstar. The most common topics and skills that interviewers at Disney+ Hotstar expect are Visual Design, Web Technologies, Management, Coding and Graphics.
What are the top questions asked in Disney+ Hotstar Product Designer interview?

Some of the top questions asked at the Disney+ Hotstar Product Designer interview -

  1. A task will be given, only is its shortlisted ull be taken to the next ro...read more
  2. Theyll just assign u with a t...read more
  3. I was not selected ...read more

Tell us how to improve this page.

Disney+ Hotstar Product Designer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 430 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
CARS24 Interview Questions
3.5
 • 334 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Zepto Interview Questions
3.5
 • 221 Interviews
BlackBuck Interview Questions
3.8
 • 179 Interviews
Tata 1mg Interview Questions
3.6
 • 146 Interviews
Digit Insurance Interview Questions
3.9
 • 142 Interviews
Paisabazaar.com Interview Questions
3.4
 • 139 Interviews
Urban Company Interview Questions
3.4
 • 135 Interviews
View all
Assistant Manager
62 salaries
unlock blur

₹12 L/yr - ₹31.7 L/yr

Engagement Manager
55 salaries
unlock blur

₹20 L/yr - ₹44 L/yr

Senior Executive
51 salaries
unlock blur

₹5.3 L/yr - ₹21 L/yr

Software Development Engineer II
44 salaries
unlock blur

₹19 L/yr - ₹52.7 L/yr

Senior Manager
35 salaries
unlock blur

₹19.5 L/yr - ₹76 L/yr

Explore more salaries
Compare Disney+ Hotstar with

Netflix

4.5
Compare

Amazon Prime Video

3.8
Compare

SonyLIV

1.0
Compare

ZEE5

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