Skip to main content

Interview Questions

Review this list of 4,659 interview questions and answers verified by hiring managers and candidates.
  • Google logoAsked at Google 
    11 answers
    +8

    "Clarification Questions What does it mean by Next Gen Elevator? → Next Gen Elevator means Elevator using new technologies. Where is this Elevator situated? → Skyscrapers, Commercial Buildings, Residential Buildings or Elevators to Space? Assuming it’s Commercial Buildings. What is the Goal of Making Next Gen Elevators? Is it improving Safety? User Experience? Assuming it’s User Experience _Goal: To design an elevator using emerging technologies to improve user experience in a C"

    Anonymous Muskox - "Clarification Questions What does it mean by Next Gen Elevator? → Next Gen Elevator means Elevator using new technologies. Where is this Elevator situated? → Skyscrapers, Commercial Buildings, Residential Buildings or Elevators to Space? Assuming it’s Commercial Buildings. What is the Goal of Making Next Gen Elevators? Is it improving Safety? User Experience? Assuming it’s User Experience _Goal: To design an elevator using emerging technologies to improve user experience in a C"See full answer

    Product Manager
    Product Design
  • Google logoAsked at Google 
    21 answers
    +18

    "Cloud computing is like going out to a restaurant instead of cooking dinner at home. When you cook at home, you have to do everything yourself. You need to use your own plates, pots, and pans. You have to know how many people are coming over and buy the right amount of ingredients. If more people join for dinner than you expected, you'll run out of food! But if fewer people show up, then you'll have leftovers that go to waste. And on top of it all, you have to do all the cooking, set up, and cl"

    Jacob S. - "Cloud computing is like going out to a restaurant instead of cooking dinner at home. When you cook at home, you have to do everything yourself. You need to use your own plates, pots, and pans. You have to know how many people are coming over and buy the right amount of ingredients. If more people join for dinner than you expected, you'll run out of food! But if fewer people show up, then you'll have leftovers that go to waste. And on top of it all, you have to do all the cooking, set up, and cl"See full answer

    Technical
  • +20

    "Since the problem asks for a O(logN) solution, I have to assume that the numbers are already sorted, meaning the same number are adjacent to each other, the value of the numbers shouldn't matter, and they expect us to use Binary Search. First, we should analyze the pattern of a regular number array without a single disrupter. Index: 0 1 2 3 4. 5 6. 7. 8. 9 Array:[1, 1, 2, 2, 4, 4, 5, 5, 6, 6] notice the odd indexes are always referencing the second of the reoccurring numbers and t"

    Bamboo Y. - "Since the problem asks for a O(logN) solution, I have to assume that the numbers are already sorted, meaning the same number are adjacent to each other, the value of the numbers shouldn't matter, and they expect us to use Binary Search. First, we should analyze the pattern of a regular number array without a single disrupter. Index: 0 1 2 3 4. 5 6. 7. 8. 9 Array:[1, 1, 2, 2, 4, 4, 5, 5, 6, 6] notice the odd indexes are always referencing the second of the reoccurring numbers and t"See full answer

    Software Engineer
    Coding
    +1 more
  • Meta logoAsked at Meta 
    10 answers
    +7

    "I’ll first set the purpose of Instagram Reels Ads as a product: Instagram Reels connect to Meta’s mission of building meaningful connections and build community via connecting people through visual storytelling. It’s a popular product with typically Billions of active users. The business model of Meta is largely dependent on ad revenue and Ads on Reels shall primarily be poised to improve revenue for Instagram Reels and in turn Meta, and on secondary notes the upside could be in improving produc"

    Arunima S. - "I’ll first set the purpose of Instagram Reels Ads as a product: Instagram Reels connect to Meta’s mission of building meaningful connections and build community via connecting people through visual storytelling. It’s a popular product with typically Billions of active users. The business model of Meta is largely dependent on ad revenue and Ads on Reels shall primarily be poised to improve revenue for Instagram Reels and in turn Meta, and on secondary notes the upside could be in improving produc"See full answer

    Product Manager
    Analytical
  • Google logoAsked at Google 
    23 answers
    Video answer for 'Design TikTok.'
    +18

    "I watched a couple of videos like this, one of them by Exponent staff (I think). It was disappointing that the architecture diagram and the walkthrough was a general layered architecture that you can apply to any backend system. I was wondering if there are videos that can be considered a reference material to watch, learn and improve on the tech (sys design) skills, and not so much about the soft skills."

    BriskD - "I watched a couple of videos like this, one of them by Exponent staff (I think). It was disappointing that the architecture diagram and the walkthrough was a general layered architecture that you can apply to any backend system. I was wondering if there are videos that can be considered a reference material to watch, learn and improve on the tech (sys design) skills, and not so much about the soft skills."See full answer

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

  • Amazon logoAsked at Amazon 
    4 answers
    +1

    "1. Requirements Analysis Functional Requirements Video streaming with multiple quality levels Content browsing and search Continue watching functionality Content recommendations Non-Functional Requirements Low latency video delivery (<2s startup time) High availability (99.99% uptime) Scalability to handle millions of concurrent streams API response time < 100ms 2. Microservices Architecture Core Microservices Content Service Content metadata mana"

    Reno S. - "1. Requirements Analysis Functional Requirements Video streaming with multiple quality levels Content browsing and search Continue watching functionality Content recommendations Non-Functional Requirements Low latency video delivery (<2s startup time) High availability (99.99% uptime) Scalability to handle millions of concurrent streams API response time < 100ms 2. Microservices Architecture Core Microservices Content Service Content metadata mana"See full answer

    Software Engineer
    System Design
  • Revolut logoAsked at Revolut 
    6 answers
    +2

    "Clarify understanding of the problem space. What does success look like? How is it measured? Platform specific? Market specific? Time period? Business goals? Then perform a funnel analysis to understand user journey and look for problems or opportunities. Choose a user segment to focus on. Identify different user segments and prioritise one. Summarise the goal of the user and the friction point. Brainstorm solutions. Come up with a number of rough solutions. Balance the business n"

    Alice S. - "Clarify understanding of the problem space. What does success look like? How is it measured? Platform specific? Market specific? Time period? Business goals? Then perform a funnel analysis to understand user journey and look for problems or opportunities. Choose a user segment to focus on. Identify different user segments and prioritise one. Summarise the goal of the user and the friction point. Brainstorm solutions. Come up with a number of rough solutions. Balance the business n"See full answer

    Product Manager
    Product Strategy
  • Apple logoAsked at Apple 
    2 answers
    Video answer for 'Find the container with the maximum volume of water.'

    "int getMaxWater(vector& nums) { int n = nums.size(); int mx = INT_MIN; int i=0, j=n-1; while(i<j) { int water = (j - i) * min(nums[i], nums[j]); mx = max(mx, water); if(nums[i] < nums[j]){ i++; } else { j--; } } return mx; } `"

    Richard W. - "int getMaxWater(vector& nums) { int n = nums.size(); int mx = INT_MIN; int i=0, j=n-1; while(i<j) { int water = (j - i) * min(nums[i], nums[j]); mx = max(mx, water); if(nums[i] < nums[j]){ i++; } else { j--; } } return mx; } `"See full answer

    Data Engineer
    Data Structures & Algorithms
    +3 more
  • Capital One logoAsked at Capital One 
    3 answers

    "The mini case was very much interviewer led and the questions asked were following: Tell the value proposition of Capital One Shopping to a senior executive who has recently joined Capital One What factors would you consider to expand Capital One Shopping? Technical Considerations? AB testing analysis - Interviewer shared AB testing results and asked for my recommendation Summarize"

    Neha P. - "The mini case was very much interviewer led and the questions asked were following: Tell the value proposition of Capital One Shopping to a senior executive who has recently joined Capital One What factors would you consider to expand Capital One Shopping? Technical Considerations? AB testing analysis - Interviewer shared AB testing results and asked for my recommendation Summarize"See full answer

    Product Manager
    Product Strategy
  • Perplexity AI logoAsked at Perplexity AI 
    6 answers
    +3

    "Since question asks about pipeline. I assume the question is about metrics across many dimensions not just prediction Model performance. For the ML Model: I can use accuracy, precision, recall, F1 if it is classification model. In case it is regression model RMSE is good metric for many problems. Data: ML system needs good quality data. The system has to track missing data rate. Distribution of features, if there is no drift from original feature distributions during the training. Pipeline h"

    Alex N. - "Since question asks about pipeline. I assume the question is about metrics across many dimensions not just prediction Model performance. For the ML Model: I can use accuracy, precision, recall, F1 if it is classification model. In case it is regression model RMSE is good metric for many problems. Data: ML system needs good quality data. The system has to track missing data rate. Distribution of features, if there is no drift from original feature distributions during the training. Pipeline h"See full answer

    Machine Learning Engineer
    Machine Learning
    +1 more
  • Amazon logoAsked at Amazon 
    13 answers
    Video answer for 'Tell me about a time when you proposed an idea that was not agreed on.'
    +10

    "Disagreement --> persistent ---> more data insights ---> positive relationship ---> mentor/trust"

    Sam - "Disagreement --> persistent ---> more data insights ---> positive relationship ---> mentor/trust"See full answer

    Product Manager
    Behavioral
    +2 more
  • Meta logoAsked at Meta 
    29 answers
    +26

    "How would you monetize messenger? Clarifying Questions Is this messenger app or web? INTERVIEWER: Assume both are a possibility, but feel free to pick one Is there a larger facebook goal or metric we are optimizing for? INTERVIEWER: Monetization speaks to revenue so assume goal is to increase revenue for Facebook as a whole Does this include messenger Rooms or should we stick to the traditional FB messenger? INTERVIEWER: _Messenger rooms is a great call out, but let's stick"

    Jay C. - "How would you monetize messenger? Clarifying Questions Is this messenger app or web? INTERVIEWER: Assume both are a possibility, but feel free to pick one Is there a larger facebook goal or metric we are optimizing for? INTERVIEWER: Monetization speaks to revenue so assume goal is to increase revenue for Facebook as a whole Does this include messenger Rooms or should we stick to the traditional FB messenger? INTERVIEWER: _Messenger rooms is a great call out, but let's stick"See full answer

    Product Design
    Product Strategy
  • Google logoAsked at Google 
    17 answers
    Video answer for 'What metrics would you focus on as the PM for YouTube?'
    +14

    "1. Step 1: clarify Let's establish the mission of Google and Youtube. Google's is to provide and make information more accessible. Youtube's might be to help people get their content, their word and themselves out into the world. I mean so many of Youtube's ads have been about how the diversity of individuals and their content, so that makes sense. Let's establish what is Youtube. Youtube has 3 primary stakeholders - creators, viewers and brands/corporations and within them"

    Karthik M. - "1. Step 1: clarify Let's establish the mission of Google and Youtube. Google's is to provide and make information more accessible. Youtube's might be to help people get their content, their word and themselves out into the world. I mean so many of Youtube's ads have been about how the diversity of individuals and their content, so that makes sense. Let's establish what is Youtube. Youtube has 3 primary stakeholders - creators, viewers and brands/corporations and within them"See full answer

    Product Manager
    Analytical
  • Meta logoAsked at Meta 
    27 answers
    +24

    "Assuming this is meant to be a standalone product. Its a standalone app. Goal: Simplify the shopping experience in store for a user. Success would be defined in terms of app usage as a proxy for user satisfaction. I want to think about the a given user segment, their pain points, ways to improve their pain and a way to evaluate those solutions. Broadly user personas associated with grocery shopping are - stores and customers. For the purpose of this interview I want to focus on customer se"

    P K. - "Assuming this is meant to be a standalone product. Its a standalone app. Goal: Simplify the shopping experience in store for a user. Success would be defined in terms of app usage as a proxy for user satisfaction. I want to think about the a given user segment, their pain points, ways to improve their pain and a way to evaluate those solutions. Broadly user personas associated with grocery shopping are - stores and customers. For the purpose of this interview I want to focus on customer se"See full answer

    Product Design
  • Anthropic logoAsked at Anthropic 
    3 answers

    "There are many good answers to this that AI scientists around the world, I and my coworkers have tried over the years. For one, RAG is a great option to fact-check and enforce citation generation, update the data in the knowledge base of the generative AI, etc. "

    Nathan B. - "There are many good answers to this that AI scientists around the world, I and my coworkers have tried over the years. For one, RAG is a great option to fact-check and enforce citation generation, update the data in the knowledge base of the generative AI, etc. "See full answer

    Machine Learning Engineer
    Artificial Intelligence
    +4 more
  • Google logoAsked at Google 
    10 answers
    +7

    "This question can be answered in two different ways: a. Strategic b. Product Sense Since , the question is which product you would work upon , it is likely a product strategy question , where interviewer is trying to find about how would you go about selecting the product to solve for. Another approach would be to clarify on the two approaches from the Interviewer. Can ask your hierarchy in PM role [ APM/PM/ Sr. PM / GPM ] and then approach this. Candidate : Do you have any specific goal"

    Vivek S. - "This question can be answered in two different ways: a. Strategic b. Product Sense Since , the question is which product you would work upon , it is likely a product strategy question , where interviewer is trying to find about how would you go about selecting the product to solve for. Another approach would be to clarify on the two approaches from the Interviewer. Can ask your hierarchy in PM role [ APM/PM/ Sr. PM / GPM ] and then approach this. Candidate : Do you have any specific goal"See full answer

    Product Manager
    Product Strategy
  • Google logoAsked at Google 
    15 answers
    +12

    "Clarifying question: why would Google consider sunsetting Gmail? Is there an opportunity to make a case against sunsetting or has the executive decision already been made and we're truly looking for a flawless sunset? If decision has already been made - why? Is this a global decision or country-specific? If the answer from interviewer is that the decision is open to debate, pivot case toward identifying the problem that causes leadership to even consider sunset. Then analyze and propose ways to"

    Anonymous Sparrow - "Clarifying question: why would Google consider sunsetting Gmail? Is there an opportunity to make a case against sunsetting or has the executive decision already been made and we're truly looking for a flawless sunset? If decision has already been made - why? Is this a global decision or country-specific? If the answer from interviewer is that the decision is open to debate, pivot case toward identifying the problem that causes leadership to even consider sunset. Then analyze and propose ways to"See full answer

    Product Manager
    Product Strategy
  • Google logoAsked at Google 
    46 answers
    +40

    "Clarifying Questions: Assume US Audience or Worldwide? US Only Assume short form content or long form content ? Assume all Premium or Ads Support ? All Solution: US Population 300M Will remove 70 ages as not relevant audience or not have access to YouTube = 60m Leaving 240M. Adoption of YouTube with remaining Population = 60% (including overlap and exclusion with other services e.g. Netflix) Total Audience that watches YouTube daily = 144m (about half of US Populat"

    Sumeet R. - "Clarifying Questions: Assume US Audience or Worldwide? US Only Assume short form content or long form content ? Assume all Premium or Ads Support ? All Solution: US Population 300M Will remove 70 ages as not relevant audience or not have access to YouTube = 60m Leaving 240M. Adoption of YouTube with remaining Population = 60% (including overlap and exclusion with other services e.g. Netflix) Total Audience that watches YouTube daily = 144m (about half of US Populat"See full answer

    Estimation
  • Google logoAsked at Google 
    25 answers
    +21

    "I will first start with listing down the GOALS of Google Sheets as a product GOALS: Enable better collaboration amongst employees in an organisation Make edits parallel Share with co-workers so that the team can work seamlessly Increase user engagement, activity and make more users aware about the functionality and usefulness of Google Sheets Next, i will try and list the broader ACTIONS a user might take ACTIONS: Create a new Google Sheet Share with co-workers M"

    Prateek G. - "I will first start with listing down the GOALS of Google Sheets as a product GOALS: Enable better collaboration amongst employees in an organisation Make edits parallel Share with co-workers so that the team can work seamlessly Increase user engagement, activity and make more users aware about the functionality and usefulness of Google Sheets Next, i will try and list the broader ACTIONS a user might take ACTIONS: Create a new Google Sheet Share with co-workers M"See full answer

    Product Manager
    Analytical
  • Google logoAsked at Google 
    12 answers
    +9

    "I was owning a very ambitious company-wide project of standardizing and modernizing the UI and UX of the platform. It was in development for a few years and eventually turned out to be a failure for the product. I term this as my biggest failure as a product manager. So I worked for a company which had a suite of products. Each product had a different UX and UI. This resulted in nonuniformity across the suite and caused usability issues for our suite users. The idea was to have a standard exper"

    Zafeer R. - "I was owning a very ambitious company-wide project of standardizing and modernizing the UI and UX of the platform. It was in development for a few years and eventually turned out to be a failure for the product. I term this as my biggest failure as a product manager. So I worked for a company which had a suite of products. Each product had a different UX and UI. This resulted in nonuniformity across the suite and caused usability issues for our suite users. The idea was to have a standard exper"See full answer

    Product Manager
    Behavioral
Showing 161-180 of 4659
Exponent

Get updates in your inbox with the latest tips, job listings, and more.

Follow Us

Products
Courses
Interview Questions
Interview Experiences
Popular articles
Guides
Coaching
For Partners
Company
Exponent © 2026
Terms of Service | Privacy