Interview Questions

Review this list of 4,138 interview questions and answers verified by hiring managers and candidates.
  • "If I had to deliver a product or feature in half (or less) of the initial timeline, here's what I would do: Prioritize the features: I would prioritize the features that are essential for the product's functionality and customer value. I would focus on the must-have features and put the nice-to-have features on hold. Reassess the resources: I would reassess the resources available and determine if additional resources are required to meet the new timeline. I would explore options such as h"

    Anonymous Panda - "If I had to deliver a product or feature in half (or less) of the initial timeline, here's what I would do: Prioritize the features: I would prioritize the features that are essential for the product's functionality and customer value. I would focus on the must-have features and put the nice-to-have features on hold. Reassess the resources: I would reassess the resources available and determine if additional resources are required to meet the new timeline. I would explore options such as h"See full answer

    Product Manager
    Behavioral
  • Product Manager
    Behavioral
  • "Methodology: Clarify some of the terms in our question List high level causes based on the category and gather context information, rule out the ones that have low probability or out of scope Drill down the causes and establish a few hypotyhesis Investigate and test the hypothesis I have and try to fix the problem Clarify questions: Define FB logins: through 3rd party Apps, Assuming our data is accurate, double check with 3rd party Apps that our understanding is correct/ or cr"

    Pm E. - "Methodology: Clarify some of the terms in our question List high level causes based on the category and gather context information, rule out the ones that have low probability or out of scope Drill down the causes and establish a few hypotyhesis Investigate and test the hypothesis I have and try to fix the problem Clarify questions: Define FB logins: through 3rd party Apps, Assuming our data is accurate, double check with 3rd party Apps that our understanding is correct/ or cr"See full answer

    Execution
    Analytical
  • ""Good investor" depends on what our business objective is, identifying success metrics for it and then dividing customers into segments by these success metrics. Business objective: We want our customers to retain on the product longer, engage regularly so that we meet our revenue goals as a company. Do you agree? I'm assuming we want to define an "investor" and not a "trader" because their behaviors are very different. I'm defining investor as someone who buys securities and holds it anywhere"

    M N. - ""Good investor" depends on what our business objective is, identifying success metrics for it and then dividing customers into segments by these success metrics. Business objective: We want our customers to retain on the product longer, engage regularly so that we meet our revenue goals as a company. Do you agree? I'm assuming we want to define an "investor" and not a "trader" because their behaviors are very different. I'm defining investor as someone who buys securities and holds it anywhere"See full answer

    Analytical
  • Amazon logoAsked at Amazon 

    "Law is my passion. Traveling all over the world in 5 years"

    Moshe S. - "Law is my passion. Traveling all over the world in 5 years"See full answer

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

  • Product Manager
    Behavioral
    +1 more
  • Google logoAsked at Google 

    "Improve facebook’s feed. Clarifying questions: Do we want to look at desktop or mobile specifically? – Mobile Is there a specific goal we have in mind that we are trying to meet or just general improvements? — General improvements, innovation Clarify Product: The Facebook newsfeed is the content feed that users see when landing on the app. The feed shows content posted by people users follow Within the feed the user is offered updates on people they follow - friends, family, celebrities"

    Kiley S. - "Improve facebook’s feed. Clarifying questions: Do we want to look at desktop or mobile specifically? – Mobile Is there a specific goal we have in mind that we are trying to meet or just general improvements? — General improvements, innovation Clarify Product: The Facebook newsfeed is the content feed that users see when landing on the app. The feed shows content posted by people users follow Within the feed the user is offered updates on people they follow - friends, family, celebrities"See full answer

    Product Manager
    Product Design
  • Google logoAsked at Google 

    "Goal Clarification Let’s start by clarifying the goals on the in-flight entertainment system. My assumption is that the goal to enhance/improve the in-flight customer experience and increase passenger loyalty rather than generating additional revenue. User Segments We can broadly segment the customers into casual traveler frequent traveler frequent business frequent leisure travelers Given that frequent business traveler account for the highest airline revenue"

    Kunal S. - "Goal Clarification Let’s start by clarifying the goals on the in-flight entertainment system. My assumption is that the goal to enhance/improve the in-flight customer experience and increase passenger loyalty rather than generating additional revenue. User Segments We can broadly segment the customers into casual traveler frequent traveler frequent business frequent leisure travelers Given that frequent business traveler account for the highest airline revenue"See full answer

    Product Design
  • Machine Learning Engineer
    System Design
  • PayPal logoAsked at PayPal 

    "PayPal makes money from: Processing fees from merchants - traditional checkout and buy now, pay later P2P transfers using credit cards Instant money transfers on P2P and to bank accounts Lending products (paypal credit) Cross border fees (Xoom) Crypto trading fees"

    Greg W. - "PayPal makes money from: Processing fees from merchants - traditional checkout and buy now, pay later P2P transfers using credit cards Instant money transfers on P2P and to bank accounts Lending products (paypal credit) Cross border fees (Xoom) Crypto trading fees"See full answer

    Product Strategy
  • Product Manager
    Product Design
  • Adobe logoAsked at Adobe 

    "I would start with the company vision then assuming we have more than one product team, craft the vision for the product through a collaboration of PMs and Tech leads, then based on that I will define the scope of each product team's milestones to achieve the product vision and go from both ends to fill the gap from what we already have and what needed to achieve the milestones."

    Seyed rasoul J. - "I would start with the company vision then assuming we have more than one product team, craft the vision for the product through a collaboration of PMs and Tech leads, then based on that I will define the scope of each product team's milestones to achieve the product vision and go from both ends to fill the gap from what we already have and what needed to achieve the milestones."See full answer

    Product Manager
    Behavioral
    +1 more
  • Expedia logoAsked at Expedia 
    Technical Program Manager
    Behavioral
  • "In one of the projects I managed, one team member was slipping each of his task's ETAs several times, citing different reasons, and communicating the delay after it already happened. The delay seemed disproportional to the reasons thereof. I first collected sufficient historical data to confirm that this was a pattern, and similar circumstances were faced by other team members, but they were managing to still keep their ETAs. Then I had a talk with the person, and showed him the data. I also ex"

    Surekha G. - "In one of the projects I managed, one team member was slipping each of his task's ETAs several times, citing different reasons, and communicating the delay after it already happened. The delay seemed disproportional to the reasons thereof. I first collected sufficient historical data to confirm that this was a pattern, and similar circumstances were faced by other team members, but they were managing to still keep their ETAs. Then I had a talk with the person, and showed him the data. I also ex"See full answer

    Behavioral
  • "with login_data as ( select * from useractivitylog where activity_type = 'LOGIN' ) ,cte as ( select userid, timestamp as currentlogin ,lag(timestamp,1,timestamp) over (partition by user_id order by timestamp asc) as previous_login, round((julianday(timestamp) - julianday(lag(timestamp,1,timestamp) over (partition by user_id order by timestamp asc))) * 24 * 60) as minutes_elapsed from login_data ) select * from cte where currentlogin  previouslogin;"

    Kedar W. - "with login_data as ( select * from useractivitylog where activity_type = 'LOGIN' ) ,cte as ( select userid, timestamp as currentlogin ,lag(timestamp,1,timestamp) over (partition by user_id order by timestamp asc) as previous_login, round((julianday(timestamp) - julianday(lag(timestamp,1,timestamp) over (partition by user_id order by timestamp asc))) * 24 * 60) as minutes_elapsed from login_data ) select * from cte where currentlogin  previouslogin;"See full answer

    Coding
    SQL
  • Zillow logoAsked at Zillow 

    "Clarifying questions Is there a specific airline we are focusing on here? Assume any US passenger airline (Delta, United, Spirit etc.) Why is this company interested in improving the boarding experience? To increase customer satisfaction Can you define what we mean by 'boarding experience'? The time between the passenger arriving at the gate and sitting down in their assigned seat on the plane. Are there any constraints (resources or otherwise) that I should"

    William W. - "Clarifying questions Is there a specific airline we are focusing on here? Assume any US passenger airline (Delta, United, Spirit etc.) Why is this company interested in improving the boarding experience? To increase customer satisfaction Can you define what we mean by 'boarding experience'? The time between the passenger arriving at the gate and sitting down in their assigned seat on the plane. Are there any constraints (resources or otherwise) that I should"See full answer

    Product Design
    Program Sense
  • Microsoft logoAsked at Microsoft 

    "Clarifying questions: Are we trying to determine impact of changing timeline on Project? Assuming Project scenario. I need to take a 360 degree view and hence I would list down all the stakeholders and work with them to understand impact of changing timeline: Internal Stakeholders Business: Does this change impact the revenue/profitability Engineering: Do we foresee any technological risks due to change in timeline Sales: Does this impact our sales forecast Marketing:"

    Saket S. - "Clarifying questions: Are we trying to determine impact of changing timeline on Project? Assuming Project scenario. I need to take a 360 degree view and hence I would list down all the stakeholders and work with them to understand impact of changing timeline: Internal Stakeholders Business: Does this change impact the revenue/profitability Engineering: Do we foresee any technological risks due to change in timeline Sales: Does this impact our sales forecast Marketing:"See full answer

    Program Sense
    Behavioral
  • Intuit logoAsked at Intuit 
    Product Manager
    Product Strategy
  • Meta (Facebook) logoAsked at Meta (Facebook) 

    "We've identified the problem as a Design a Product question. Use the following framework for tackling these types of questions: Ask Clarifying Questions Identify users, behaviors, and pain points State product goal Identify current solutions Brainstorm new solutions Evaluate solutions Measure success Summarize We'll go through each of these step by step. Ask Clarifying Questions The PM interview isn't about your ability to come up w"

    Exponent - "We've identified the problem as a Design a Product question. Use the following framework for tackling these types of questions: Ask Clarifying Questions Identify users, behaviors, and pain points State product goal Identify current solutions Brainstorm new solutions Evaluate solutions Measure success Summarize We'll go through each of these step by step. Ask Clarifying Questions The PM interview isn't about your ability to come up w"See full answer

    Product Manager
    Product Design
    +1 more
Showing 1981-2000 of 4138