Skip to main content

Interview Questions

Review this list of 4,411 interview questions and answers verified by hiring managers and candidates.
  • Amazon logoAsked at Amazon 
    +1

    "· Listen both sides and without any bias. Support or focus on the problem rather than person. Take necessary steps in case there is middle ground its well and good if both parties agree. If not be honest and support the person who is correct. Ultimate goal is to be useful for overall project and company rather individual satisfaction. The approach should be fit into overall team goal."

    BePostive - "· Listen both sides and without any bias. Support or focus on the problem rather than person. Take necessary steps in case there is middle ground its well and good if both parties agree. If not be honest and support the person who is correct. Ultimate goal is to be useful for overall project and company rather individual satisfaction. The approach should be fit into overall team goal."See full answer

    Product Manager
    Behavioral
    +1 more
  • Product Manager
    Product Design
    +1 more
  • Amazon logoAsked at Amazon 

    "We will not always have all the required data to make a decision quickly. We need to work with ambiguity effectively by tying up the available facts with intuition."

    Sankar S. - "We will not always have all the required data to make a decision quickly. We need to work with ambiguity effectively by tying up the available facts with intuition."See full answer

    Software Engineer
    Behavioral
    +1 more
  • +3

    "Estimate how much it costs Google to store a year free of storage of photos for new Pixel Phones Clarify with Questions Know the Basic Numbers Decide on and Lay Down Your Structure Write Down the Equations Crunch Numbers Sanity Check Clarify with Questions Are we talking about cost per person? Whole user base? What do you mean when you are talking costs? Cost to build the facility? Cost to just store the data as a result o"

    Viet H. - "Estimate how much it costs Google to store a year free of storage of photos for new Pixel Phones Clarify with Questions Know the Basic Numbers Decide on and Lay Down Your Structure Write Down the Equations Crunch Numbers Sanity Check Clarify with Questions Are we talking about cost per person? Whole user base? What do you mean when you are talking costs? Cost to build the facility? Cost to just store the data as a result o"See full answer

    Estimation
    System Design
  • "The question is about Netflix users decreasing 10%, not about delivery app."

    corrie881 - "The question is about Netflix users decreasing 10%, not about delivery app."See full answer

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

  • "First, lets dive deeper into the question. I would ask - What are the top challenges facedtoday? What user segments work well, and what do we want to focus on? What do we know about competitors, and what can we learn from them? What user flows have the highest engagement in VR today? Are we focusing on consumer use cases or enterprise? Are we tackling activation or retention, or do we want to increase engagement? To build a strategy here I would target this from four differe"

    Anonymous Minnow - "First, lets dive deeper into the question. I would ask - What are the top challenges facedtoday? What user segments work well, and what do we want to focus on? What do we know about competitors, and what can we learn from them? What user flows have the highest engagement in VR today? Are we focusing on consumer use cases or enterprise? Are we tackling activation or retention, or do we want to increase engagement? To build a strategy here I would target this from four differe"See full answer

    Product Manager
    Product Strategy
  • Better.com logoAsked at Better.com 

    "What are you strengths -: My strengths would include my eagerness to learn. This allows me to be open to new projects, roles and products and I can give my 100% to achieve the goals expected of me Other strengths would include my collaborative approach to work. I believe a team can achieve tremendous success if shares a common goal, respects other's opinions and contribution and is built on fundamental of trust Finally my biggest strength would be my commitment and passion to solve the custome"

    Amit A. - "What are you strengths -: My strengths would include my eagerness to learn. This allows me to be open to new projects, roles and products and I can give my 100% to achieve the goals expected of me Other strengths would include my collaborative approach to work. I believe a team can achieve tremendous success if shares a common goal, respects other's opinions and contribution and is built on fundamental of trust Finally my biggest strength would be my commitment and passion to solve the custome"See full answer

    Product Manager
    Behavioral
  • +5

    "The key here is a) not to overreact to Sales bypassing me going straight to Engineering (while understanding every team acts according to their incentives), and b) communicate with all parties as much as possible to get everyone on the same page. 1) First, I'd speak to Sales and understand the feature being requested. I consider Sales to be one of the most important primary research funnels - they have direct, regular touchpoints with the client and are finely attuned to the lifeblood o"

    Sachin P. - "The key here is a) not to overreact to Sales bypassing me going straight to Engineering (while understanding every team acts according to their incentives), and b) communicate with all parties as much as possible to get everyone on the same page. 1) First, I'd speak to Sales and understand the feature being requested. I consider Sales to be one of the most important primary research funnels - they have direct, regular touchpoints with the client and are finely attuned to the lifeblood o"See full answer

    Product Manager
    Behavioral
    +1 more
  • +3

    "I began by defining Booking.com as a marketplace or a platform, matching between supply and demand, with a transaction in the middle (payment/booking process). This structure allows me to categorize potential cancellations into three main channels: demand, supply, and transaction. Cancellation Scenarios: a. Demand (Guests/Travelers): Change of Plans: Guests might change their travel plans. Found a Better Deal: They might find a better deal elsewhere. Errors in Booking: Accidental booking o"

    Yazeed - "I began by defining Booking.com as a marketplace or a platform, matching between supply and demand, with a transaction in the middle (payment/booking process). This structure allows me to categorize potential cancellations into three main channels: demand, supply, and transaction. Cancellation Scenarios: a. Demand (Guests/Travelers): Change of Plans: Guests might change their travel plans. Found a Better Deal: They might find a better deal elsewhere. Errors in Booking: Accidental booking o"See full answer

    Product Manager
    Analytical
    +1 more
  • Product Manager
    Analytical
    +1 more
  • Amazon logoAsked at Amazon 
    +1

    "Explained in STAR format one of the project situation where I had originally approved problem with different design which was correct approach that time. But as the project progressed that approach needed revision. Emphasized on facts why original approach was taken with points. Also focused tail end of discussion on learnings out of situation and how you end up deploying better solution from that learning."

    Vijay P. - "Explained in STAR format one of the project situation where I had originally approved problem with different design which was correct approach that time. But as the project progressed that approach needed revision. Emphasized on facts why original approach was taken with points. Also focused tail end of discussion on learnings out of situation and how you end up deploying better solution from that learning."See full answer

    Technical Program Manager
    Behavioral
  • +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
  • Airbnb logoAsked at Airbnb 

    "I most want to communicate a few principals of conflict resolution that I believe were integral in this situation, which are mutual respect, a results orientation, an unwavering focus on the user. To that end, here’s how I’d like to structure this answer: First, I’ll tell you about the project we were working on, to provide some background for you. Second, I’ll describe the disagreement. Third, I’ll describe how we arrived at a solution, and finally, I’ll discuss how those 3 conflict resolution"

    Ross B. - "I most want to communicate a few principals of conflict resolution that I believe were integral in this situation, which are mutual respect, a results orientation, an unwavering focus on the user. To that end, here’s how I’d like to structure this answer: First, I’ll tell you about the project we were working on, to provide some background for you. Second, I’ll describe the disagreement. Third, I’ll describe how we arrived at a solution, and finally, I’ll discuss how those 3 conflict resolution"See full answer

    Product Manager
    Behavioral
    +1 more
  • "If I could only talk to one customer of my product, I will pick that customer who was earlier a loyal user of my product but now engaging less or have left the product recently. As a PM, two most important metrics that show that your product is worthy for your users are retention & monetisation. If I am seeing a Loyal user not engaging any more with my platform, it shows that either that user has found 10X better substitute to satisfy the same need or that user is not liking my platform any mor"

    Krishan K. - "If I could only talk to one customer of my product, I will pick that customer who was earlier a loyal user of my product but now engaging less or have left the product recently. As a PM, two most important metrics that show that your product is worthy for your users are retention & monetisation. If I am seeing a Loyal user not engaging any more with my platform, it shows that either that user has found 10X better substitute to satisfy the same need or that user is not liking my platform any mor"See full answer

    Product Manager
    Product Strategy
  • "You're a PM for Uber Eats. Cart conversion has dropped by 10% in the last 3 months. How would you find the root cause? Clarify- 1) What is conversion? Is it where they complete the order after adding it to cart?- Yes 2) Has this drop been sudden or over an extended period of time?- Its been over the past month 3) Is this localized to somewhere? Seems to be only in the US Uber Eats is a business that delivers food and various goods to customers that buy them. Its a 3 sided marketplace wher"

    Pratik H. - "You're a PM for Uber Eats. Cart conversion has dropped by 10% in the last 3 months. How would you find the root cause? Clarify- 1) What is conversion? Is it where they complete the order after adding it to cart?- Yes 2) Has this drop been sudden or over an extended period of time?- Its been over the past month 3) Is this localized to somewhere? Seems to be only in the US Uber Eats is a business that delivers food and various goods to customers that buy them. Its a 3 sided marketplace wher"See full answer

    Product Manager
    Analytical
    +1 more
  • TikTok logoAsked at TikTok 
    Product Manager
    Product Design
    +1 more
  • GitHub logoAsked at GitHub 
    +1

    "I always strive to use feedback as a learning opportunity to enhance my skills and performance. Since I don't have recent negative feedback to share, I constantly seek constructive criticism and feedback to improve. In my experiences, I've received valuable input that has helped me refine my approach, such as enhancing communication methods or adjusting certain processes for better efficiency. Whether positive or negative, feedback is instrumental in professional growth, and I actively use it to"

    Balakrishnan J. - "I always strive to use feedback as a learning opportunity to enhance my skills and performance. Since I don't have recent negative feedback to share, I constantly seek constructive criticism and feedback to improve. In my experiences, I've received valuable input that has helped me refine my approach, such as enhancing communication methods or adjusting certain processes for better efficiency. Whether positive or negative, feedback is instrumental in professional growth, and I actively use it to"See full answer

    Product Manager
    Behavioral
  • Airbnb logoAsked at Airbnb 
    +2

    "During my internship at Quantiva Solutions, I was leading a small team of fellow interns on a data visualization project. I was very focused on meeting the deadline and often pushed the team to keep moving quickly through tasks. About midway through the project, one of my teammates pulled me aside and said that while they appreciated my organization, they felt I wasn’t giving enough space for others to contribute ideas and that it made the collaboration feel more task-driven than team-oriented."

    Dhruv M. - "During my internship at Quantiva Solutions, I was leading a small team of fellow interns on a data visualization project. I was very focused on meeting the deadline and often pushed the team to keep moving quickly through tasks. About midway through the project, one of my teammates pulled me aside and said that while they appreciated my organization, they felt I wasn’t giving enough space for others to contribute ideas and that it made the collaboration feel more task-driven than team-oriented."See full answer

    Product Manager
    Behavioral
    +2 more
  • Apple logoAsked at Apple 
    +2

    "To answer this, I will focus my efforts on explaining the most common type of API used in most modern software development applications - the REST API. For the purpose of simplicity, I will also keep the topics of Authorization and Authentication out of the mix. In essence, an API is a group of logic that takes in a specific set of inputs and responds with a specific set of outputs. This is analogous to going to a drive-thru and placing an order for a meal. When you give an API a bunch of"

    Pathworks P. - "To answer this, I will focus my efforts on explaining the most common type of API used in most modern software development applications - the REST API. For the purpose of simplicity, I will also keep the topics of Authorization and Authentication out of the mix. In essence, an API is a group of logic that takes in a specific set of inputs and responds with a specific set of outputs. This is analogous to going to a drive-thru and placing an order for a meal. When you give an API a bunch of"See full answer

    Software Engineer
    System Design
    +3 more
Showing 561-580 of 4411