Interview Questions

Review this list of 3,944 interview questions and answers verified by hiring managers and candidates.
  • "First, I would operationalize the term "slip" by asking: What’s slipping — delivery, scope, quality, or decision-making? Second, I would ask the following questions that help me shape the possible causes for the "slip": What is important for us in this project delivery: time/quality/scope? What is the priory of this project? Is it urgent? Do we have a strict customer or other stakeholder commitment? Is it a big project that involves multiple teams or is only one team involved"

    Anastasiia V. - "First, I would operationalize the term "slip" by asking: What’s slipping — delivery, scope, quality, or decision-making? Second, I would ask the following questions that help me shape the possible causes for the "slip": What is important for us in this project delivery: time/quality/scope? What is the priory of this project? Is it urgent? Do we have a strict customer or other stakeholder commitment? Is it a big project that involves multiple teams or is only one team involved"See full answer

    Product Manager
    Behavioral
  • Meta (Facebook) logoAsked at Meta (Facebook) 

    "Thanks for the question! This is one of my favourite topics because it’s at the core of what we do as PMs DAILY: making the complex simple to drive alignment. I’ve got a structured way to approach this, and I’ll use it to explain payment aggregators - like Plaid - and how they enable Open Banking, with a twist about a technical hiccup I’ve seen in practice. Let’s dive in. I start by assessing the audience. Say I’m talking to a marketing manager at Transak - someone sharp but not techni"

    Adarsh S. - "Thanks for the question! This is one of my favourite topics because it’s at the core of what we do as PMs DAILY: making the complex simple to drive alignment. I’ve got a structured way to approach this, and I’ll use it to explain payment aggregators - like Plaid - and how they enable Open Banking, with a twist about a technical hiccup I’ve seen in practice. Let’s dive in. I start by assessing the audience. Say I’m talking to a marketing manager at Transak - someone sharp but not techni"See full answer

    Technical Program Manager
    Behavioral
    +2 more
  • Google logoAsked at Google 
    Product Manager
    Product Design
    +1 more
  • "Batch Packing Problem In Amazon’s massive warehouse inventory, there are different types of products. You are given an array products of size n, where products[i] represents the number of items of product type i. These products need to be packed into batches for shipping. The batch packing must adhere to the following conditions: No two items in the same batch can be of the same product type. The number of items packed in the current batch must be strictly greater than the number pack"

    Anonymous Goat - "Batch Packing Problem In Amazon’s massive warehouse inventory, there are different types of products. You are given an array products of size n, where products[i] represents the number of items of product type i. These products need to be packed into batches for shipping. The batch packing must adhere to the following conditions: No two items in the same batch can be of the same product type. The number of items packed in the current batch must be strictly greater than the number pack"See full answer

    Software Engineer
    Coding
    +1 more
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Coinbase logoAsked at Coinbase 

    "Hey, Thanks for the question - it’s an interesting real-life existing problem wherein a few of my friends and colleagues who have tried to work and travel have faced these issues at their respective airBnBs. Cool so this is the rough backbone structure that we can follow and ofcourse we can add meat later on to it and pivot if required. So here it goes: First would like to lay out the broader mission of Airbnb + WHY this is needed as to why we are doing this and then some clarific"

    Adarsh S. - "Hey, Thanks for the question - it’s an interesting real-life existing problem wherein a few of my friends and colleagues who have tried to work and travel have faced these issues at their respective airBnBs. Cool so this is the rough backbone structure that we can follow and ofcourse we can add meat later on to it and pivot if required. So here it goes: First would like to lay out the broader mission of Airbnb + WHY this is needed as to why we are doing this and then some clarific"See full answer

    Product Manager
    Product Design
  • Google logoAsked at Google 
    +7

    "So here is what I would do if I had to designing a system to log messages in order involves several considerations, including the choice of software, hardware, storage mechanisms, and scalability. Here’s how I would approach this: 1. Requirements Analysis: Message Format: Define the structure of the messages to log (e.g., text, JSON). Volume: Estimate the expected volume of messages per second. This will help in determining the infrastructure requirements. **Order Guarantee"

    Theodore (teddy) W. - "So here is what I would do if I had to designing a system to log messages in order involves several considerations, including the choice of software, hardware, storage mechanisms, and scalability. Here’s how I would approach this: 1. Requirements Analysis: Message Format: Define the structure of the messages to log (e.g., text, JSON). Volume: Estimate the expected volume of messages per second. This will help in determining the infrastructure requirements. **Order Guarantee"See full answer

    Software Engineer
    System Design
  • Uber logoAsked at Uber 

    "Hey, Thanks for the question - it’s a fantastic challenge with real-world impact. Cool so this is the rough backbone structure that we can follow and ofcourse we can add meat later on to it and pivot if required. So here it goes: First would like to lay out the broader mission as to why we are doing this and then some clarification questions and then probably try to segment users via single or different approaches, then will pick which permutation makes sense as the target segment, then ge"

    Adarsh S. - "Hey, Thanks for the question - it’s a fantastic challenge with real-world impact. Cool so this is the rough backbone structure that we can follow and ofcourse we can add meat later on to it and pivot if required. So here it goes: First would like to lay out the broader mission as to why we are doing this and then some clarification questions and then probably try to segment users via single or different approaches, then will pick which permutation makes sense as the target segment, then ge"See full answer

    Product Manager
    Product Design
  • Amazon logoAsked at Amazon 

    "The interviewer was interested how the system design would be for files, directories, symbolic links. After proposing my idea, I was asked to print all files for a given path."

    B. T. - "The interviewer was interested how the system design would be for files, directories, symbolic links. After proposing my idea, I was asked to print all files for a given path."See full answer

    Software Engineer
    System Design
  • "Example: bucket A: 3 liters capacity bucket B: 5 liters capacity goal: 4 liters You are asked to print the logical sequence to get to the 4 liters of water in one bucket. Follow up: How would you solve the problem if you have more than 2 buckets of water?"

    B. T. - "Example: bucket A: 3 liters capacity bucket B: 5 liters capacity goal: 4 liters You are asked to print the logical sequence to get to the 4 liters of water in one bucket. Follow up: How would you solve the problem if you have more than 2 buckets of water?"See full answer

    Software Engineer
    Coding
    +1 more
  • Microsoft logoAsked at Microsoft 

    "You are given a string S and a number K as input, and your task is to print S to console output considering that, at most, you can print K characters per line. Example: S = "abracadabra sample" K = 11 Output: abracadabra sample Note that this problem requires the interviewee gather extra requirements from the interviewer (e.g. do we care about multiple white spaces? what if the length of a word is greater than K, ...)"

    B. T. - "You are given a string S and a number K as input, and your task is to print S to console output considering that, at most, you can print K characters per line. Example: S = "abracadabra sample" K = 11 Output: abracadabra sample Note that this problem requires the interviewee gather extra requirements from the interviewer (e.g. do we care about multiple white spaces? what if the length of a word is greater than K, ...)"See full answer

    Software Engineer
    Coding
    +1 more
  • "i) Understanding the Scope: Clarifying Questions: Target Audience : i) Who are the target end customers?: High net worth individuals, businesses, mid/low worth individuals, ii) Who are the target auctioneers: i) Large auction houses, mid/small size auction houses Auction Capabilities: i) Offline/online/Hybrid bidding, ii) The platform should be a white label offering for auction houses or we will host the platform Key Features: What are the mandatory features in the MVP? i) live bidding, prox"

    Raviraj P. - "i) Understanding the Scope: Clarifying Questions: Target Audience : i) Who are the target end customers?: High net worth individuals, businesses, mid/low worth individuals, ii) Who are the target auctioneers: i) Large auction houses, mid/small size auction houses Auction Capabilities: i) Offline/online/Hybrid bidding, ii) The platform should be a white label offering for auction houses or we will host the platform Key Features: What are the mandatory features in the MVP? i) live bidding, prox"See full answer

    Product Manager
    Product Design
  • "There is no difference between counting all the unique users over a rolling 30-day period or summing up daily unique users over the same time period. For example, I had one unique user on day 1 and another unique user on day 2 over a 30-day rolling period. Overall, I have 2 unique users or an MAU of 2. If I sum up these unique users, it is also 2. I agree that its unlikely that a user will only access the platform once over a 30-day period, and can only be considered unique once over a 30-day pe"

    XYZ - "There is no difference between counting all the unique users over a rolling 30-day period or summing up daily unique users over the same time period. For example, I had one unique user on day 1 and another unique user on day 2 over a 30-day rolling period. Overall, I have 2 unique users or an MAU of 2. If I sum up these unique users, it is also 2. I agree that its unlikely that a user will only access the platform once over a 30-day period, and can only be considered unique once over a 30-day pe"See full answer

    Product Manager
    Analytical
    +2 more
  • "Feedback would much appreciated as I have not practiced many product strategy questions Clarifying questions Can we assume this is the first time Google has entered the elevator market? Or are there prior elevators to this one? Let's assume first time Is this a large elevator for industrial use like heavy goods/freight etc. or is it an elevator for apartment blocks and commercial premises? Let's assume passenger elevator Is there a geography for this launch? Let's assume the US"

    Vivan B. - "Feedback would much appreciated as I have not practiced many product strategy questions Clarifying questions Can we assume this is the first time Google has entered the elevator market? Or are there prior elevators to this one? Let's assume first time Is this a large elevator for industrial use like heavy goods/freight etc. or is it an elevator for apartment blocks and commercial premises? Let's assume passenger elevator Is there a geography for this launch? Let's assume the US"See full answer

    Product Manager
    Product Strategy
  • Google logoAsked at Google 

    "To determine which features go into a Minimum Viable Product (MVP), I focus on balancing user needs with business goals, while keeping technical feasibility in mind. My approach usually includes these key steps: 1. Understand the problem deeply: I start by identifying the core user problem we’re solving—whether that’s through user interviews, support tickets, usage data, or stakeholder input. The goal is to figure out what success looks like for the user in the most basic but valuable form."

    Aniruddha N. - "To determine which features go into a Minimum Viable Product (MVP), I focus on balancing user needs with business goals, while keeping technical feasibility in mind. My approach usually includes these key steps: 1. Understand the problem deeply: I start by identifying the core user problem we’re solving—whether that’s through user interviews, support tickets, usage data, or stakeholder input. The goal is to figure out what success looks like for the user in the most basic but valuable form."See full answer

    Product Manager
    Product Design
    +1 more
  • Google logoAsked at Google 
    Product Manager
    Product Design
  • Google logoAsked at Google 
    Product Manager
    Product Design
  • Meta (Facebook) logoAsked at Meta (Facebook) 

    "First, lets dive deeper into the question. I would ask - What are the top challenges facedtoday? What user segments work well, and what do we want to focus on? What do we know about competitors, and what can we learn from them? What user flows have the highest engagement in VR today? Are we focusing on consumer use cases or enterprise? Are we tackling activation or retention, or do we want to increase engagement? To build a strategy here I would target this from four differe"

    Anonymous Minnow - "First, lets dive deeper into the question. I would ask - What are the top challenges facedtoday? What user segments work well, and what do we want to focus on? What do we know about competitors, and what can we learn from them? What user flows have the highest engagement in VR today? Are we focusing on consumer use cases or enterprise? Are we tackling activation or retention, or do we want to increase engagement? To build a strategy here I would target this from four differe"See full answer

    Product Manager
    Product Strategy
  • "Use Dutch National Flag Algorithm to solve the problem"

    Sireesha R. - "Use Dutch National Flag Algorithm to solve the problem"See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
  • Product Manager
    Analytical
Showing 321-340 of 3944