Skip to main content

Interview Questions

Review this list of 4,603 interview questions and answers verified by hiring managers and candidates.
  • Google logoAsked at Google 
    19 answers
    +15

    "Okay, so before we start discussing how to design this platform, I have a few questions I need details on. Clarification Questions: What do you mean by "Podcasting Platform"? Producing a platform and releasing it online takes several steps (Ideation, scripting, equipment selection, recording, editing, choosing a platform to release, etc.). Are we looking at any specific step here? - Free to Assume Am I PM at Google designing a Podcast Platform as a tool inside existing Google Pro"

    Pranay N. - "Okay, so before we start discussing how to design this platform, I have a few questions I need details on. Clarification Questions: What do you mean by "Podcasting Platform"? Producing a platform and releasing it online takes several steps (Ideation, scripting, equipment selection, recording, editing, choosing a platform to release, etc.). Are we looking at any specific step here? - Free to Assume Am I PM at Google designing a Podcast Platform as a tool inside existing Google Pro"See full answer

    Product Manager
    Product Design
    +1 more
  • Google logoAsked at Google 
    59 answers
    +56

    "Clarifying question: When you say users, what specific metric are we talking about?  Answer: we want to increase # of daily active users.  Assume active users are logged in users. Is there a region that we have in mind for this increase? Assume no, we want to think about globally Is there a specific device (mobile vs desktop) ? Assume no Approach: I want to first think about Youtube, its mission and current business at a high level. . Then I want to think about the current ecos"

    Yespm T. - "Clarifying question: When you say users, what specific metric are we talking about?  Answer: we want to increase # of daily active users.  Assume active users are logged in users. Is there a region that we have in mind for this increase? Assume no, we want to think about globally Is there a specific device (mobile vs desktop) ? Assume no Approach: I want to first think about Youtube, its mission and current business at a high level. . Then I want to think about the current ecos"See full answer

    Product Strategy
    System Design
  • DoorDash logoAsked at DoorDash 
    17 answers
    Video answer for 'How would you improve Spotify?'
    +14

    "Clarifying questions: Are there any specific constraints that you want me to take in to account when thinking through this problem : [Interviewer] No Can i think through this in freeform or is there a specific goal we are trying to achieve : [Interviewer] I will let you decide the goal Strategic Analysis: Spotifyies mission is to - "Unlock the potential of human creativity – by giving a million creative artists the opportunity to live off their art and billions of fans the o"

    Kunal S. - "Clarifying questions: Are there any specific constraints that you want me to take in to account when thinking through this problem : [Interviewer] No Can i think through this in freeform or is there a specific goal we are trying to achieve : [Interviewer] I will let you decide the goal Strategic Analysis: Spotifyies mission is to - "Unlock the potential of human creativity – by giving a million creative artists the opportunity to live off their art and billions of fans the o"See full answer

    Product Manager
    Product Design
  • Google logoAsked at Google 
    45 answers
    +41

    "Lyft at its core is a marketplace with drivers and cars on the supply side, and passengers on the demand side. I would begin by dividing the goal of the dashboard into two categories : Health of the marketplace Health of the app/ reliability from a technical perspective The second one is more straightforward so I’ll briefly mention some overarching metrics I would look at and come back to it later if time allows. Health or reliability of the app can be further divided into the following -"

    Sukriti C. - "Lyft at its core is a marketplace with drivers and cars on the supply side, and passengers on the demand side. I would begin by dividing the goal of the dashboard into two categories : Health of the marketplace Health of the app/ reliability from a technical perspective The second one is more straightforward so I’ll briefly mention some overarching metrics I would look at and come back to it later if time allows. Health or reliability of the app can be further divided into the following -"See full answer

    Data Scientist
    Analytical
  • +15

    "Clarifying questions: Open metrics - Number of times users open the google document on a given day 10% decline - is it a gradual decline or steep decline? (since when) Do we witness decline from a specific geography? Decline for consumers or enterprise customers? Decline from web or mobile app? Review logs or bug reports to check if there are customer issues reports Internal Determine if a particular release is causing the issue Review other metrics to check if fewer do"

    Sahil A. - "Clarifying questions: Open metrics - Number of times users open the google document on a given day 10% decline - is it a gradual decline or steep decline? (since when) Do we witness decline from a specific geography? Decline for consumers or enterprise customers? Decline from web or mobile app? Review logs or bug reports to check if there are customer issues reports Internal Determine if a particular release is causing the issue Review other metrics to check if fewer do"See full answer

    Product Manager
    Analytical
    +1 more
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Google logoAsked at Google 
    19 answers
    +16

    "Here is the sample answer from the Assistant at https://chat.openai.com/g/g-Z8yp2xrzt-fang-pm-interview-assistant As a Product Manager at Google, designing a product for air travelers involves leveraging Google's technological prowess and vast data resources. Here's a comprehensive approach: 1. \\Understanding Goals and Objectives\\ \\Primary Goal:\\ Enhance the travel experience for air travelers through seamless information access, personalized s"

    Manish M. - "Here is the sample answer from the Assistant at https://chat.openai.com/g/g-Z8yp2xrzt-fang-pm-interview-assistant As a Product Manager at Google, designing a product for air travelers involves leveraging Google's technological prowess and vast data resources. Here's a comprehensive approach: 1. \\Understanding Goals and Objectives\\ \\Primary Goal:\\ Enhance the travel experience for air travelers through seamless information access, personalized s"See full answer

    Product Manager
    Product Design
  • Meta logoAsked at Meta 
    43 answers
    Video answer for 'What goals would you set as PM for Facebook marketplaces?'
    +40

    "Clarification I would first try to understand what FB Marketplace is since I haven't really used it more than a few times. My understanding is the following Launched 2-3 years ago in the US, it is similar to web classified services such as Craigslist The sellers are not businesses but rather individuals, primarily in local areas Broad range of products with no particular focus: ranging from electronics, furniture, used cars to even apartment for rent. Sometimes posters are willin"

    Patrick B. - "Clarification I would first try to understand what FB Marketplace is since I haven't really used it more than a few times. My understanding is the following Launched 2-3 years ago in the US, it is similar to web classified services such as Craigslist The sellers are not businesses but rather individuals, primarily in local areas Broad range of products with no particular focus: ranging from electronics, furniture, used cars to even apartment for rent. Sometimes posters are willin"See full answer

    Product Manager
    Analytical
    +2 more
  • Stripe logoAsked at Stripe 
    10 answers
    Video answer for 'Design a Distributed LRU Cache'
    +7

    "One good reason for using the doubly linked list is that to remove an accessed item in the list from its existing position say in the middle of the list and move it to the head, you need to update the previous node's next pointer and the next node's previous pointer. A singly linked list only has next pointers, so removing from the middle would require traversing from the head to find the previous node which requires O(n) time. A doubly linked list allows O(1) removal from any position because w"

    Javed S. - "One good reason for using the doubly linked list is that to remove an accessed item in the list from its existing position say in the middle of the list and move it to the head, you need to update the previous node's next pointer and the next node's previous pointer. A singly linked list only has next pointers, so removing from the middle would require traversing from the head to find the previous node which requires O(n) time. A doubly linked list allows O(1) removal from any position because w"See full answer

    Engineering Manager
    System Design
    +1 more
  • Revolut logoAsked at Revolut 
    4 answers

    "Clarifying questions: How the hiring funnel looks like, where are the main drop offs, what are the longest phases, what systems we have in place for reminders and notifications. What should be the goal (double conversion, reduce time to hire) Offered some solutions, analysed them according to ICE framework, highlighter risks linked to solution. The last question was to pitch my suggested path to management."

    Shuly A. - "Clarifying questions: How the hiring funnel looks like, where are the main drop offs, what are the longest phases, what systems we have in place for reminders and notifications. What should be the goal (double conversion, reduce time to hire) Offered some solutions, analysed them according to ICE framework, highlighter risks linked to solution. The last question was to pitch my suggested path to management."See full answer

    Product Manager
    Analytical
    +1 more
  • Meta logoAsked at Meta 
    9 answers
    +6

    "Introduction UberSenior is a new service offered by Uber that provides safe, reliable, and convenient transportation for senior citizens. This PRD outlines the key features, functionalities, and user experience for both seniors and drivers using UberSenior. Problem Statement Existing transportation options for seniors often have limitations, including: Accessibility: Lack of vehicles equipped for mobility aids or physical limitations Technology barriers: Difficulty using smartphone"

    Shubham S. - "Introduction UberSenior is a new service offered by Uber that provides safe, reliable, and convenient transportation for senior citizens. This PRD outlines the key features, functionalities, and user experience for both seniors and drivers using UberSenior. Problem Statement Existing transportation options for seniors often have limitations, including: Accessibility: Lack of vehicles equipped for mobility aids or physical limitations Technology barriers: Difficulty using smartphone"See full answer

    Product Manager
    Product Design
  • +25

    "Clarifying questions To confirm, stories are available for 24 hrs What is the target increase for stories? Will we be applying this change globally vs. only in the close friends story view? Do we have any particular OKRs that we are trying to achieve? Mission Facebook is focused on creating and connecting communities. Instagram fits within FB's portfolio of products as it connects individuals often through a more creative and light-hearted medium"

    I C. - "Clarifying questions To confirm, stories are available for 24 hrs What is the target increase for stories? Will we be applying this change globally vs. only in the close friends story view? Do we have any particular OKRs that we are trying to achieve? Mission Facebook is focused on creating and connecting communities. Instagram fits within FB's portfolio of products as it connects individuals often through a more creative and light-hearted medium"See full answer

    Product Manager
    Analytical
    +1 more
  • Google logoAsked at Google 
    59 answers
    +56

    "Approach Clarify the question Define deaf --> unable to hear, but can communicate via sign language, lip read and use all other senses Define fire alarm --> for residential use, it notifies occupants of smoke and potential fires and alerts fire department to check in and/or come over Define constraints --> budgetary constraint, design should be user-friendly and convenient Define goals --> get folks out of harm's way quickly and notify fire department to c"

    Bella R. - "Approach Clarify the question Define deaf --> unable to hear, but can communicate via sign language, lip read and use all other senses Define fire alarm --> for residential use, it notifies occupants of smoke and potential fires and alerts fire department to check in and/or come over Define constraints --> budgetary constraint, design should be user-friendly and convenient Define goals --> get folks out of harm's way quickly and notify fire department to c"See full answer

    Product Manager
    Product Design
    +1 more
  • Google logoAsked at Google 
    28 answers
    +25

    "Candidate: Before we go ahead I have a few clarifying questions, I’d like to ask. Interviewer: Sure. Candidate: Just to clarify, we would like to improve WhatsApp and our goal is to earn revenue from it. Is that true? Interviewer: Yes, that is true. Candidate: Great, WhatsApp currently has 3 different plans. 1) Private WhatsApp 2) WhatsApp Business for small B2C businesses 3) WhatsApp Business API, for medium and large B2C businesses. I know that the 3’rd category"

    Jasmin R. - "Candidate: Before we go ahead I have a few clarifying questions, I’d like to ask. Interviewer: Sure. Candidate: Just to clarify, we would like to improve WhatsApp and our goal is to earn revenue from it. Is that true? Interviewer: Yes, that is true. Candidate: Great, WhatsApp currently has 3 different plans. 1) Private WhatsApp 2) WhatsApp Business for small B2C businesses 3) WhatsApp Business API, for medium and large B2C businesses. I know that the 3’rd category"See full answer

    Sales Representative
    Product Design
    +1 more
  • IBM logoAsked at IBM 
    70 answers
    +64

    "SELECT MIN(id) AS id, TRIM(LOWER(email)) AS cleaned_email FROM users GROUP BY cleaned_email ORDER BY id `"

    Salome L. - "SELECT MIN(id) AS id, TRIM(LOWER(email)) AS cleaned_email FROM users GROUP BY cleaned_email ORDER BY id `"See full answer

    Backend Engineer
    Coding
    +3 more
  • Amazon logoAsked at Amazon 
    4 answers
    +1

    "Let me tell you about the time where I pivoted strategies and we launched a paid loyalty program Instead of a free one. This was a time at Reddoorz when we were gearing up to launch a loyalty program to drive sustainable business by creating a loyal user base. Initially , we had decided to launch a program where users can Opt-In for free. The idea was to get On-Board at least 40% of repeat user base into the loyalty program to drive retention. Competitive bench marking also led to our inclinat"

    Vivek S. - "Let me tell you about the time where I pivoted strategies and we launched a paid loyalty program Instead of a free one. This was a time at Reddoorz when we were gearing up to launch a loyalty program to drive sustainable business by creating a loyal user base. Initially , we had decided to launch a program where users can Opt-In for free. The idea was to get On-Board at least 40% of repeat user base into the loyalty program to drive retention. Competitive bench marking also led to our inclinat"See full answer

    Product Manager
    Behavioral
  • +8

    "Clarify the problem. Ask lots of questions to uncover the root cause of the problem. This could be related to internal factors like releasing buggy updates or external factors like market trends, infrastructure, regulation etc etc. Establish where in the user journey the problem might be happening, if it's happening for a subset of users or for everyone e.g. on iOS platform etc etc, what time period has the problem occurred? Gradually or suddenly? How is the metric (in this case revenue)"

    Alice S. - "Clarify the problem. Ask lots of questions to uncover the root cause of the problem. This could be related to internal factors like releasing buggy updates or external factors like market trends, infrastructure, regulation etc etc. Establish where in the user journey the problem might be happening, if it's happening for a subset of users or for everyone e.g. on iOS platform etc etc, what time period has the problem occurred? Gradually or suddenly? How is the metric (in this case revenue)"See full answer

    Product Manager
    Analytical
    +1 more
  • Meta logoAsked at Meta 
    31 answers
    +28

    "Why do we have FB dating? How does it fit within FB's mission of connecting people and building community? Research shows that lonely people have worse health outcomes, get sick more easily, die faster, etc. There are many ways to solve for loneliness. FB already has Groups which connect people based on shared interests/hobbies. FB also has Messengers and other apps that help you connect with people you already know. Dating is an important way FB can help people form more intimate connections a"

    Patrick B. - "Why do we have FB dating? How does it fit within FB's mission of connecting people and building community? Research shows that lonely people have worse health outcomes, get sick more easily, die faster, etc. There are many ways to solve for loneliness. FB already has Groups which connect people based on shared interests/hobbies. FB also has Messengers and other apps that help you connect with people you already know. Dating is an important way FB can help people form more intimate connections a"See full answer

    Data Scientist
    Analytical
    +2 more
  • Amazon logoAsked at Amazon 
    26 answers
    Video answer for 'Tell me about a time when you solved pain points for customers.'
    +23

    "Please Review. Thanks In advance! Situation: ABC Product Planners asked me to help them to migrate their one Excel-based Macro into the web application. After having a few rounds of interviews with Product Planners, I realized that the macro was not able to solve their current problem due to its limitation and business teams were convinced that it couldn't be resolved completely. The key challenges they had with their current macro-based solutions were: It was able to compute all bui"

    Books' B. - "Please Review. Thanks In advance! Situation: ABC Product Planners asked me to help them to migrate their one Excel-based Macro into the web application. After having a few rounds of interviews with Product Planners, I realized that the macro was not able to solve their current problem due to its limitation and business teams were convinced that it couldn't be resolved completely. The key challenges they had with their current macro-based solutions were: It was able to compute all bui"See full answer

    Behavioral
  • +9

    "Alright, let's think through this change of moving the 'like' button to a menu under three dots on photos I'll start by aligning this change with Facebook's mission, analyze key insights, define the product mission for this update, Identify the eco-system (n-sided marketplace) Look at the effects on the eco-systems, Effects on their needs and pain points. Identify the most important actors and most important actions Come up with some metrics that we may be using to"

    Fahad K. - "Alright, let's think through this change of moving the 'like' button to a menu under three dots on photos I'll start by aligning this change with Facebook's mission, analyze key insights, define the product mission for this update, Identify the eco-system (n-sided marketplace) Look at the effects on the eco-systems, Effects on their needs and pain points. Identify the most important actors and most important actions Come up with some metrics that we may be using to"See full answer

    Product Manager
    Analytical
    +1 more
  • Google logoAsked at Google 
    39 answers
    +36

    "Gotcha, so I understand that our goal is to improve Google Docs and identify key metrics. Questions Is the purpose of these metrics to quantify the performance specifically of the features we suggest? Or Docs as a broader product and its impact on the Google ecosystem? Let's assume the former. Is there any goal we are trying to improve for Google Docs? Let's assume we want to increase usage, and have Docs also drive productivity suite subscriptions. Are there any specific"

    Daniel P. - "Gotcha, so I understand that our goal is to improve Google Docs and identify key metrics. Questions Is the purpose of these metrics to quantify the performance specifically of the features we suggest? Or Docs as a broader product and its impact on the Google ecosystem? Let's assume the former. Is there any goal we are trying to improve for Google Docs? Let's assume we want to increase usage, and have Docs also drive productivity suite subscriptions. Are there any specific"See full answer

    Analytical
    Product Design
Showing 101-120 of 4603
Exponent

Get updates in your inbox with the latest tips, job listings, and more.

Follow Us

Products
Courses
Interview Questions
Interview Experiences
Popular articles
Guides
Coaching
For Partners
Company
Exponent © 2026
Terms of Service | Privacy