Interview Questions

Review this list of 3,944 interview questions and answers verified by hiring managers and candidates.
  • Product Manager
    Behavioral
  • Product Manager
    Product Strategy
  • Grammarly logoAsked at Grammarly 
    Product Marketing Manager
    Product Strategy
  • Uber logoAsked at Uber 
    Machine Learning Engineer
    Concept
  • Capital One logoAsked at Capital One 
    Machine Learning Engineer
    Technical
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • LinkedIn logoAsked at LinkedIn 
    Machine Learning Engineer
    Data Structures & Algorithms
    +1 more
  • Twitter logoAsked at Twitter 

    "This is one of the core behavioral questions that you should expect to cover in any interview. In particular, it asks you to justify why you want to work at a specific company that you've applied for. There's no right answer for this, however we do recommend you list at least three distinct reasons. Here's an example of what you might say: > That's a great question. There are three main reasons why I'd want to work on Twitter's Ads team:Building an impactful product > Working on marketplaces > M"

    Exponent - "This is one of the core behavioral questions that you should expect to cover in any interview. In particular, it asks you to justify why you want to work at a specific company that you've applied for. There's no right answer for this, however we do recommend you list at least three distinct reasons. Here's an example of what you might say: > That's a great question. There are three main reasons why I'd want to work on Twitter's Ads team:Building an impactful product > Working on marketplaces > M"See full answer

    Product Manager
    Behavioral
  • "When launching a new product at Koovs, I began by conducting a thorough competitor analysis to ensure our pricing strategy was competitive. I then defined the target audience based on demographic and psychographic data. We built a comprehensive multi-channel campaign strategy that included SEO for visibility, targeted SEM ads, and engaging social media content. I used tools like Google Analytics to monitor campaign performance and adjusted our tactics based on the data. For instance, we increase"

    Basant P. - "When launching a new product at Koovs, I began by conducting a thorough competitor analysis to ensure our pricing strategy was competitive. I then defined the target audience based on demographic and psychographic data. We built a comprehensive multi-channel campaign strategy that included SEO for visibility, targeted SEM ads, and engaging social media content. I used tools like Google Analytics to monitor campaign performance and adjusted our tactics based on the data. For instance, we increase"See full answer

    Marketing Manager
    Product Strategy
  • Meta (Facebook) logoAsked at Meta (Facebook) 

    "This is a Strategy Question, which asks you to justify high-level business decisions and strategy. There's no set formula, but we recommend proposing at least three different reasons to answer the question. Let's go over one possible solution: > To me, it would have to be Instagram. I'll provide three reasons why:Trends towards photos: Before the Instagram acquisition, many people were trending towards using photos as conversation topics rather than text posts. This was present not only on F"

    Exponent - "This is a Strategy Question, which asks you to justify high-level business decisions and strategy. There's no set formula, but we recommend proposing at least three different reasons to answer the question. Let's go over one possible solution: > To me, it would have to be Instagram. I'll provide three reasons why:Trends towards photos: Before the Instagram acquisition, many people were trending towards using photos as conversation topics rather than text posts. This was present not only on F"See full answer

    Product Manager
    Product Strategy
  • Motorola logoAsked at Motorola 

    "questions: definition of Corporate employees - people who are working for one particular comapny in same location ride sharing app - what is this app for ? I am assuming this is for employees to share Vehicle to commute to and from office - is that correct ? desktop or mobile app ? ios or android ? Timeline ? Resource constraints ? US only or global ? language - English or any other needs to be covered ? Do you want to develop this app to remove friction in employees commute ? and offer flexibil"

    Kalaivani S. - "questions: definition of Corporate employees - people who are working for one particular comapny in same location ride sharing app - what is this app for ? I am assuming this is for employees to share Vehicle to commute to and from office - is that correct ? desktop or mobile app ? ios or android ? Timeline ? Resource constraints ? US only or global ? language - English or any other needs to be covered ? Do you want to develop this app to remove friction in employees commute ? and offer flexibil"See full answer

    Product Design
  • Product Manager
    Execution
    +1 more
  • LinkedIn logoAsked at LinkedIn 

    "This is another Diagnosis problem. To answer this question, we suggest you use our framework (along with the TROPIC method) to be as thorough as possible. The framework is as follows: Ask clarifying questions List potential high level reasons Gather Context (TROPIC)Time Region Other features / products (internal) Platform Industry / Competition Cannibalization Establish a theory of probable cause Test theories Propose solutions Summarize "

    Exponent - "This is another Diagnosis problem. To answer this question, we suggest you use our framework (along with the TROPIC method) to be as thorough as possible. The framework is as follows: Ask clarifying questions List potential high level reasons Gather Context (TROPIC)Time Region Other features / products (internal) Platform Industry / Competition Cannibalization Establish a theory of probable cause Test theories Propose solutions Summarize "See full answer

    Product Manager
  • LinkedIn logoAsked at LinkedIn 

    "Web server request HTTPS://WWW.GOOGLE.COM (HTTPS)Protocol -> HTTPS/HTTP (HTTPS more secured, encrypted data send by browser) WWW. that is just a term (GOOGLE.COM)DNS -> Every website that is hosted on the internet resides in some data server having an IP address. Due to the complexity of the IP address, ISP mapped the IP address to some readable or English term that is called DNS. Browser does DNS lookup. The FIrst bRowser sees the DNS mapping in the browser cache, if not found then it looks"

    Anonymous Muskox - "Web server request HTTPS://WWW.GOOGLE.COM (HTTPS)Protocol -> HTTPS/HTTP (HTTPS more secured, encrypted data send by browser) WWW. that is just a term (GOOGLE.COM)DNS -> Every website that is hosted on the internet resides in some data server having an IP address. Due to the complexity of the IP address, ISP mapped the IP address to some readable or English term that is called DNS. Browser does DNS lookup. The FIrst bRowser sees the DNS mapping in the browser cache, if not found then it looks"See full answer

    Technical
  • Microsoft logoAsked at Microsoft 
    Product Manager
    Product Strategy
  • Peloton logoAsked at Peloton 

    "discover what feature solves the biggest human pain point and has the lowest LOE for the highest ROI. Start there and then build a low-fi prototype to test that theory and gain user insights to drive any additional solutions discovery work, ensuring that you are building the right product at the right time, for the right audience."

    Dawn H. - "discover what feature solves the biggest human pain point and has the lowest LOE for the highest ROI. Start there and then build a low-fi prototype to test that theory and gain user insights to drive any additional solutions discovery work, ensuring that you are building the right product at the right time, for the right audience."See full answer

    Product Design
    Product Strategy
  • LinkedIn logoAsked at LinkedIn 

    "function constructTree(n, matrix) { let parent = []; let child = []; let root = null; for (let i = 0; i < n; i++) { for (let j = 0; j < n; j++) { if (matrixi === 1) { parent.push(i); child.push(j); } } } for (let i = 0; i < n; i++) { if (parent.indexOf(i) === -1) { root = i; } } let node = new Node(root); for (let i = 0; i < n; i++) { if (i !== root) { constructTreeUtil(node, parent[i], child[i]); } } return node; }"

    Ugo C. - "function constructTree(n, matrix) { let parent = []; let child = []; let root = null; for (let i = 0; i < n; i++) { for (let j = 0; j < n; j++) { if (matrixi === 1) { parent.push(i); child.push(j); } } } for (let i = 0; i < n; i++) { if (parent.indexOf(i) === -1) { root = i; } } let node = new Node(root); for (let i = 0; i < n; i++) { if (i !== root) { constructTreeUtil(node, parent[i], child[i]); } } return node; }"See full answer

    Coding
    Data Structures & Algorithms
    +1 more
  • Amazon logoAsked at Amazon 

    "This is another Fermi problem — an estimation or approximation problem with limited information and back-of-the-envelope calculations. There's no right answer: interviewers want to understand how you think and how well you can explain your reasoning, rather than what you already know. Recall the formula for Fermi problems: Ask clarifying questions Catalog what you know Make equation(s) Think about edge cases to add to equation **Breakdown components of your"

    Exponent - "This is another Fermi problem — an estimation or approximation problem with limited information and back-of-the-envelope calculations. There's no right answer: interviewers want to understand how you think and how well you can explain your reasoning, rather than what you already know. Recall the formula for Fermi problems: Ask clarifying questions Catalog what you know Make equation(s) Think about edge cases to add to equation **Breakdown components of your"See full answer

    Product Manager
    Estimation
Showing 3541-3560 of 3944