Skip to main content

Interview Questions

Review this list of 4,477 interview questions and answers verified by hiring managers and candidates.
  • Meta logoAsked at Meta 
    36 answers
    +33

    "Clarifications: Borrowing and lending can refer to a wide range of things (goods, money, crypto etc.). What are we planning to allow users to borrow? (Answer: Money) Who is going to build this product (Answer: Meta) Who will they borrow it from? Does Meta plan to lend money or is it Peer 2 Peer? (Answer: P2P) What geography do we want to build it for? And are there any other constraints in terms of timelines and resources (_Answer: US first. No constraints. Timeline of 6-12"

    Bhagyesh V. - "Clarifications: Borrowing and lending can refer to a wide range of things (goods, money, crypto etc.). What are we planning to allow users to borrow? (Answer: Money) Who is going to build this product (Answer: Meta) Who will they borrow it from? Does Meta plan to lend money or is it Peer 2 Peer? (Answer: P2P) What geography do we want to build it for? And are there any other constraints in terms of timelines and resources (_Answer: US first. No constraints. Timeline of 6-12"See full answer

    Product Manager
    Product Design
  • +1

    "First Clarify whether this is for FB general account or business account Why is removing the profile pic being considered in the first place? Declining conversion rates? TTV(signup to post creation) is perceived as too high wrt competing apps? Meta is considering a single signup for all its apps(FB, Insta, WA) & is looking to optimize the same? Do we have any supporting data for this? user feedback? Next Look at current FB signup flow(assuming these are the steps since its be"

    Debajyoti B. - "First Clarify whether this is for FB general account or business account Why is removing the profile pic being considered in the first place? Declining conversion rates? TTV(signup to post creation) is perceived as too high wrt competing apps? Meta is considering a single signup for all its apps(FB, Insta, WA) & is looking to optimize the same? Do we have any supporting data for this? user feedback? Next Look at current FB signup flow(assuming these are the steps since its be"See full answer

    Product Manager
    Analytical
    +1 more
  • +4

    "average price per transaction would drop because we might not be considering currency exchange rates, which is much lower in India and Southeast Asia, when aggregating data globally. to define success, i'll first segment the data, separating existing markets to newer ones to check if that is the cause of the dropping average price. then i'll select a north star metric, which would be the number of completed transactions vs. attempted. i'll also track supporting metrics like usage frequency and"

    Sam E. - "average price per transaction would drop because we might not be considering currency exchange rates, which is much lower in India and Southeast Asia, when aggregating data globally. to define success, i'll first segment the data, separating existing markets to newer ones to check if that is the cause of the dropping average price. then i'll select a north star metric, which would be the number of completed transactions vs. attempted. i'll also track supporting metrics like usage frequency and"See full answer

    Product Manager
    Analytical
  • Product Manager
    Product Strategy
  • Google logoAsked at Google 
    24 answers
    +20

    "Clarifying Travellers in this context are people who are taking domestic or international flights. Answer: Correct. Are we designing to integrate into an existing product line or completely standalone? Answer: Integrate into existing products. Are we designing for a specific geography? Answer: Let’s try North America first; we can expand later. Company Mission Organize the world’s information and make it universally accessible and useful. Company Strategy "

    Darpan D. - "Clarifying Travellers in this context are people who are taking domestic or international flights. Answer: Correct. Are we designing to integrate into an existing product line or completely standalone? Answer: Integrate into existing products. Are we designing for a specific geography? Answer: Let’s try North America first; we can expand later. Company Mission Organize the world’s information and make it universally accessible and useful. Company Strategy "See full answer

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

  • DoorDash logoAsked at DoorDash 
    Add answer
    BizOps & Strategy
    Product Strategy
  • 1 answer

    "I'll approach this by asking questions and creating scenarios based on answers. If the answer to any questions points to a specific issue, I'll double down on that to understand the issue. This is more of a RCA question. First I'll quickly check Were there any recent updates released before we observed the drops? Assuming Yes, I'll check the updates released and check the test cases and testing results If the issue is identified, I will engage with the product leadership, update them and conne"

    Aekagra S. - "I'll approach this by asking questions and creating scenarios based on answers. If the answer to any questions points to a specific issue, I'll double down on that to understand the issue. This is more of a RCA question. First I'll quickly check Were there any recent updates released before we observed the drops? Assuming Yes, I'll check the updates released and check the test cases and testing results If the issue is identified, I will engage with the product leadership, update them and conne"See full answer

    Product Manager
    Analytical
    +1 more
  • Google logoAsked at Google 
    Add answer
    Engineering Manager
    People Management
  • Engineering Manager
    People Management
  • "It's a 2Sum question with duplicate array elements."

    Anzhe M. - "It's a 2Sum question with duplicate array elements."See full answer

    Data Engineer
    Data Structures & Algorithms
    +1 more
  • Uber logoAsked at Uber 
    Add answer
    Product Manager
    Product Strategy
  • Uber logoAsked at Uber 
    1 answer

    "To improve the passenger experience at a major metropolitan airport, I would focus on streamlining the pre-arrival, arrival, and post-flight stages of their journey. Pre-arrival, we could integrate flight details into the Uber app and provide predictive ETAs to help passengers plan better. At the airport, we could partner with authorities to create dedicated drop-off and pickup zones, along with clear in-app navigation to reduce confusion. Post-flight, we could implement dynamic pickup zones, vi"

    Prashant S. - "To improve the passenger experience at a major metropolitan airport, I would focus on streamlining the pre-arrival, arrival, and post-flight stages of their journey. Pre-arrival, we could integrate flight details into the Uber app and provide predictive ETAs to help passengers plan better. At the airport, we could partner with authorities to create dedicated drop-off and pickup zones, along with clear in-app navigation to reduce confusion. Post-flight, we could implement dynamic pickup zones, vi"See full answer

    Product Manager
    Product Design
  • Uber logoAsked at Uber 
    5 answers
    +2

    "To determine whether we should introduce a new ads placement on the Uber homepage, I will use the following framework: Clarifying Questions Mission and Goals User Journey and Pain Points A/B Testing Plan Decision-Making Criteria 1. Clarifying Questions To ensure I fully understand the problem, I would ask: What type of ads are we considering? For example, are they full-screen ads, banner ads, or native ads integrated into the feed? --> Take your"

    Shrey H. - "To determine whether we should introduce a new ads placement on the Uber homepage, I will use the following framework: Clarifying Questions Mission and Goals User Journey and Pain Points A/B Testing Plan Decision-Making Criteria 1. Clarifying Questions To ensure I fully understand the problem, I would ask: What type of ads are we considering? For example, are they full-screen ads, banner ads, or native ads integrated into the feed? --> Take your"See full answer

    Product Manager
    Analytical
    +1 more
  • "MOD = 10**9 + 7 def max_stability(reliability, availability): max_stability = 1 for r, a in zip(reliability, availability): Compute stability of the current server stability = r * a if stability != 0: Multiply into max_stability and take modulo maxstability = (maxstability * stability) % MOD return max_stability reliability = [1, 2, 2] availability = [1, 1, 3] print(max_stability(reliability, availability)) # Output the result mo"

    K.nithish K. - "MOD = 10**9 + 7 def max_stability(reliability, availability): max_stability = 1 for r, a in zip(reliability, availability): Compute stability of the current server stability = r * a if stability != 0: Multiply into max_stability and take modulo maxstability = (maxstability * stability) % MOD return max_stability reliability = [1, 2, 2] availability = [1, 1, 3] print(max_stability(reliability, availability)) # Output the result mo"See full answer

    Software Engineer
    Coding
  • "def mostefficientseqscore(parentheses, efficiencyratings): mes = [] for i in range(len(parentheses)): mes.append((parentheses[i], max(efficiency_ratings[i])) return sum([m[1] for m in mes]) `"

    Nathan C. - "def mostefficientseqscore(parentheses, efficiencyratings): mes = [] for i in range(len(parentheses)): mes.append((parentheses[i], max(efficiency_ratings[i])) return sum([m[1] for m in mes]) `"See full answer

    Software Engineer
    Coding
  • Google logoAsked at Google 
    1 answer

    "1. Sales & Revenue Metrics Total Units Sold – Tracks overall headset sales volume. Revenue Growth (%) – Measures whether revenue is increasing from headset sales over time. Sales by Channel – Identifies how sales are distributed across Google Store, third-party retailers (Amazon, Best Buy), and carrier partnerships. Sales by Region – Helps understand geographic demand and refine regional marketing efforts. Attach Rate – Measures how often the headset is purc"

    fuzzyicecream14 - "1. Sales & Revenue Metrics Total Units Sold – Tracks overall headset sales volume. Revenue Growth (%) – Measures whether revenue is increasing from headset sales over time. Sales by Channel – Identifies how sales are distributed across Google Store, third-party retailers (Amazon, Best Buy), and carrier partnerships. Sales by Region – Helps understand geographic demand and refine regional marketing efforts. Attach Rate – Measures how often the headset is purc"See full answer

    Product Manager
    Product Strategy
  • "1. Sales & Revenue Metrics Total Units Sold – Tracks overall headset sales volume. Revenue Growth (%) – Measures whether revenue is increasing from headset sales over time. Sales by Channel – Identifies how sales are distributed across Google Store, third-party retailers (Amazon, Best Buy), and carrier partnerships. Sales by Region – Helps understand geographic demand and refine regional marketing efforts. Attach Rate – Measures how often the headset is purc"

    fuzzyicecream14 - "1. Sales & Revenue Metrics Total Units Sold – Tracks overall headset sales volume. Revenue Growth (%) – Measures whether revenue is increasing from headset sales over time. Sales by Channel – Identifies how sales are distributed across Google Store, third-party retailers (Amazon, Best Buy), and carrier partnerships. Sales by Region – Helps understand geographic demand and refine regional marketing efforts. Attach Rate – Measures how often the headset is purc"See full answer

    Product Manager
    Analytical
  • Google logoAsked at Google 
    2 answers

    "Clarify 10X -> usage or revenue Approach What is Msft Copilot & key capabilities Understand the space in which Copilot operates : Target segments & use-cases serve Competitors (alternatives) Leverage microsoft has : Understand the stack (infra -> application layer) -> leverage Understand Microsoft ecosystem & leverage we have Define : 10X growth strategy (for whom -> & what? -> distribution (acquire & retain)) MSft Copilot & key capabilities Cons"

    Neeraj K. - "Clarify 10X -> usage or revenue Approach What is Msft Copilot & key capabilities Understand the space in which Copilot operates : Target segments & use-cases serve Competitors (alternatives) Leverage microsoft has : Understand the stack (infra -> application layer) -> leverage Understand Microsoft ecosystem & leverage we have Define : 10X growth strategy (for whom -> & what? -> distribution (acquire & retain)) MSft Copilot & key capabilities Cons"See full answer

    Product Manager
    Product Strategy
  • Meta logoAsked at Meta 
    3 answers

    "Clarifying Questions Are we an EdTech company adding this as a new arm, or building a new product? → New product Is the learning mode online or offline? → User can choose Are we focusing on any specific instruments? → No, any instrument Does our product include a marketplace for purchasing instruments? → No Are we building a mobile app or web platform? → Both, for India location User Personas Music Enthusiasts – Full-time learners aim"

    Preetham m P. - "Clarifying Questions Are we an EdTech company adding this as a new arm, or building a new product? → New product Is the learning mode online or offline? → User can choose Are we focusing on any specific instruments? → No, any instrument Does our product include a marketplace for purchasing instruments? → No Are we building a mobile app or web platform? → Both, for India location User Personas Music Enthusiasts – Full-time learners aim"See full answer

    Product Manager
    Product Design
  • "This is a classic strategic dilemma, but the answer for Walmart, given its core business model and strengths, is quite clear: Invest in boosting dish soap production. Here's why: Proven Success: Dish soap is Walmart's top product with strong, established sales. Scaling leverages existing, efficient supply chains and customer demand. Core Competency: Walmart excels at high-volume, low-margin household goods. This aligns perfectly with their business model and customer base. **L"

    Vishnu G. - "This is a classic strategic dilemma, but the answer for Walmart, given its core business model and strengths, is quite clear: Invest in boosting dish soap production. Here's why: Proven Success: Dish soap is Walmart's top product with strong, established sales. Scaling leverages existing, efficient supply chains and customer demand. Core Competency: Walmart excels at high-volume, low-margin household goods. This aligns perfectly with their business model and customer base. **L"See full answer

    Product Manager
    Product Strategy
Showing 921-940 of 4477