Interview Questions

Review this list of 3,944 interview questions and answers verified by hiring managers and candidates.
  • DoorDash logoAsked at DoorDash 

    "Clarifying Questions: Discover events, purchase/resell via app Post booking: After ticket purchase to event completion Motivation for Ticketmaster: Strengths: 70-80% of ticketing business, tie ups with venues Competition: meetup Low frequency product - so every experience matters Positive wom: Reduced marketing Retention of users, organizers Users: Ecosystem Attendees: Discover, buy and attend events - {chose this} Event Organizers: marketing/demand, s"

    Sandhya N. - "Clarifying Questions: Discover events, purchase/resell via app Post booking: After ticket purchase to event completion Motivation for Ticketmaster: Strengths: 70-80% of ticketing business, tie ups with venues Competition: meetup Low frequency product - so every experience matters Positive wom: Reduced marketing Retention of users, organizers Users: Ecosystem Attendees: Discover, buy and attend events - {chose this} Event Organizers: marketing/demand, s"See full answer

    Product Manager
    Product Design
  • System Design
    Machine Learning
  • Apple logoAsked at Apple 

    "Average case - lookup/insert/delete - o(1) -> assuming a low load factor and uniform hash distribution. Worst case - o(n) -> where are keys collide in same bucket"

    Kargi C. - "Average case - lookup/insert/delete - o(1) -> assuming a low load factor and uniform hash distribution. Worst case - o(n) -> where are keys collide in same bucket"See full answer

    Engineering Manager
    Data Structures & Algorithms
  • Meta (Facebook) logoAsked at Meta (Facebook) 
    +1

    "What is Facebook Live? Facebook Live is the posting of a live video -> Virtual events, QA, conversation, presentation/performance. It can be on your Facebook page, event, or group. Mission Facebook's mission is to connect people and bring the world closer together. The mission of Facebook Live, from my perspective, is to enable individuals to engage ( message), discuss, and learn in real-time with their role models, influencers, and others to discover and establish stronger connect"

    Reach G. - "What is Facebook Live? Facebook Live is the posting of a live video -> Virtual events, QA, conversation, presentation/performance. It can be on your Facebook page, event, or group. Mission Facebook's mission is to connect people and bring the world closer together. The mission of Facebook Live, from my perspective, is to enable individuals to engage ( message), discuss, and learn in real-time with their role models, influencers, and others to discover and establish stronger connect"See full answer

    Product Manager
    Execution
    +2 more
  • Capital One logoAsked at Capital One 
    Product Manager
    Product Design
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • +1

    "Time taken: 25 minutes My approach: I would start by listing the use cases, what could be the length of cable needed, quantifying each and weight average those. The % make the assumption that it is what it represents the share in the total nb of iphone recharges. In fact total should be more than 100% because it not exclusive but for sake of simplicity let’s say it tops at 100%. \# In details: charging next to bed: 50%generally speaking there is a bedside table that is 80 cm high and the"

    Adaneir W. - "Time taken: 25 minutes My approach: I would start by listing the use cases, what could be the length of cable needed, quantifying each and weight average those. The % make the assumption that it is what it represents the share in the total nb of iphone recharges. In fact total should be more than 100% because it not exclusive but for sake of simplicity let’s say it tops at 100%. \# In details: charging next to bed: 50%generally speaking there is a bedside table that is 80 cm high and the"See full answer

    Product Manager
  • Amazon logoAsked at Amazon 

    "Roadblocks or obstacles are common when working on projects. It's essential to navigate them and quickly find solutions to ensure timely delivery and success of your projects. Steps to handle roadblocks or obstacles: Gauge the potential imapct and decide if it's something that needs immediate solution or something that can be handled later. If it needs urgent solutions, try to understand the rootcause of the roadblock or obstacle and dig deep. If it's a already seen problem before, try"

    Anonymous Stork - "Roadblocks or obstacles are common when working on projects. It's essential to navigate them and quickly find solutions to ensure timely delivery and success of your projects. Steps to handle roadblocks or obstacles: Gauge the potential imapct and decide if it's something that needs immediate solution or something that can be handled later. If it needs urgent solutions, try to understand the rootcause of the roadblock or obstacle and dig deep. If it's a already seen problem before, try"See full answer

    Product Manager
    Behavioral
  • Dropbox logoAsked at Dropbox 
    +6

    "Assumptions: Part of the core FB product and not standalone app/ Education for children in 13-18 range Goal: To improve the education of children while building stronger social networks with their family/friends and thus further the mission of the company of bringing the world together and offering tools to form communities. Key user segments: Students (middle and high school) Teachers Parents For the purpose of this exercise, I would like to focus on the student user gr"

    P K. - "Assumptions: Part of the core FB product and not standalone app/ Education for children in 13-18 range Goal: To improve the education of children while building stronger social networks with their family/friends and thus further the mission of the company of bringing the world together and offering tools to form communities. Key user segments: Students (middle and high school) Teachers Parents For the purpose of this exercise, I would like to focus on the student user gr"See full answer

    Product Manager
    Product Design
  • Meta (Facebook) logoAsked at Meta (Facebook) 
    +3

    "I'm going to assume I'm the PM for Events. Clarifying Questions: Is there any reason why we're improving Events, perhaps any bugs or feature requests? I'll assume improvement is open-ended Are we scoped to Facebook mobile or web? I'll assume no I'd like to break this problem down into three areas: goals, users, and solutions. Let's talk about goals first. Higher-level goal for Facebook & Events The higher-level goal for Facebook is to bring people closer together and empower"

    Aryan B. - "I'm going to assume I'm the PM for Events. Clarifying Questions: Is there any reason why we're improving Events, perhaps any bugs or feature requests? I'll assume improvement is open-ended Are we scoped to Facebook mobile or web? I'll assume no I'd like to break this problem down into three areas: goals, users, and solutions. Let's talk about goals first. Higher-level goal for Facebook & Events The higher-level goal for Facebook is to bring people closer together and empower"See full answer

    Product Design
  • "Define the feature A virtual card number is a temporary or disposable card number generated by your credit card issuer or financial institution. It is designed to protect your actual credit card information during online transactions. Its main purpose is the security of your actual credit card. Clarification questions No questions What is the purpose of the feature? Enhanced Security: Using a virtual card number protects your actual credit card details from being exposed to potentia"

    Ekta M. - "Define the feature A virtual card number is a temporary or disposable card number generated by your credit card issuer or financial institution. It is designed to protect your actual credit card information during online transactions. Its main purpose is the security of your actual credit card. Clarification questions No questions What is the purpose of the feature? Enhanced Security: Using a virtual card number protects your actual credit card details from being exposed to potentia"See full answer

    Product Manager
    Analytical
  • Capital One logoAsked at Capital One 

    "python: def justifywords(wordslist, width): result = [] currlinechar_count = 0 curr_words = [] for word in words_list: if curr_words: space_needed = len(word) + 1 # Space needed for the word and a preceding space else: space_needed = len(word) if currlinecharcount + spaceneeded > width: result.append(' '.join(curr_words)) curr_words = [word] currlinechar_count = len("

    Anonymous Unicorn - "python: def justifywords(wordslist, width): result = [] currlinechar_count = 0 curr_words = [] for word in words_list: if curr_words: space_needed = len(word) + 1 # Space needed for the word and a preceding space else: space_needed = len(word) if currlinecharcount + spaceneeded > width: result.append(' '.join(curr_words)) curr_words = [word] currlinechar_count = len("See full answer

    Software Engineer
    Coding
  • Stripe logoAsked at Stripe 
    Video answer for 'How would you build a high-performance engineering team?'

    "I wish there were more real-life examples, more practical information that actually demonstrates the wealth of experience. In the beginning, we are introduced to 3 pillars: trust, high productivity, and growth mindset. It would have been nice to see 1 example for each of these pillars in practice. the interview response was very theoretical and diplomatic. Very shy in providing even small real-life examples e.g. question what are the example guidelines teams would set by themselves to identify w"

    Anonymous Krill - "I wish there were more real-life examples, more practical information that actually demonstrates the wealth of experience. In the beginning, we are introduced to 3 pillars: trust, high productivity, and growth mindset. It would have been nice to see 1 example for each of these pillars in practice. the interview response was very theoretical and diplomatic. Very shy in providing even small real-life examples e.g. question what are the example guidelines teams would set by themselves to identify w"See full answer

    Engineering Manager
    Behavioral
  • Engineering Manager
    People Management
  • Microsoft logoAsked at Microsoft 

    "Clarifying questions Key value proposition of the product: targeted search engine for kids to search the internet Target users: kids below 18 years of age Target geography: USA Form factor: web app Target market Kids (largely school students) are now increasingly using the internet for educational purposes to perform assignments, collaborate on projects etc. A search engine is a core need to access the internet for this audience and is needed quite frequently - almost every time a"

    Rahul J. - "Clarifying questions Key value proposition of the product: targeted search engine for kids to search the internet Target users: kids below 18 years of age Target geography: USA Form factor: web app Target market Kids (largely school students) are now increasingly using the internet for educational purposes to perform assignments, collaborate on projects etc. A search engine is a core need to access the internet for this audience and is needed quite frequently - almost every time a"See full answer

    Product Manager
    Product Design
  • Microsoft logoAsked at Microsoft 

    "Imagine a blockchain as a magical, unchangeable diary that keeps track of all the candies you share with your friends. Whenever you share a candy, you write it down in this special diary, and your friends also write it down in their diaries. But here's the cool part – all the diaries are connected and can talk to each other! So, when you want to know who has borrowed your candy or if you borrowed candy from someone else, you just check this special diary. It shows you the history of all the can"

    Maedu E. - "Imagine a blockchain as a magical, unchangeable diary that keeps track of all the candies you share with your friends. Whenever you share a candy, you write it down in this special diary, and your friends also write it down in their diaries. But here's the cool part – all the diaries are connected and can talk to each other! So, when you want to know who has borrowed your candy or if you borrowed candy from someone else, you just check this special diary. It shows you the history of all the can"See full answer

    Product Manager
    Behavioral
    +1 more
  • Lyft logoAsked at Lyft 
    +4

    "I would like to ask a few clarifying questions Lyft for kids: Does this mean we want to design a ride sharing app for kids? (Assuming yes) Do we have any existing features catered to kids? (Assuming no) Lyft has a lot of features. I am going to assume basic table stake features which Lyft already has as: Ability to call for a ride Ride tracking Are there any goals that we would like to achieve with this feature? If we look at current market conditions, Lyft has biggest threat f"

    Unicorn 2. - "I would like to ask a few clarifying questions Lyft for kids: Does this mean we want to design a ride sharing app for kids? (Assuming yes) Do we have any existing features catered to kids? (Assuming no) Lyft has a lot of features. I am going to assume basic table stake features which Lyft already has as: Ability to call for a ride Ride tracking Are there any goals that we would like to achieve with this feature? If we look at current market conditions, Lyft has biggest threat f"See full answer

    Product Manager
    Product Design
  • Google logoAsked at Google 

    "I'd ask Clarification questions here before proceeding with designing a CDN. The questions would be. What is the Use Case with multiple questions in it What sort of Content do you want to serve - Static files or Streaming Media or trending content? How many regions do you want to cover Do you want to prioritize speed and the Latest file availability or do you want to prioritize time-based caching per region? Budget constraints(push cdn's can be cheaper). Whether"

    Manas M. - "I'd ask Clarification questions here before proceeding with designing a CDN. The questions would be. What is the Use Case with multiple questions in it What sort of Content do you want to serve - Static files or Streaming Media or trending content? How many regions do you want to cover Do you want to prioritize speed and the Latest file availability or do you want to prioritize time-based caching per region? Budget constraints(push cdn's can be cheaper). Whether"See full answer

    Solutions Architect
    Technical
  • +1

    "Clarifying Questions: Will this feature be rolled out to the Facebook App or will it be a stand-alone app like Messenger? -- Assume it will be another feature like Marketplace embedded in the Facebook App What is the goal of this feature? How will it be used? Similar to Marketplace where you might see job listings and employer's company pages linked for reviews Will this be rolled out to a specific geographic region or a specific industry? - Lets assume all industries in US **Assump"

    Avi G. - "Clarifying Questions: Will this feature be rolled out to the Facebook App or will it be a stand-alone app like Messenger? -- Assume it will be another feature like Marketplace embedded in the Facebook App What is the goal of this feature? How will it be used? Similar to Marketplace where you might see job listings and employer's company pages linked for reviews Will this be rolled out to a specific geographic region or a specific industry? - Lets assume all industries in US **Assump"See full answer

    Product Manager
  • Google logoAsked at Google 

    "Clarifying question? What is GCP and what does it mean to create a new GCP region in Portugal? GCP is Google Cloud Portugal. Creating a new region means creating data centres (clouds) which can be used as hosts. Is there a business objective to consider Portugal for a new region? None in particular Structure: Explore internal factors Is there a particular business goal that we are trying to accomplish like goal of getting more business from EU companies in coming few years? If yes"

    S Y. - "Clarifying question? What is GCP and what does it mean to create a new GCP region in Portugal? GCP is Google Cloud Portugal. Creating a new region means creating data centres (clouds) which can be used as hosts. Is there a business objective to consider Portugal for a new region? None in particular Structure: Explore internal factors Is there a particular business goal that we are trying to accomplish like goal of getting more business from EU companies in coming few years? If yes"See full answer

    Product Manager
    Product Strategy
    +1 more
Showing 741-760 of 3944