Interview Questions

Review this list of 3,949 interview questions and answers verified by hiring managers and candidates.
  • "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
  • Google logoAsked at Google 

    "Narrow scope of mission: As a Product Manager for Google Search, my primary mission would be to enhance the search experience for users, ensuring they find the most relevant information quickly and efficiently. This involves continually improving the quality of search results, enhancing the user interface, and exploring innovative features to meet evolving user needs. Customer segments: Google Search caters to a diverse range of users, including students, professionals, researchers, and"

    Devendra B. - "Narrow scope of mission: As a Product Manager for Google Search, my primary mission would be to enhance the search experience for users, ensuring they find the most relevant information quickly and efficiently. This involves continually improving the quality of search results, enhancing the user interface, and exploring innovative features to meet evolving user needs. Customer segments: Google Search caters to a diverse range of users, including students, professionals, researchers, and"See full answer

    Product Manager
    Product Strategy
  • Amazon logoAsked at Amazon 
    +12

    "Okay, so I understand the question: "how does Google Maps compute estimated time of arrival"... There are a couple scenarios when ETA is calculated: planning a future journey, planning current journey. Can we assume scope to the current journey? The learnings will likely be transferable. User inputs to ETA include origin, destination, and route chosen. Let's assume first that the user has chosen an origin, destination, and a route chosen. We can come back to these assumptions later. The way I'"

    Daniel P. - "Okay, so I understand the question: "how does Google Maps compute estimated time of arrival"... There are a couple scenarios when ETA is calculated: planning a future journey, planning current journey. Can we assume scope to the current journey? The learnings will likely be transferable. User inputs to ETA include origin, destination, and route chosen. Let's assume first that the user has chosen an origin, destination, and a route chosen. We can come back to these assumptions later. The way I'"See full answer

    Technical Program Manager
    Technical
  • +1

    "Great question. My favourite product is YouTube Music. Let's see on what its strategy should be for next year. Clarifying questions No clarifying questions on this as I will be working with my favourite products. I will have few assumptions which I will state out before we proceed. Assumptions Assuming that we need to come up with strategy for YouTube Music app - not considering YouTube as a whole as part of this. I am considering overall audio streaming as the space to come up with the s"

    Harshit G. - "Great question. My favourite product is YouTube Music. Let's see on what its strategy should be for next year. Clarifying questions No clarifying questions on this as I will be working with my favourite products. I will have few assumptions which I will state out before we proceed. Assumptions Assuming that we need to come up with strategy for YouTube Music app - not considering YouTube as a whole as part of this. I am considering overall audio streaming as the space to come up with the s"See full answer

    Product Manager
    Product Strategy
  • "My stab at this (feedback welcome): Total distance for last car 500 meters: Assuming mostly standard cars, average car length + gap = 5 meters. Acceleration time total 505 seconds: first car reacts slowest, accelerate in 10 seconds. Every other car needs 5 seconds (can see ahead). Takes 90 seconds to cover 500m: to cover 500m that means 90 seconds (20kph = 10km in 30min = 1km in 3min = 500m in 1.5m) A bit under 10 minutes = 90s + 505s. Probably a bit less as last car"

    Gabe M. - "My stab at this (feedback welcome): Total distance for last car 500 meters: Assuming mostly standard cars, average car length + gap = 5 meters. Acceleration time total 505 seconds: first car reacts slowest, accelerate in 10 seconds. Every other car needs 5 seconds (can see ahead). Takes 90 seconds to cover 500m: to cover 500m that means 90 seconds (20kph = 10km in 30min = 1km in 3min = 500m in 1.5m) A bit under 10 minutes = 90s + 505s. Probably a bit less as last car"See full answer

    BizOps & Strategy
    Estimation
    +1 more
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • "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
  • +14

    "First I'd like to clarify the definition of reactions and confirm that it's same as what exists today. Definition: Reactions provides users the ability to provide richer expression beyond 'like' Business goal: Since this is a mature product, the business goal is to improve user engagement Product goal: Bring people closer together by letting people provide more accurate sentiment to the community based on the content Personas: 1. Content creator 2. user using reactions **Li"

    P R. - "First I'd like to clarify the definition of reactions and confirm that it's same as what exists today. Definition: Reactions provides users the ability to provide richer expression beyond 'like' Business goal: Since this is a mature product, the business goal is to improve user engagement Product goal: Bring people closer together by letting people provide more accurate sentiment to the community based on the content Personas: 1. Content creator 2. user using reactions **Li"See full answer

    Product Manager
    Analytical
    +1 more
  • Discord logoAsked at Discord 
    +2

    "Always assume good intentions on the part of both parties when resolving conflicts. Then proceed with a STAR example."

    Abhinav M. - "Always assume good intentions on the part of both parties when resolving conflicts. Then proceed with a STAR example."See full answer

    Software Engineer
    Behavioral
    +2 more
  • +41

    "#include #include #include using namespace std; vector diff(const vector& A, const vector& B) { unordered_set elements; vector result; for (const auto& element : A) { elements.insert(element); } for (const auto& element : B) { if (elements.find(element) == elements.end()) { result.push_back(element); } else { elements.erase(element); } } for"

    Warrenbuff - "#include #include #include using namespace std; vector diff(const vector& A, const vector& B) { unordered_set elements; vector result; for (const auto& element : A) { elements.insert(element); } for (const auto& element : B) { if (elements.find(element) == elements.end()) { result.push_back(element); } else { elements.erase(element); } } for"See full answer

    Data Structures & Algorithms
    Coding
  • Meta (Facebook) logoAsked at Meta (Facebook) 
    +2

    "Implemented a recursive function which returns the length of the list so far. when the returned value equals k + 1 , assign current.next = current.next.next. If I made it back to the head return root.next as the new head of the linked list."

    דניאל ר. - "Implemented a recursive function which returns the length of the list so far. when the returned value equals k + 1 , assign current.next = current.next.next. If I made it back to the head return root.next as the new head of the linked list."See full answer

    Machine Learning Engineer
    Data Structures & Algorithms
    +2 more
  • Software Engineer
    Behavioral
  • +5

    "Clarifying questions: Can I assume the timeframe to be today, ie Dec 2024? : Yes What country are we targeting? Lets say it is India. When we say "Use google search to find a new job" do we mean to say that they use Google search in their job search process or also convert and actually find a job? : The former. I am assuming we are only considering when someone directly searches jobs on Google and not searches for some job search portal on google: Yes. How long should the search"

    Kartikeya N. - "Clarifying questions: Can I assume the timeframe to be today, ie Dec 2024? : Yes What country are we targeting? Lets say it is India. When we say "Use google search to find a new job" do we mean to say that they use Google search in their job search process or also convert and actually find a job? : The former. I am assuming we are only considering when someone directly searches jobs on Google and not searches for some job search portal on google: Yes. How long should the search"See full answer

    Product Manager
    Estimation
  • Google logoAsked at Google 
    +6

    "Some follow-up questions to correctly understand what "improve" means here? Is it to have: more riders, better user experience, monetization, more/new market penetration. Let's assume interviewer requested to choose whatever I prefer. I choose better user experience which might trigger other areas of improvement as well. Some more probing questions: To I need to consider USA only or any other country/region or global? Can I consider only popular on demand taxi service for this question? One wa"

    Manohar A. - "Some follow-up questions to correctly understand what "improve" means here? Is it to have: more riders, better user experience, monetization, more/new market penetration. Let's assume interviewer requested to choose whatever I prefer. I choose better user experience which might trigger other areas of improvement as well. Some more probing questions: To I need to consider USA only or any other country/region or global? Can I consider only popular on demand taxi service for this question? One wa"See full answer

    BizOps & Strategy
    Product Design
    +1 more
  • DoorDash logoAsked at DoorDash 

    "Before I dive in, I have a few questions - what defines 'quality' and can it be quantitatively measured? (quality is based on the ride score given to each driver) To begin, let's define Lyfts mission. Lyfts mission is 'to improve peoples lives with the best transportation.' Next, I will define the different user segments Lyft serves, select a high-impact user segment, define their pain points, solve for a particularly affecting pain point, and promote solutions. I will discuss metrics once I h"

    Mike C. - "Before I dive in, I have a few questions - what defines 'quality' and can it be quantitatively measured? (quality is based on the ride score given to each driver) To begin, let's define Lyfts mission. Lyfts mission is 'to improve peoples lives with the best transportation.' Next, I will define the different user segments Lyft serves, select a high-impact user segment, define their pain points, solve for a particularly affecting pain point, and promote solutions. I will discuss metrics once I h"See full answer

    Product Manager
    Product Design
  • Data Analyst
    Data Analysis
    +3 more
  • "All products and services have to sell. I would create measurements on how much time, labor, and funds went into a project and how much value it brings back to customers and company."

    John H. - "All products and services have to sell. I would create measurements on how much time, labor, and funds went into a project and how much value it brings back to customers and company."See full answer

    Product Manager
    Analytical
  • Apple logoAsked at Apple 

    "Situation : During my time in my previous company, I was leading a program which involved a cross-functional team. The project was to migrate all the legacy servers to Azure and had a tight deadline of 4 months. Each team had distinct goals and responsibilites to be delivered Task : My task was to collaborate with the multi regional team and ensure a smooth delivery within the defined budget and schedule. Action : I believe communication is the key to handle a cross-functional team"

    Oriole O. - "Situation : During my time in my previous company, I was leading a program which involved a cross-functional team. The project was to migrate all the legacy servers to Azure and had a tight deadline of 4 months. Each team had distinct goals and responsibilites to be delivered Task : My task was to collaborate with the multi regional team and ensure a smooth delivery within the defined budget and schedule. Action : I believe communication is the key to handle a cross-functional team"See full answer

    Technical Program Manager
    Behavioral
  • Amazon logoAsked at Amazon 
    +4

    "Authentication verifies "Who you are." Authorization determines "What you can do." Authentication establishes identity, while authorization specifies the actions or resources a user or entity is allowed to access or perform."

    Surbhi A. - "Authentication verifies "Who you are." Authorization determines "What you can do." Authentication establishes identity, while authorization specifies the actions or resources a user or entity is allowed to access or perform."See full answer

    Backend Engineer
    Technical
    +1 more
  • +1

    "Clarifying Questions: What age range are we looking at between 13-19? Any specific range we need to target? - Assume all teens Any demography we would target? - Worldwide Do they have access to phones/laptops or do we need to build an offline product? - Assume they have access to phones and laptops Are there any constraints around privacy or content moderation? - Yes What platform (Facebook core, Messenger, or another product) is this for? - Assume faceb"

    Kartik D. - "Clarifying Questions: What age range are we looking at between 13-19? Any specific range we need to target? - Assume all teens Any demography we would target? - Worldwide Do they have access to phones/laptops or do we need to build an offline product? - Assume they have access to phones and laptops Are there any constraints around privacy or content moderation? - Yes What platform (Facebook core, Messenger, or another product) is this for? - Assume faceb"See full answer

    Product Manager
    Product Design
  • Twitter logoAsked at Twitter 
    Video answer for 'How do you typically structure one-on-one meetings?'

    "Notes from the Video. 1-1s are two way feedback. Important tool to discuss things that are not possible in group setting feedback to employee by manager feedback to manager by employee Feedback to employee can vary by the type of performer the employee is (a) high performer (b) meets expectations (c) under performing Dos and Don't Avoid project discussion as they can be obtained else where. Focus on feedback to employee. Unless there is a critical project item to be d"

    Adib M. - "Notes from the Video. 1-1s are two way feedback. Important tool to discuss things that are not possible in group setting feedback to employee by manager feedback to manager by employee Feedback to employee can vary by the type of performer the employee is (a) high performer (b) meets expectations (c) under performing Dos and Don't Avoid project discussion as they can be obtained else where. Focus on feedback to employee. Unless there is a critical project item to be d"See full answer

    Engineering Manager
    Behavioral
Showing 341-360 of 3949