Skip to main content

Interview Questions

Review this list of 4,415 interview questions and answers verified by hiring managers and candidates.
  • Google logoAsked at Google 
    1 answer

    "Scope Clarification with Interviewer: Is it a standard civil 4-seater helicopter or a Military cargo carrier? Do we wish to calculate the balls in the passenger compartment only or do I consider the gas tank and other spaces in a helicopter? 3.Is the helicopter loaded with seats and passengers or do I assume that there are no seats and passengers/ pilot? Assumptions: The interviewer asked me to make assumptions. Its a standard 4-seater helicopter It is empty but has the standard seat"

    Anonymous Porcupine - "Scope Clarification with Interviewer: Is it a standard civil 4-seater helicopter or a Military cargo carrier? Do we wish to calculate the balls in the passenger compartment only or do I consider the gas tank and other spaces in a helicopter? 3.Is the helicopter loaded with seats and passengers or do I assume that there are no seats and passengers/ pilot? Assumptions: The interviewer asked me to make assumptions. Its a standard 4-seater helicopter It is empty but has the standard seat"See full answer

    Product Manager
    Estimation
  • Amazon logoAsked at Amazon 
    9 answers
    +6

    "Not at all impressed. Very simple problem he is solved"

    Anonymous Angelfish - "Not at all impressed. Very simple problem he is solved"See full answer

    Product Manager
    Behavioral
  • Google logoAsked at Google 
    3 answers

    "Google Assistant is the Voice AI which converts Natural Language to Queries/Instruction , processes it and get the results and again converts it back to Meaningful Results to the User Currently Google Assistant is Integrated in Multiple End Points. Phone Google Home Chrome Cast Google Chrome Books Some of the Use Cases Google Assistant is used is Making Phone Calls/Texting Asking General Queries/Searching for Information Integration with Devices and Turning them O"

    Akshai V. - "Google Assistant is the Voice AI which converts Natural Language to Queries/Instruction , processes it and get the results and again converts it back to Meaningful Results to the User Currently Google Assistant is Integrated in Multiple End Points. Phone Google Home Chrome Cast Google Chrome Books Some of the Use Cases Google Assistant is used is Making Phone Calls/Texting Asking General Queries/Searching for Information Integration with Devices and Turning them O"See full answer

    Product Manager
    Product Strategy
    +1 more
  • Amazon logoAsked at Amazon 
    4 answers
    +1

    "Providing some bullets to expand on to respond to this question- Inability to adapt to the changes in customer's needs in retail industry Lack of competitive analysis Rigid business model Lack of well defined Vision and Strategy"

    Rahul P. - "Providing some bullets to expand on to respond to this question- Inability to adapt to the changes in customer's needs in retail industry Lack of competitive analysis Rigid business model Lack of well defined Vision and Strategy"See full answer

    Product Strategy
  • Pinterest logoAsked at Pinterest 
    2 answers

    "clarifying questions why are we building this? is there a particular reason we are building this or is there a metric/group of metrics that shall be activated that eventually drives an organisational metric or is it just an attempt of creating another super app? am i safe to assume that i am a part of the team that can actually drive the marketplace experience? and by shopping, we mean a marketplace like an amazon? can i safely set the overarching organisational goal, then the indi"

    Arnab S. - "clarifying questions why are we building this? is there a particular reason we are building this or is there a metric/group of metrics that shall be activated that eventually drives an organisational metric or is it just an attempt of creating another super app? am i safe to assume that i am a part of the team that can actually drive the marketplace experience? and by shopping, we mean a marketplace like an amazon? can i safely set the overarching organisational goal, then the indi"See full answer

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

  • Amazon logoAsked at Amazon 
    1 answer

    "A project charter is a formal document that authorizes a project and outlines its objectives, scope, stakeholders, and key details. It serves as an agreement among stakeholders and provides a clear foundation for the project by defining what needs to be done and why. Typically, the project sponsor issues the project charter to the project manager or team, formally initiating the project. A project charter typically includes the following key elements to ensure a comprehensive and clear unde"

    Jatin S. - "A project charter is a formal document that authorizes a project and outlines its objectives, scope, stakeholders, and key details. It serves as an agreement among stakeholders and provides a clear foundation for the project by defining what needs to be done and why. Typically, the project sponsor issues the project charter to the project manager or team, formally initiating the project. A project charter typically includes the following key elements to ensure a comprehensive and clear unde"See full answer

    Technical Program Manager
    Program Sense
  • "Allow parents to view ratings of the driver Add children friendliness rating of the driver Focus on routes where we can connect Children to Parents; from child care centre to office or home to office and vice versa Make the experience more children friendly in terms of minor activities like a TV screen with cartoon (default channels as per trend), medical requirements of a child (if any) to be cleared with the driver Double confirmation Panic button for children, communication with chi"

    Meet B. - "Allow parents to view ratings of the driver Add children friendliness rating of the driver Focus on routes where we can connect Children to Parents; from child care centre to office or home to office and vice versa Make the experience more children friendly in terms of minor activities like a TV screen with cartoon (default channels as per trend), medical requirements of a child (if any) to be cleared with the driver Double confirmation Panic button for children, communication with chi"See full answer

    Product Manager
    Product Design
  • "👇 Your feedback is very much appreciated 👇 Reduce scope of product for the initial launch. Streamline the PRD to an actual MVP and use the current PRD (that takes 6 months to build) for the V1"

    Julien C. - "👇 Your feedback is very much appreciated 👇 Reduce scope of product for the initial launch. Streamline the PRD to an actual MVP and use the current PRD (that takes 6 months to build) for the V1"See full answer

    Product Manager
    Analytical
    +1 more
  • Adobe logoAsked at Adobe 
    30 answers
    +22

    "This problem could be solved in two ways(both using Kadane's algorithm): Simple iterating 1-D dp function maxSubarraySum(nums) { const n = nums.length; if ( n === 0) return 0; const dp = Array(n).fill(0); dp[0] = nums[0]; for (let i = 1; i < n; i++) { dp[i] = Math.max(nums[i], dp[i - 1] + nums[i]); } return Math.max(...dp); } "

    Mark K. - "This problem could be solved in two ways(both using Kadane's algorithm): Simple iterating 1-D dp function maxSubarraySum(nums) { const n = nums.length; if ( n === 0) return 0; const dp = Array(n).fill(0); dp[0] = nums[0]; for (let i = 1; i < n; i++) { dp[i] = Math.max(nums[i], dp[i - 1] + nums[i]); } return Math.max(...dp); } "See full answer

    Software Engineer
    Data Structures & Algorithms
    +4 more
  • Capital One logoAsked at Capital One 
    1 answer

    "The project manager must take care of the risks associated with the particular project. Scrum Master is a team facilitator and serves as a servant leader. The product manager serves as a team leader and is responsible for project performance and ensuring that everything goes according to plan."

    Jack F. - "The project manager must take care of the risks associated with the particular project. Scrum Master is a team facilitator and serves as a servant leader. The product manager serves as a team leader and is responsible for project performance and ensuring that everything goes according to plan."See full answer

    Product Manager
    Behavioral
  • Meta logoAsked at Meta 
    1 answer

    "find total sum. assign that to rightsum traverse from left to right: keep updating left sum and right sum, when they match return the index. else if you reach end return -1 or not found"

    Rahul J. - "find total sum. assign that to rightsum traverse from left to right: keep updating left sum and right sum, when they match return the index. else if you reach end return -1 or not found"See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
  • "Context: As a people manager, my biggest thing is to foster psychological safety for my team members and the way I do that: building rapport between me and my direct reports, weekly team meetings I ensure all voices are heard, have people share about themselves and encourage them to get to know one another. Team members had a good understanding of each other’s working style. One of the recent projects my team was responsible for building out the espresso test framework on android. This was"

    Shawn S. - "Context: As a people manager, my biggest thing is to foster psychological safety for my team members and the way I do that: building rapport between me and my direct reports, weekly team meetings I ensure all voices are heard, have people share about themselves and encourage them to get to know one another. Team members had a good understanding of each other’s working style. One of the recent projects my team was responsible for building out the espresso test framework on android. This was"See full answer

    Engineering Manager
    Analytical
    +2 more
  • Google logoAsked at Google 
    1 answer

    "Estimate the market size for Google Fi Market size -> total revenue/sales in a market = market share Google Fi -> telecommunication services by google. Only for US market Market size = (1)google fi customers / (2)total customers in the market (2)total customers in the market 300m ppl in the US 0-90 life expectancy Factor out 0-12,80-90 240m ~250m ppl in the US who are using phones and need a telecommunication service (1)google fi customers Version 40% - 110m AT&T 30% - 70m T-Mobil"

    Cameron P. - "Estimate the market size for Google Fi Market size -> total revenue/sales in a market = market share Google Fi -> telecommunication services by google. Only for US market Market size = (1)google fi customers / (2)total customers in the market (2)total customers in the market 300m ppl in the US 0-90 life expectancy Factor out 0-12,80-90 240m ~250m ppl in the US who are using phones and need a telecommunication service (1)google fi customers Version 40% - 110m AT&T 30% - 70m T-Mobil"See full answer

    Product Manager
    Estimation
  • Palo Alto Networks logoAsked at Palo Alto Networks 
    8 answers
    +5

    "To start I would ask a few clarifying questions regarding the product and the company: Does the mineral water have unique health benefits to the consumer? I would ask for details about the bottle packaging - unique design elements, materials used, and options available Is mineral water in the company's current product catalog? Does the company sell high-end consumer products in the market I would make certain assumptions for the sake of this question: The mineral water is natura"

    paddy19 - "To start I would ask a few clarifying questions regarding the product and the company: Does the mineral water have unique health benefits to the consumer? I would ask for details about the bottle packaging - unique design elements, materials used, and options available Is mineral water in the company's current product catalog? Does the company sell high-end consumer products in the market I would make certain assumptions for the sake of this question: The mineral water is natura"See full answer

    Product Strategy
  • Meta logoAsked at Meta 
    Add answer
    Technical Program Manager
    System Design
  • Meta logoAsked at Meta 
    3 answers

    "Assumptions and clarifying Questions 1 - This will be a feature within the existing FB App and would utilize existing features - YES 2 - What is the goal of this new feature - User acquisition & increase engagement 3 -Is this feature around playing sports or watching sports - Playing 4 - Any specific geography to target - US 5 - Both mobile and desktop platforms - YES 6 - Any specific demographic to target - You choose 7 - Any constraints around go to market - 6 months 8 - Any other"

    R K. - "Assumptions and clarifying Questions 1 - This will be a feature within the existing FB App and would utilize existing features - YES 2 - What is the goal of this new feature - User acquisition & increase engagement 3 -Is this feature around playing sports or watching sports - Playing 4 - Any specific geography to target - US 5 - Both mobile and desktop platforms - YES 6 - Any specific demographic to target - You choose 7 - Any constraints around go to market - 6 months 8 - Any other"See full answer

    Product Design
  • Adobe logoAsked at Adobe 
    13 answers
    Video answer for 'Merge k sorted linked lists.'
    +7

    "A much better solution than the one in the article, below: It looks like the ones writing articles here in Javascript do not understand the time/space complexity of javascript methods. shift, splice, sort, etc... In the solution article you have a shift and a sort being done inside a while, that is, the multiplication of Ns. My solution, below, iterates through the list once and then sorts it, separately. It´s O(N+Log(N)) class ListNode { constructor(val = 0, next = null) { th"

    Guilherme F. - "A much better solution than the one in the article, below: It looks like the ones writing articles here in Javascript do not understand the time/space complexity of javascript methods. shift, splice, sort, etc... In the solution article you have a shift and a sort being done inside a while, that is, the multiplication of Ns. My solution, below, iterates through the list once and then sorts it, separately. It´s O(N+Log(N)) class ListNode { constructor(val = 0, next = null) { th"See full answer

    Software Engineer
    Data Structures & Algorithms
    +4 more
  • +1

    "Clarifying question Why? Does booking.com have data on demand for this new feature? Let's say no Does booking.com have any specific goal with this new feature? Improve revenue or Improve user experience ( provide flexibility in payments or expand user base dealing with crypto, etc.) Let's say targetting new users who want to deal with crypto (I don't know if this is to be approached as a product design question) I would approach the introduction of cryptocurrency as a new payment method i"

    Mudit B. - "Clarifying question Why? Does booking.com have data on demand for this new feature? Let's say no Does booking.com have any specific goal with this new feature? Improve revenue or Improve user experience ( provide flexibility in payments or expand user base dealing with crypto, etc.) Let's say targetting new users who want to deal with crypto (I don't know if this is to be approached as a product design question) I would approach the introduction of cryptocurrency as a new payment method i"See full answer

    Product Manager
    Product Design
    +1 more
  • Lyft logoAsked at Lyft 
    2 answers

    "To clarify, Lyft currently uses dynamic pricing which means the price of a ride is not constant and depends on multiple factors. Let's keep only the car rides on Lyft with driver-rider as customers in the current scope and ignore other product offerings such as bikes, scooters. Should we improve the current dynamic pricing model or design dynamic pricing assuming it doesn't exist? Let's assume latter. Let's assume this dynamic pricing applies to entire US market. Now let's see what factors I"

    M N. - "To clarify, Lyft currently uses dynamic pricing which means the price of a ride is not constant and depends on multiple factors. Let's keep only the car rides on Lyft with driver-rider as customers in the current scope and ignore other product offerings such as bikes, scooters. Should we improve the current dynamic pricing model or design dynamic pricing assuming it doesn't exist? Let's assume latter. Let's assume this dynamic pricing applies to entire US market. Now let's see what factors I"See full answer

    Analytical
    Product Design
    +1 more
  • Google logoAsked at Google 
    2 answers

    "Google mission==>organize world info and make it accessible to user Monetize from Ad revenue, enterprise productivity service, Developers Google glass provides==>smart  virtual screen , hands free voice commands activated glass for for $1000+. Fits in google mission If google is to launch google glass the key metrics of success would be Number of glasses purchase Usage in term of google search, texts, play video, take picture other activities performed Previous pitfalls "

    Anonymous Koala - "Google mission==>organize world info and make it accessible to user Monetize from Ad revenue, enterprise productivity service, Developers Google glass provides==>smart  virtual screen , hands free voice commands activated glass for for $1000+. Fits in google mission If google is to launch google glass the key metrics of success would be Number of glasses purchase Usage in term of google search, texts, play video, take picture other activities performed Previous pitfalls "See full answer

    Product Strategy
Showing 1501-1520 of 4415