Skip to main content

Interview Questions

Review this list of 4,411 interview questions and answers verified by hiring managers and candidates.
  • "Which one I critical, is the erratic change in the delivery cycle is one you need to investigate and further deep dive into to find the root cause"

    Vijay S. - "Which one I critical, is the erratic change in the delivery cycle is one you need to investigate and further deep dive into to find the root cause"See full answer

    Product Manager
    Program Sense
  • Google logoAsked at Google 

    "Clarifying questions: What is the objective of the GTM strategy? User acquisition? User retention? Who is the target audience of the GTM? What is the period we are looking at? Short term or long term? Assumption: Launched YouTube Shorts in South East Asia, measuring success of the user adoption and retention in one month and six month. Before we proceed, wanted to check whether we have any benchmark performance from past YouTube's GTM targeting creators? Say, Live stream on YouTube? "

    Judy W. - "Clarifying questions: What is the objective of the GTM strategy? User acquisition? User retention? Who is the target audience of the GTM? What is the period we are looking at? Short term or long term? Assumption: Launched YouTube Shorts in South East Asia, measuring success of the user adoption and retention in one month and six month. Before we proceed, wanted to check whether we have any benchmark performance from past YouTube's GTM targeting creators? Say, Live stream on YouTube? "See full answer

    Behavioral
    Project Management
  • "Clarify: Are we specifically referring to the point in time after a customer places an order to a restaurant, in the context of Doordash? Or are we talking about a generic online order? (Assume former) I am going to walk through what I think our business and product goal is, followed by the users and their painpoints in the workflow after they place an order. Then I will prioritize which pain points to solve for based on business objective and some other factors, and finally brainstorm and prio"

    Anonymous Crab - "Clarify: Are we specifically referring to the point in time after a customer places an order to a restaurant, in the context of Doordash? Or are we talking about a generic online order? (Assume former) I am going to walk through what I think our business and product goal is, followed by the users and their painpoints in the workflow after they place an order. Then I will prioritize which pain points to solve for based on business objective and some other factors, and finally brainstorm and prio"See full answer

    Product Design
  • Google logoAsked at Google 

    "I would like to understand the reason why the conclusion was made to even have google maps for kids, assumption here is kids are aged 1 to 5. Some clarifying questions Are the kids in this scenario traveling all alone or accompanied by their parents Kids are using google maps to let their parents know the directions (at times parents want to educate kids) Kids are helping others with directions to their destination. The consideration here is that kids would use maps for following s"

    Rakesh K. - "I would like to understand the reason why the conclusion was made to even have google maps for kids, assumption here is kids are aged 1 to 5. Some clarifying questions Are the kids in this scenario traveling all alone or accompanied by their parents Kids are using google maps to let their parents know the directions (at times parents want to educate kids) Kids are helping others with directions to their destination. The consideration here is that kids would use maps for following s"See full answer

    Product Manager
    Product Design
  • Meta logoAsked at Meta 

    "Understand Wikipedia Wikipedia is an online encyclopedia that gives everyone access to unbiased and accurate knowledge and information. Current products: Website - people use Wikipedia to search and pull up articles written around a specific topic Integration with other products such as browsers and kindles - people highlight a word/subject and they can pull up the relevant wikipedia if it's available. Business model: It's a non-profit organization t"

    SweetTaco - "Understand Wikipedia Wikipedia is an online encyclopedia that gives everyone access to unbiased and accurate knowledge and information. Current products: Website - people use Wikipedia to search and pull up articles written around a specific topic Integration with other products such as browsers and kindles - people highlight a word/subject and they can pull up the relevant wikipedia if it's available. Business model: It's a non-profit organization t"See full answer

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

  • Coinbase logoAsked at Coinbase 
    Product Manager
    Behavioral
    +2 more
  • "Why is it answered like a Product Design Question? Shouldn't this be a strategy type answer analyzing the pros/cons of the service etc.?"

    Aditya O. - "Why is it answered like a Product Design Question? Shouldn't this be a strategy type answer analyzing the pros/cons of the service etc.?"See full answer

    Product Strategy
    System Design
  • Better.com logoAsked at Better.com 

    "Getting things done. Since the job is all about leading without authority, it is important to always have the north star in mind. When all in the team do not agree or see a potential solution: Data based evidence : Provide testing results/ Analysis results/ PoC on showing why a potential solution might be better than others, Bring in a trusted stakeholder : Have a conversation with the trusted stakeholder who first believes in the solution, then vouches for the solution to the team "

    Googlepm 1. - "Getting things done. Since the job is all about leading without authority, it is important to always have the north star in mind. When all in the team do not agree or see a potential solution: Data based evidence : Provide testing results/ Analysis results/ PoC on showing why a potential solution might be better than others, Bring in a trusted stakeholder : Have a conversation with the trusted stakeholder who first believes in the solution, then vouches for the solution to the team "See full answer

    Product Marketing Manager
    Behavioral
    +1 more
  • "Clarification - I will first clarify what is the data insights we are talking about? Is it a feature in the platform or are we talking about data insights that we use in our work? First listen and not judge - I will first try to understand what the engineer is talking about, what is the disagreement that he is raising. Context - Then I will try to ask the engineer if he has the overall context about the feature/solution/functionality he is talking about. If he has all the cont"

    Rohith K. - "Clarification - I will first clarify what is the data insights we are talking about? Is it a feature in the platform or are we talking about data insights that we use in our work? First listen and not judge - I will first try to understand what the engineer is talking about, what is the disagreement that he is raising. Context - Then I will try to ask the engineer if he has the overall context about the feature/solution/functionality he is talking about. If he has all the cont"See full answer

    Product Manager
    Behavioral
  • +2

    "Imagine you're playing with a big box of colorful building blocks. You know how sometimes you want to build a tall tower, and other times you want to make a cool car or a cozy house? Well, a product manager is like the person who helps decide what kind of things we should build with those blocks. They talk to all your friends and ask, "Hey, what would be the most fun to make with these blocks?" Then they tell the builders what to do, like which blocks to use and how to put them together. And g"

    Jonah S. - "Imagine you're playing with a big box of colorful building blocks. You know how sometimes you want to build a tall tower, and other times you want to make a cool car or a cozy house? Well, a product manager is like the person who helps decide what kind of things we should build with those blocks. They talk to all your friends and ask, "Hey, what would be the most fun to make with these blocks?" Then they tell the builders what to do, like which blocks to use and how to put them together. And g"See full answer

    Product Manager
    Behavioral
  • Product Manager
    Product Strategy
  • Anduril logoAsked at Anduril 
    Technical Program Manager
    System Design
  • Meta logoAsked at Meta 
    +1

    "public class CircularBuffer { private T[] buffer; private int head; private int tail; private int size; private final int capacity; public CircularBuffer(int capacity) { this.capacity = capacity; this.buffer = (T[]) new Object[capacity]; this.head = 0; this.tail = 0; this.size = 0; } public void enqueue(T item) { if (isFull()) { throw new IllegalStateException("Buffer is full"); } buf"

    Vidhyadhar V. - "public class CircularBuffer { private T[] buffer; private int head; private int tail; private int size; private final int capacity; public CircularBuffer(int capacity) { this.capacity = capacity; this.buffer = (T[]) new Object[capacity]; this.head = 0; this.tail = 0; this.size = 0; } public void enqueue(T item) { if (isFull()) { throw new IllegalStateException("Buffer is full"); } buf"See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
  • "Collaborate with the team to determine which team's product will move the needle the most in achieving the strategic goals and prioritize that work."

    Meagan R. - "Collaborate with the team to determine which team's product will move the needle the most in achieving the strategic goals and prioritize that work."See full answer

    Product Manager
    Analytical
    +1 more
  • +5

    "Clarifying questions: Can you please clarify inflight ads? Are you referring to the Ads shown on the screens/TVs available for each seat on an airplane? Ans: Yes. International flights or domestic? Ans: You pick. ( I picked US domestic) Are you targeting any specific airline? Ans: No. All airlines. Any specific type of ads such as banner ads, video ads etc? Ans: Video We can calculate market size in two ways: By calculating number of flights flying per day in the US * seat avai"

    Vaidehi P. - "Clarifying questions: Can you please clarify inflight ads? Are you referring to the Ads shown on the screens/TVs available for each seat on an airplane? Ans: Yes. International flights or domestic? Ans: You pick. ( I picked US domestic) Are you targeting any specific airline? Ans: No. All airlines. Any specific type of ads such as banner ads, video ads etc? Ans: Video We can calculate market size in two ways: By calculating number of flights flying per day in the US * seat avai"See full answer

    Estimation
  • Google logoAsked at Google 

    "Situation: As a Product Manager at Cisco, I was leading the development of a new highly critical product for enterprise customers. Midway through the project, a key engineering team was reassigned due to an urgent security patch, leaving us understaffed with only six weeks left before a critical customer pilot. Task: I had to ensure the product launched on time without sacrificing key features, despite losing half of our engineering team. The challenge was to"

    fuzzyicecream14 - "Situation: As a Product Manager at Cisco, I was leading the development of a new highly critical product for enterprise customers. Midway through the project, a key engineering team was reassigned due to an urgent security patch, leaving us understaffed with only six weeks left before a critical customer pilot. Task: I had to ensure the product launched on time without sacrificing key features, despite losing half of our engineering team. The challenge was to"See full answer

    Software Engineer
    Behavioral
  • Mixpanel logoAsked at Mixpanel 

    "Google Pay currently makes money from a small percentage of interchange from each transaction. They also make money with Mobile recharge sim card fees. Questions Do we have a timeframe for this? How could we 10x this? Let's think about Alphabet's goal and vision to make the world more accessible and useful. To 10x it, we will need a combination of improvements, new revenue sources, and some paradigm shifting thinking. The goal in this case is monetization, and a steep on at t"

    Jeff H. - "Google Pay currently makes money from a small percentage of interchange from each transaction. They also make money with Mobile recharge sim card fees. Questions Do we have a timeframe for this? How could we 10x this? Let's think about Alphabet's goal and vision to make the world more accessible and useful. To 10x it, we will need a combination of improvements, new revenue sources, and some paradigm shifting thinking. The goal in this case is monetization, and a steep on at t"See full answer

    Analytical
    Product Strategy
  • Capital One logoAsked at Capital One 

    "Clarification/Problem What is the timeline that we're working with? (You Choose) What is the criteria for how you'd define an improvement or success? (You Choose) Is there a specific area of the DMV experience that you want me to improve? (No) Are we thinking about this from the perspective of the DMV? (Yes) What is the market that we should be thinking about or focusing on? (US) Business Objective The DMV has a couple of key goals: To help uniquely identify which vehi"

    Deric C. - "Clarification/Problem What is the timeline that we're working with? (You Choose) What is the criteria for how you'd define an improvement or success? (You Choose) Is there a specific area of the DMV experience that you want me to improve? (No) Are we thinking about this from the perspective of the DMV? (Yes) What is the market that we should be thinking about or focusing on? (US) Business Objective The DMV has a couple of key goals: To help uniquely identify which vehi"See full answer

    Product Manager
    Product Design
  • Uber logoAsked at Uber 

    "Clarification - is it Uber that is building the feature? Answer: Yes Assuming if Uber is the one building this feature, I would start with if and how does the feature help Uber's mission and north star metrics. Uber's mission is to provide reliable transportation around the world and the primary metric that i can think on a high level is Number of rides , Number of drivers and from business revenue perspective revenue per ride, revenue per rider and driver. I picked revenue per ride because it"

    Ramesh Y. - "Clarification - is it Uber that is building the feature? Answer: Yes Assuming if Uber is the one building this feature, I would start with if and how does the feature help Uber's mission and north star metrics. Uber's mission is to provide reliable transportation around the world and the primary metric that i can think on a high level is Number of rides , Number of drivers and from business revenue perspective revenue per ride, revenue per rider and driver. I picked revenue per ride because it"See full answer

    Product Manager
    Product Design
    +1 more
  • Amazon logoAsked at Amazon 

    "Was the statement very similar to the leetcode or was it changed and only the main idea remained?"

    Anonymous Wombat - "Was the statement very similar to the leetcode or was it changed and only the main idea remained?"See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
Showing 1201-1220 of 4411