Interview Questions

Review this list of 3,944 interview questions and answers verified by hiring managers and candidates.
  • Goldman Sachs logoAsked at Goldman Sachs 
    Software Engineer
    System Design
  • Asked at DoubleVerify 
    Product Manager
    Behavioral
  • Meta (Facebook) logoAsked at Meta (Facebook) 
    +20

    "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
  • +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
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Product Manager
    Product Strategy
  • Google logoAsked at Google 
    +13

    "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
  • BizOps & Strategy
    Product Strategy
  • "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 
    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
    Coding
    +1 more
  • Uber logoAsked at Uber 
    Product Manager
    Product Strategy
  • Uber logoAsked at Uber 

    "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 
    +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
  • "import java.util.Stack; public class EfficientParentheses { public static int maxEfficientValidParentheses(String s, int[] efficiency) { Stack stack = new Stack(); int totalEfficiency = 0; boolean[] used = new boolean[s.length()]; for (int i = 0; i < s.length(); i++) { if (s.charAt(i) == '(') { stack.push(i); } else if (s.charAt(i) == ')') { if (!stack.isEmpty()) { int ma"

    Khushbu R. - "import java.util.Stack; public class EfficientParentheses { public static int maxEfficientValidParentheses(String s, int[] efficiency) { Stack stack = new Stack(); int totalEfficiency = 0; boolean[] used = new boolean[s.length()]; for (int i = 0; i < s.length(); i++) { if (s.charAt(i) == '(') { stack.push(i); } else if (s.charAt(i) == ')') { if (!stack.isEmpty()) { int ma"See full answer

    Software Engineer
    Coding
  • "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
  • Google logoAsked at Google 

    "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 

    "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
Showing 381-400 of 3944