Interview Questions

Review this list of 3,944 interview questions and answers verified by hiring managers and candidates.
  • Coinbase logoAsked at Coinbase 
    Video answer for 'How would you set a goal for Facebook reactions and measure it?'
    +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
  • 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
  • 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
  • Meta (Facebook) logoAsked at Meta (Facebook) 

    "Hi Everyone, As an aspiring product manager, I feel with the latest Ray-Ban or Orion AR glasses that provides hands-free experience to the user. So basically, with these glasses you can interact, ask it to remember where you parked and what can you make with the ingredients which are in front of you, I think an extension to it can be a very great healthcare product. Now let's imagine that this glass is storing all your eating habits, what medicines you take, with an integration to meta watches"

    Pankhuri T. - "Hi Everyone, As an aspiring product manager, I feel with the latest Ray-Ban or Orion AR glasses that provides hands-free experience to the user. So basically, with these glasses you can interact, ask it to remember where you parked and what can you make with the ingredients which are in front of you, I think an extension to it can be a very great healthcare product. Now let's imagine that this glass is storing all your eating habits, what medicines you take, with an integration to meta watches"See full answer

    Product Manager
    Product Design
  • Meta (Facebook) logoAsked at Meta (Facebook) 
    Product Manager
    Product Design
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

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

    "With $1 billion to invest in generative AI, my focus would be on addressing unmet needs in everyday life. Here's my vision: Identify User Pain Points: I would start by understanding the specific challenges a segment of users face daily. Many people are integrating AI into their routines to simplify tasks, yet there are gaps that need to be filled. Learn from ChatGPT’s Success: ChatGPT's rapid growth to 200 million users demonstrates the demand for AI solutions that genuinely solve"

    Aayush S. - "With $1 billion to invest in generative AI, my focus would be on addressing unmet needs in everyday life. Here's my vision: Identify User Pain Points: I would start by understanding the specific challenges a segment of users face daily. Many people are integrating AI into their routines to simplify tasks, yet there are gaps that need to be filled. Learn from ChatGPT’s Success: ChatGPT's rapid growth to 200 million users demonstrates the demand for AI solutions that genuinely solve"See full answer

    Product Manager
    Product Strategy
  • Adobe logoAsked at Adobe 
    +16

    "We can use dictionary to store cache items so that our read / write operations will be O(1). Each time we read or update an existing record, we have to ensure the item is moved to the back of the cache. This will allow us to evict the first item in the cache whenever the cache is full and we need to add new records also making our eviction O(1) Instead of normal dictionary, we will use ordered dictionary to store cache items. This will allow us to efficiently move items to back of the cache a"

    Alfred O. - "We can use dictionary to store cache items so that our read / write operations will be O(1). Each time we read or update an existing record, we have to ensure the item is moved to the back of the cache. This will allow us to evict the first item in the cache whenever the cache is full and we need to add new records also making our eviction O(1) Instead of normal dictionary, we will use ordered dictionary to store cache items. This will allow us to efficiently move items to back of the cache a"See full answer

    Software Engineer
    Data Structures & Algorithms
    +6 more
  • 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
  • +40

    "#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
  • +2

    "class Solution { public boolean isValid(String s) { // Time Complexity and Space complexity will be O(n) Stack stack=new Stack(); for(char c:s.toCharArray()){ if(c=='('){ stack.push(')'); } else if(c=='{'){ stack.push('}'); } else if(c=='['){ stack.push(']'); } else if(stack.pop()!=c){ return false; } } return stack.isEmpty(); } }"

    Kanishvaran P. - "class Solution { public boolean isValid(String s) { // Time Complexity and Space complexity will be O(n) Stack stack=new Stack(); for(char c:s.toCharArray()){ if(c=='('){ stack.push(')'); } else if(c=='{'){ stack.push('}'); } else if(c=='['){ stack.push(']'); } else if(stack.pop()!=c){ return false; } } return stack.isEmpty(); } }"See full answer

    Machine Learning Engineer
    Data Structures & Algorithms
    +2 more
  • 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
  • Google logoAsked at Google 

    "Clarifying question: just want to make sure that I'm designing the right product, are you referring to ATM as in a machine that takes in a debit or credit card and dispenses cash? Also, is there any location restriction for where the machine is located at London Heathrow Airport, eg. departure hall after security or arrival hall before exiting baggage claim? These could potentially impact the use case. (Assume interviewer answers yes for first and no for second) Approach: Identify or segment"

    Anonymous Sparrow - "Clarifying question: just want to make sure that I'm designing the right product, are you referring to ATM as in a machine that takes in a debit or credit card and dispenses cash? Also, is there any location restriction for where the machine is located at London Heathrow Airport, eg. departure hall after security or arrival hall before exiting baggage claim? These could potentially impact the use case. (Assume interviewer answers yes for first and no for second) Approach: Identify or segment"See full answer

    Product Manager
    Product Design
  • Google logoAsked at Google 
    +6

    "He was really all over the place ? couldnt detect a structure to his answer felt like he was talking out of experience ."

    Ahmed A. - "He was really all over the place ? couldnt detect a structure to his answer felt like he was talking out of experience ."See full answer

    Product Strategy
  • " Thanks a lot for showing us how a recommender system can be build. I see it was proposed to use Collaborative filtering which is user - item matrix having dimension N * M (where N - number os users and M - number of songs). Though, it was explained how it gonna be built, it is still unclear how all users and songs features are going to be used. In that matrix we have values in cell (lets say i, j) like 1 - a specific user (i) clicked on song (j) when it was recommended or it is 0 when the user"

    Dinar M. - " Thanks a lot for showing us how a recommender system can be build. I see it was proposed to use Collaborative filtering which is user - item matrix having dimension N * M (where N - number os users and M - number of songs). Though, it was explained how it gonna be built, it is still unclear how all users and songs features are going to be used. In that matrix we have values in cell (lets say i, j) like 1 - a specific user (i) clicked on song (j) when it was recommended or it is 0 when the user"See full answer

    Technical
    System Design
    +1 more
  • 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
  • Amazon logoAsked at Amazon 

    "Questions? -Geography - US/ International Model? SEXY? Model 3 Most used. Timeline - 3 Quarters? Increase engagement? - Existing people Tesla - Electric company that builds EV cars. Mission- To accelerate the world's transition to sustainable energy? Mission Why - To increase the engagement - active users Recent Trends - Apps are rising on Apple Watch Ease of Use? Portability? Customer Segments New people who bought Tesla Existing People Models - Model 3 Fleet Owners ["

    Anonymous Tortoise - "Questions? -Geography - US/ International Model? SEXY? Model 3 Most used. Timeline - 3 Quarters? Increase engagement? - Existing people Tesla - Electric company that builds EV cars. Mission- To accelerate the world's transition to sustainable energy? Mission Why - To increase the engagement - active users Recent Trends - Apps are rising on Apple Watch Ease of Use? Portability? Customer Segments New people who bought Tesla Existing People Models - Model 3 Fleet Owners ["See full answer

    Product Manager
    Product Design
  • +7

    "There are two parts to this questions: Part 1: Why did Meta create Rooms? ( limiting to video collaboration) Answer: Potential reasons for Meta to create their own Zoom equivalent: Provide a video collaboration platform to employees. Due to size and global distribution of its workforce it may make economic sense to make an in-house product that is cheaper than buying an enterprise license of Zoom Meta already has the technology and infrastructure to do videocalls and meetings because of"

    Tony A. - "There are two parts to this questions: Part 1: Why did Meta create Rooms? ( limiting to video collaboration) Answer: Potential reasons for Meta to create their own Zoom equivalent: Provide a video collaboration platform to employees. Due to size and global distribution of its workforce it may make economic sense to make an in-house product that is cheaper than buying an enterprise license of Zoom Meta already has the technology and infrastructure to do videocalls and meetings because of"See full answer

    Product Manager
    Analytical
  • +1

    "Are we speaking of all Meta Ads products on something specific? All of them Meta is a social media and AI company that generates most of it's revenue from Ads on social media. Meta's mission is to empower people to build communities and bring the world closer together. If ads violate the community guidelines regulations that can directly hurt both Meta's mission and its revenue stream. For example ads that include hate speech are against community guidelines and also hurts Meta's mission. Ha"

    Yair G. - "Are we speaking of all Meta Ads products on something specific? All of them Meta is a social media and AI company that generates most of it's revenue from Ads on social media. Meta's mission is to empower people to build communities and bring the world closer together. If ads violate the community guidelines regulations that can directly hurt both Meta's mission and its revenue stream. For example ads that include hate speech are against community guidelines and also hurts Meta's mission. Ha"See full answer

    Product Manager
    Analytical
Showing 361-380 of 3944