Skip to main content

Interview Questions

Review this list of 4,415 interview questions and answers verified by hiring managers and candidates.
  • Behavioral
    Product Strategy
    +1 more
  • Airbnb logoAsked at Airbnb 
    1 answer

    "You should be able to easily identify this as a Measure Success question. These kinds of questions are used to test your analytical skills, as well as your ability to track project progress post-launch. Recall the strategy for tackling them methodically and thoroughly: Ask clarifying questions State the goal of the feature / product Behavior Mapping / UX Flow Mapping Provide criteria to prioritize metrics Prioritize metrics Summarize Let's begin! "

    Exponent - "You should be able to easily identify this as a Measure Success question. These kinds of questions are used to test your analytical skills, as well as your ability to track project progress post-launch. Recall the strategy for tackling them methodically and thoroughly: Ask clarifying questions State the goal of the feature / product Behavior Mapping / UX Flow Mapping Provide criteria to prioritize metrics Prioritize metrics Summarize Let's begin! "See full answer

    Product Manager
    Analytical
  • LinkedIn logoAsked at LinkedIn 
    Add answer
    Product Strategy
  • Capital One logoAsked at Capital One 
    Add answer
    Product Manager
    Product Design
  • Microsoft logoAsked at Microsoft 
    Add answer
    Product Design
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Qualtrics logoAsked at Qualtrics 
    Add answer
    Product Design
  • Meta logoAsked at Meta 
    1 answer

    "I first asked few clarifying questions like the return array may need not contain the list of building in the same order, to which the interviewer agreed. Then I came up with an approach where we iterate the array from right to left and keep a max variable which will keep the value of the current max. When we find an item which is greater than max we update the max and add this element into our solution. The interviewer agreed for the approach. I discussed few corner scenarios with the interview"

    Rishabh N. - "I first asked few clarifying questions like the return array may need not contain the list of building in the same order, to which the interviewer agreed. Then I came up with an approach where we iterate the array from right to left and keep a max variable which will keep the value of the current max. When we find an item which is greater than max we update the max and add this element into our solution. The interviewer agreed for the approach. I discussed few corner scenarios with the interview"See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
  • Product Manager
    Execution
  • Pinterest logoAsked at Pinterest 
    Add answer
    Product Manager
    Product Strategy
  • Lightbox logoAsked at Lightbox 
    1 answer

    "I used the star framework to talk about a webhooks feature I designed to compliment an API product we were building, the client only asked for the APIs but I saw some inherent flaws in the polling mechanism with the APi product and decided to build a webhook notification system"

    Lakshmi T. - "I used the star framework to talk about a webhooks feature I designed to compliment an API product we were building, the client only asked for the APIs but I saw some inherent flaws in the polling mechanism with the APi product and decided to build a webhook notification system"See full answer

    Product Manager
    Behavioral
  • Confluent logoAsked at Confluent 
    1 answer

    "We are asked to calculate Sum(over value) for time in (t - window_size, t) where key in (key criteria). To develop a function to set this up. Let w be the window size. I would have an observer of some kind note the key-value, and for the first w windows just add the value to a temporary variable in memory if the key meets the key criteria. Then it would delete the oldest value and add the new value if the new key meets the criteria. At each step after "w", we would take the sum / w and store"

    Prashanth A. - "We are asked to calculate Sum(over value) for time in (t - window_size, t) where key in (key criteria). To develop a function to set this up. Let w be the window size. I would have an observer of some kind note the key-value, and for the first w windows just add the value to a temporary variable in memory if the key meets the key criteria. Then it would delete the oldest value and add the new value if the new key meets the criteria. At each step after "w", we would take the sum / w and store"See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
  • Meta logoAsked at Meta 
    1 answer

    "Question: How would you improve airport layover? Clarifying Questions What’s my role? Product Manager at a specific company? - Product Manager at the company that builds the airport Digital Product or Physical Product? - Make my own assumption Specific Airport? Country? Airline? - Airport in the US Has both international and domestic Why? Airport layovers are becoming more common as international travel picks up post COVID Increasing # of travellers Layovers as a"

    Siddhant S. - "Question: How would you improve airport layover? Clarifying Questions What’s my role? Product Manager at a specific company? - Product Manager at the company that builds the airport Digital Product or Physical Product? - Make my own assumption Specific Airport? Country? Airline? - Airport in the US Has both international and domestic Why? Airport layovers are becoming more common as international travel picks up post COVID Increasing # of travellers Layovers as a"See full answer

    Product Manager
    Product Design
  • "clarify: so does the 5% drop a sudden drop or overtime in the one week does it broadly drop 5% or it dropped only in some regions or in some segments like new acqusition / frequent active customers? or does the 5% drop also happened last year same period? DAU = acqusition x activation x retention segment: I will first quickly do some EDA to find out problem, like calculate the DAU drop in new customer, tenured customer, between regions to find out is there any difference. then I will also look"

    Yuexiang Y. - "clarify: so does the 5% drop a sudden drop or overtime in the one week does it broadly drop 5% or it dropped only in some regions or in some segments like new acqusition / frequent active customers? or does the 5% drop also happened last year same period? DAU = acqusition x activation x retention segment: I will first quickly do some EDA to find out problem, like calculate the DAU drop in new customer, tenured customer, between regions to find out is there any difference. then I will also look"See full answer

    Data Scientist
    Analytical
  • Google logoAsked at Google 
    Add answer
    Product Manager
    Product Design
  • Walgreens logoAsked at Walgreens 
    Add answer
    Product Manager
    Analytical
    +1 more
  • Google logoAsked at Google 
    1 answer

    "What is the goal of this product? If its engagement for the people in a flight, can other options be explored? If there is a particular business insistence for hangman for engagement, the following can be the features of the game: Pain point: Typing might be hard Feature: Connect with phone keyboard to enable typing Pain point: These games do not engage multiple people simultaneously. Have leaderboards and multiplayer duels where the game is designed to hang the other player in case of a"

    Ranjani M. - "What is the goal of this product? If its engagement for the people in a flight, can other options be explored? If there is a particular business insistence for hangman for engagement, the following can be the features of the game: Pain point: Typing might be hard Feature: Connect with phone keyboard to enable typing Pain point: These games do not engage multiple people simultaneously. Have leaderboards and multiplayer duels where the game is designed to hang the other player in case of a"See full answer

    Product Design
  • Google logoAsked at Google 
    1 answer

    "Question: An array of n integers is given, and a positive integer k, where k << n. k indicates that the absolute difference between each element's current index (icurrent) and the index in the sorted array (isorted) is less than k (|icurr - isorted| < k). Sort the given array. The most common solution is with a Heap: def solution(arr, k): min_heap = [] result = [] for i in range(len(arr)) heapq.heappush(min_heap, arr[i]) "

    Guilherme M. - "Question: An array of n integers is given, and a positive integer k, where k << n. k indicates that the absolute difference between each element's current index (icurrent) and the index in the sorted array (isorted) is less than k (|icurr - isorted| < k). Sort the given array. The most common solution is with a Heap: def solution(arr, k): min_heap = [] result = [] for i in range(len(arr)) heapq.heappush(min_heap, arr[i]) "See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
  • Wealthsimple logoAsked at Wealthsimple 
    1 answer

    "This is another Diagnosis problem. To answer this question, we suggest you use our framework (along with the TROPIC method) to be as thorough as possible. The framework is as follows: Ask clarifying questions List potential high level reasons Gather Context (TROPIC)Time Region Other features / products (internal) Platform Industry / Competition Cannibalization Establish a theory of probable cause Test theories Propose solutions Summarize "

    Exponent - "This is another Diagnosis problem. To answer this question, we suggest you use our framework (along with the TROPIC method) to be as thorough as possible. The framework is as follows: Ask clarifying questions List potential high level reasons Gather Context (TROPIC)Time Region Other features / products (internal) Platform Industry / Competition Cannibalization Establish a theory of probable cause Test theories Propose solutions Summarize "See full answer

    Product Manager
    Analytical
    +1 more
  • Product Manager
    Analytical
    +1 more
  • Meta logoAsked at Meta 
    Add answer
    Product Manager
    Product Design
Showing 3061-3080 of 4415