Interview Questions

Review this list of 4,138 interview questions and answers verified by hiring managers and candidates.
  • "Back in 2019, I had to take a decision of firing an engineer as he was rude and abusive to one of my customers"

    Sridhar K. - "Back in 2019, I had to take a decision of firing an engineer as he was rude and abusive to one of my customers"See full answer

    Behavioral
  • Amazon logoAsked at Amazon 

    "Clarifying my assumptions first, i.e. "Technical contributions are not just writing or reviewing code". Answer : My contributions to any program I lead as a TPM are as follows : Inputs towards design, architecture review, mapping requirements to the proposed design, reviewing the implementation strategy w.r.t scalable solution, Writing core user-centric test scenarios, Validating proposed design vs implementation estimates vs initial planning. etc... Example : Situation: We are a"

    DM - "Clarifying my assumptions first, i.e. "Technical contributions are not just writing or reviewing code". Answer : My contributions to any program I lead as a TPM are as follows : Inputs towards design, architecture review, mapping requirements to the proposed design, reviewing the implementation strategy w.r.t scalable solution, Writing core user-centric test scenarios, Validating proposed design vs implementation estimates vs initial planning. etc... Example : Situation: We are a"See full answer

    Technical Program Manager
    Technical
    +2 more
  • Google logoAsked at Google 
    +4

    "Spotify is a music streaming app. Monetization of Spotify happens in multiple ways : Ads Subscriptions (Ads free, premium) Make Spotify default on Android phones as Apple Music on Iphones Spotify to be a default on Nest hubs Exclusive membership (New songs ) Learn with Spotify classes Chat with Content creators (for a minimum fee)"

    Anjaly J. - "Spotify is a music streaming app. Monetization of Spotify happens in multiple ways : Ads Subscriptions (Ads free, premium) Make Spotify default on Android phones as Apple Music on Iphones Spotify to be a default on Nest hubs Exclusive membership (New songs ) Learn with Spotify classes Chat with Content creators (for a minimum fee)"See full answer

    Product Strategy
    Product Design
  • Amazon logoAsked at Amazon 
    +1

    "delete"

    David P. - "delete"See full answer

    Product Manager
    Behavioral
    +1 more
  • "The first thing I would want to do is understand why. Did the requirements change? Did we underscope the project? Were there unforeseen technical complexities? Did our capacity or velocity change for any reason? Did other more urgent priorities come up that shifted focus away from this? Next I would want to understand all of the risks of missing the launch deadline. Are other teams dependent on our work? Are there any external marketing communications tied our to launch? What will be the impact"

    Mallory M. - "The first thing I would want to do is understand why. Did the requirements change? Did we underscope the project? Were there unforeseen technical complexities? Did our capacity or velocity change for any reason? Did other more urgent priorities come up that shifted focus away from this? Next I would want to understand all of the risks of missing the launch deadline. Are other teams dependent on our work? Are there any external marketing communications tied our to launch? What will be the impact"See full answer

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

  • Visa logoAsked at Visa 

    "There are couple of reasons for it - Kind of role : Its a product manager role loaded with analytical work, So working with data in stringent regulatory guideline make it more exciting and thrilling. Location & industry is like - Cherry on the cake, Bangalore weather and BFI is at its all time peak as people spending behavior is changing continuously, it will be interesting to see big giants like visa are managing it."

    Nidhi S. - "There are couple of reasons for it - Kind of role : Its a product manager role loaded with analytical work, So working with data in stringent regulatory guideline make it more exciting and thrilling. Location & industry is like - Cherry on the cake, Bangalore weather and BFI is at its all time peak as people spending behavior is changing continuously, it will be interesting to see big giants like visa are managing it."See full answer

    Product Manager
    Behavioral
    +4 more
  • Meta (Facebook) logoAsked at Meta (Facebook) 
    Software Engineer
    Coding
    +1 more
  • +2

    "Should be able to charge the airpod case when pluged into energy. Should be able to charge when the airpod case has battery. Should be able to alert if the airpod case is out of battery. Should be able to sync with non-paired devices. Should be able to sync automatically with paired devices. Should be able to sync automatically with paired devices that are closer to the airpod. Should be able to switch the connection to a device answering a call. Should be able to pause during us"

    Daniel M. - "Should be able to charge the airpod case when pluged into energy. Should be able to charge when the airpod case has battery. Should be able to alert if the airpod case is out of battery. Should be able to sync with non-paired devices. Should be able to sync automatically with paired devices. Should be able to sync automatically with paired devices that are closer to the airpod. Should be able to switch the connection to a device answering a call. Should be able to pause during us"See full answer

    QA Engineer
    Technical
    +2 more
  • +1

    "import numpy as np class Centroid: def init(self, location, vectors): self.location = location # (D,) self.vectors = vectors # (N_i, D) class KMeans: def init(self, n_features, k): self.nfeatures = nfeatures self.centroids = [ Centroid( location=np.random.randn(n_features), vectors=np.empty((0, n_features)) ) for _ in range(k) ] def distance(self, x,"

    Dinesh G. - "import numpy as np class Centroid: def init(self, location, vectors): self.location = location # (D,) self.vectors = vectors # (N_i, D) class KMeans: def init(self, n_features, k): self.nfeatures = nfeatures self.centroids = [ Centroid( location=np.random.randn(n_features), vectors=np.empty((0, n_features)) ) for _ in range(k) ] def distance(self, x,"See full answer

    Coding
    Machine Learning
  • 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
  • "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
  • Agoda logoAsked at Agoda 

    "Clarifying questions Target customers: users who want to book flights, hotel etc. Geo: USA Form factor: web and mobile app About the company Agoda wants its users to 'see the world for less' i.e. they are targeting users who want to travel (for business or pleasure) and their key value proposition is price i.e. lowest cost hotels, flights and other services. Business model: Agoda is an online market place where vendors like airlines, hotels etc. are displayed and user can search for a"

    Rahul J. - "Clarifying questions Target customers: users who want to book flights, hotel etc. Geo: USA Form factor: web and mobile app About the company Agoda wants its users to 'see the world for less' i.e. they are targeting users who want to travel (for business or pleasure) and their key value proposition is price i.e. lowest cost hotels, flights and other services. Business model: Agoda is an online market place where vendors like airlines, hotels etc. are displayed and user can search for a"See full answer

    Product Manager
    Product Strategy
  • Amazon logoAsked at Amazon 
    Video answer for 'Design Uber Eats.'
    +6

    "basic drew the diagram"

    Aswath B. - "basic drew the diagram"See full answer

    Software Engineer
    System Design
    +2 more
  • "When originally trying to launch XYZ product, a stakeholder wanted to rollout an additional requirement for agents that would have been redundant. I provided light pushback and context regarding the scale of the lift and technical resources required to initiate their request. Once I described the complexity of their request & potential strain on resources, we agreed to brainstorm alternative solutions. I collaborated with cross-functional teams to create an automated solution, leading to XYZ% in"

    Katie O. - "When originally trying to launch XYZ product, a stakeholder wanted to rollout an additional requirement for agents that would have been redundant. I provided light pushback and context regarding the scale of the lift and technical resources required to initiate their request. Once I described the complexity of their request & potential strain on resources, we agreed to brainstorm alternative solutions. I collaborated with cross-functional teams to create an automated solution, leading to XYZ% in"See full answer

    Program Manager
    Behavioral
  • Meta (Facebook) logoAsked at Meta (Facebook) 
    Video answer for 'How would you build an audio product for Facebook?'
    +14

    "The pain points articulated (no contextual recs, isolating experience, etc.) are pain points in the broader audio listening industry - there's no existing audio product at Meta already and assuming this is a net new product, wouldn't it have made more sense to have pain points specific to Meta? E.g. "there's no sense of real-time community in FB Groups" or "the barrier to engage in FB groups feels high" It almost feels like she just regurgitated things she's learned from her time working on Alex"

    Michael N. - "The pain points articulated (no contextual recs, isolating experience, etc.) are pain points in the broader audio listening industry - there's no existing audio product at Meta already and assuming this is a net new product, wouldn't it have made more sense to have pain points specific to Meta? E.g. "there's no sense of real-time community in FB Groups" or "the barrier to engage in FB groups feels high" It almost feels like she just regurgitated things she's learned from her time working on Alex"See full answer

    Product Manager
    Product Design
    +1 more
  • "Clarification and Assumption In house labeling vs outsourced? labeling text, images, bounding boxes, segmentations etc? what kind of issues have we observed? Assuming that data collection and pre/post-processing is done by different team and labeling starts with receiving data and ends with sending files back to my team. "outsourced, images containing objects, 2 dozen classes of objects to label bounding boxes." 2.Goal Quality is important because downstream effect. garbage in garbage out."

    Rui B. - "Clarification and Assumption In house labeling vs outsourced? labeling text, images, bounding boxes, segmentations etc? what kind of issues have we observed? Assuming that data collection and pre/post-processing is done by different team and labeling starts with receiving data and ends with sending files back to my team. "outsourced, images containing objects, 2 dozen classes of objects to label bounding boxes." 2.Goal Quality is important because downstream effect. garbage in garbage out."See full answer

    Product Manager
    System Design
  • "1) Product Just to make sure we are on the same page. Facebook Groups is a functionality/feature inside Facebook App where people can create and interact within specific groups. These groups are managed by admins, who define the rules. Is my understanding correct? 2) Clarification Do we want to measure success for a specific user segment? Are we looking at specific types of groups? What about location? What about devices, have you any in mind, web, android, iOS? _I will assume tha"

    Leonardo F. - "1) Product Just to make sure we are on the same page. Facebook Groups is a functionality/feature inside Facebook App where people can create and interact within specific groups. These groups are managed by admins, who define the rules. Is my understanding correct? 2) Clarification Do we want to measure success for a specific user segment? Are we looking at specific types of groups? What about location? What about devices, have you any in mind, web, android, iOS? _I will assume tha"See full answer

    Execution
    Analytical
  • +2

    "Part 1 - Initial diagnostic questions Question: To start, I want to confirm that this is actually an issue. Have we changed any logging related to DAU in past couple of months? Answer: No Question: Ok, now I'm wondering if this could be a seasonal issue. In the past 6 months, have we seen a similar trend where DAU is down by 10%? Answer: No Question: Ok, to zoom out for a second, let's think about any macro-level factors that may have impacted DAU. Is there any negative public sent"

    Anonymous Amphibian - "Part 1 - Initial diagnostic questions Question: To start, I want to confirm that this is actually an issue. Have we changed any logging related to DAU in past couple of months? Answer: No Question: Ok, now I'm wondering if this could be a seasonal issue. In the past 6 months, have we seen a similar trend where DAU is down by 10%? Answer: No Question: Ok, to zoom out for a second, let's think about any macro-level factors that may have impacted DAU. Is there any negative public sent"See full answer

    Product Manager
    Execution
    +2 more
  • Coinbase logoAsked at Coinbase 
    Product Manager
    Behavioral
    +2 more
  • "Food delivery apps : Food delivery apps are clear example of demand and supply functions, Both end need to monitored closely. Ecosystem : Order placer, Restaurant and Food delivery Platform Value : Order placer find value when they can order food at home from their fav restaurants. Restaurant find value when they make sell via order coming in and probably good reviews which marks future growth. Food delivery platform when orders are being placed. North star metrics : # of order delivered Bre"

    Aeshvarya J. - "Food delivery apps : Food delivery apps are clear example of demand and supply functions, Both end need to monitored closely. Ecosystem : Order placer, Restaurant and Food delivery Platform Value : Order placer find value when they can order food at home from their fav restaurants. Restaurant find value when they make sell via order coming in and probably good reviews which marks future growth. Food delivery platform when orders are being placed. North star metrics : # of order delivered Bre"See full answer

    Product Manager
    Execution
    +1 more
Showing 861-880 of 4138