Skip to main content

Interview Questions

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

    "Clarifying Questions: Why does Meta want to build this product ? {Aligns with Meta's mission of connecting people} What's the goal ? Does Meta want to monetise this initiative in any way? {It wants to increase the total number of users using this platform and then in the mid-term increase engagement} User Groups: Young (20-40), tech-savvy working professional; seeking doctor consultation for self, friends and family members (First) Older mass (50+), seeking frequent and accessible doct"

    Anonymous Moose - "Clarifying Questions: Why does Meta want to build this product ? {Aligns with Meta's mission of connecting people} What's the goal ? Does Meta want to monetise this initiative in any way? {It wants to increase the total number of users using this platform and then in the mid-term increase engagement} User Groups: Young (20-40), tech-savvy working professional; seeking doctor consultation for self, friends and family members (First) Older mass (50+), seeking frequent and accessible doct"See full answer

    Product Manager
    Product Design
  • Walmart Labs logoAsked at Walmart Labs 
    2 answers

    "I contradict the choice of DB for storing App Data in this case, I believe a NoSQL would have been a better choice. Could you please clarify why you chose RDBMS/SQL?"

    Jeet B. - "I contradict the choice of DB for storing App Data in this case, I believe a NoSQL would have been a better choice. Could you please clarify why you chose RDBMS/SQL?"See full answer

    Technical Program Manager
    System Design
    +1 more
  • 11 answers
    +8

    "select customer_id, order_date, orderid as earliestorder_id from ( select customer_id, order_date, order_id, rownumber() over (partition by customerid, orderdate order by orderdate) as orderrankper_customer from orders ) sub_table where orderrankper_customer=1 order by orderdate, customerid; Standard solution assumed that the orderid indicates which order comes in first. However this is not always the case, and sometime orderid can be random number withou"

    Jessica C. - "select customer_id, order_date, orderid as earliestorder_id from ( select customer_id, order_date, order_id, rownumber() over (partition by customerid, orderdate order by orderdate) as orderrankper_customer from orders ) sub_table where orderrankper_customer=1 order by orderdate, customerid; Standard solution assumed that the orderid indicates which order comes in first. However this is not always the case, and sometime orderid can be random number withou"See full answer

    Coding
    SQL
  • GitHub logoAsked at GitHub 
    2 answers

    "depends on. weather they want to persue any goal which is aligned with current scnerio"

    Graig - "depends on. weather they want to persue any goal which is aligned with current scnerio"See full answer

    Engineering Manager
    Behavioral
    +1 more
  • Netflix logoAsked at Netflix 
    2 answers

    "I defaulted to a dictionary-style definition of autonomy, then loosely tied it to users and systems. But I missed the interviewer’s signal that this was really a design/strategy probe. Stopping at a generic level made it sound like I couldn’t translate agency into what matters for product — user trust, trade-offs, risk, and roadmap implications."

    Tracy M. - "I defaulted to a dictionary-style definition of autonomy, then loosely tied it to users and systems. But I missed the interviewer’s signal that this was really a design/strategy probe. Stopping at a generic level made it sound like I couldn’t translate agency into what matters for product — user trust, trade-offs, risk, and roadmap implications."See full answer

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

  • Adobe logoAsked at Adobe 
    9 answers
    +6

    "function isPalindrome(s, start, end) { while (s[start] === s[end] && end >= start) { start++; end--; } return end <= start; } function longestPalindromicSubstring(s) { let longestPalindrome = ''; for (let i=0; i < s.length; i++) { let j = s.length-1; while (s[i] !== s[j] && i <= j) { j--; } if (s[i] === s[j]) { if (isPalindrome(s, i, j)) { const validPalindrome = s.substring(i, j+1"

    Tiago R. - "function isPalindrome(s, start, end) { while (s[start] === s[end] && end >= start) { start++; end--; } return end <= start; } function longestPalindromicSubstring(s) { let longestPalindrome = ''; for (let i=0; i < s.length; i++) { let j = s.length-1; while (s[i] !== s[j] && i <= j) { j--; } if (s[i] === s[j]) { if (isPalindrome(s, i, j)) { const validPalindrome = s.substring(i, j+1"See full answer

    Machine Learning Engineer
    Data Structures & Algorithms
    +3 more
  • Amazon logoAsked at Amazon 
    2 answers

    "API is for encoding and sdk is overall componenets"

    Muhammad qasim Z. - "API is for encoding and sdk is overall componenets"See full answer

    Product Manager
    Technical
  • LinkedIn logoAsked at LinkedIn 
    1 answer

    "They would be better off with stories, i guess."

    Ilya P. - "They would be better off with stories, i guess."See full answer

    Product Manager
    Product Strategy
  • Peloton logoAsked at Peloton 
    1 answer

    "Clarifying questions: What do we mean by 'improve'? What part of Peloton's experience are we interested in improving? We want to improve the experience of setting up Peloton equipment after a customer has received it from our transportation provider. Is there a specific piece of equipment we're targeting? Bike, treadmill? Bike Why is Peloton interested in improving this part of the experience? What is the metric we are trying to drive? We have learned that custo"

    William W. - "Clarifying questions: What do we mean by 'improve'? What part of Peloton's experience are we interested in improving? We want to improve the experience of setting up Peloton equipment after a customer has received it from our transportation provider. Is there a specific piece of equipment we're targeting? Bike, treadmill? Bike Why is Peloton interested in improving this part of the experience? What is the metric we are trying to drive? We have learned that custo"See full answer

    Product Design
  • Uber logoAsked at Uber 
    1 answer

    "public int minInsertions(String s) { int n = s.length(); int dp = new intn; for (int len = 2; len <= n; n++) { for (int i = 0; i + len - 1 < n: i++) { int j = i + len - 1; if (s.charAt(i) == s.charAt(j)) { dpi = dpi + 1; } else { dpi = 1 + Math.min(dpi + 1, dpi); } } } return dp0; } `"

    Jatin S. - "public int minInsertions(String s) { int n = s.length(); int dp = new intn; for (int len = 2; len <= n; n++) { for (int i = 0; i + len - 1 < n: i++) { int j = i + len - 1; if (s.charAt(i) == s.charAt(j)) { dpi = dpi + 1; } else { dpi = 1 + Math.min(dpi + 1, dpi); } } } return dp0; } `"See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
  • DoorDash logoAsked at DoorDash 
    2 answers

    "Binary Search on the array and after than compare the numbers at low and the high pointers whichever is closest is the answer. Because after the binary search low will be pointing to a number which is immediate greater than x and high will be pointing to a number which is immediate lesser than x. int low = 0; int high = n-1; while(low <= high){ int mid = (low + high) / 2; if(x == arr[mid]) return mid; //if x is already present then it will be the closest else if(x < arr[mid]) high"

    Shashwat K. - "Binary Search on the array and after than compare the numbers at low and the high pointers whichever is closest is the answer. Because after the binary search low will be pointing to a number which is immediate greater than x and high will be pointing to a number which is immediate lesser than x. int low = 0; int high = n-1; while(low <= high){ int mid = (low + high) / 2; if(x == arr[mid]) return mid; //if x is already present then it will be the closest else if(x < arr[mid]) high"See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
  • "To investigate the drop in user engagement on Facebook, follow these steps: Analyze Data Trends:Examine user engagement metrics (e.g., daily active users, time spent) over the last 10 days. Identify any specific user segments, regions, or platforms where the drop is more pronounced. Identify External Factors:Check for any external events (e.g., holidays, major news) that might have impacted engagement. Review competitor activity for any new features or marketing campaigns. **R"

    Alireza P. - "To investigate the drop in user engagement on Facebook, follow these steps: Analyze Data Trends:Examine user engagement metrics (e.g., daily active users, time spent) over the last 10 days. Identify any specific user segments, regions, or platforms where the drop is more pronounced. Identify External Factors:Check for any external events (e.g., holidays, major news) that might have impacted engagement. Review competitor activity for any new features or marketing campaigns. **R"See full answer

    Product Manager
    Analytical
    +1 more
  • LinkedIn logoAsked at LinkedIn 
    Add answer
    Software Engineer
    System Design
  • Google logoAsked at Google 
    2 answers

    "Feedback would much appreciated as I have not practiced many product strategy questions Clarifying questions Can we assume this is the first time Google has entered the elevator market? Or are there prior elevators to this one? Let's assume first time Is this a large elevator for industrial use like heavy goods/freight etc. or is it an elevator for apartment blocks and commercial premises? Let's assume passenger elevator Is there a geography for this launch? Let's assume the US"

    Vivan B. - "Feedback would much appreciated as I have not practiced many product strategy questions Clarifying questions Can we assume this is the first time Google has entered the elevator market? Or are there prior elevators to this one? Let's assume first time Is this a large elevator for industrial use like heavy goods/freight etc. or is it an elevator for apartment blocks and commercial premises? Let's assume passenger elevator Is there a geography for this launch? Let's assume the US"See full answer

    Product Manager
    Product Strategy
  • Google logoAsked at Google 
    2 answers

    "Google Home is an app that is used by consumers to configure the smart devices for automating their home and making their home more reliable and easy to use. Clarifying questions : Do we have any time constraints by when we need to achieve this? IF we have to increase sales by 10x, it needs to focus on number of factors like increasing the partner base, improving user experience, and shift in thinking. What metrics we focus on Monetization - Making revenue 10x Number of"

    Tanu M. - "Google Home is an app that is used by consumers to configure the smart devices for automating their home and making their home more reliable and easy to use. Clarifying questions : Do we have any time constraints by when we need to achieve this? IF we have to increase sales by 10x, it needs to focus on number of factors like increasing the partner base, improving user experience, and shift in thinking. What metrics we focus on Monetization - Making revenue 10x Number of"See full answer

    Product Manager
    Product Strategy
  • LendingClub logoAsked at LendingClub 
    2 answers

    "I am"

    Matthew P. - "I am"See full answer

    Behavioral
  • Google logoAsked at Google 
    3 answers

    "Clarifying question: By high-tech, we mean internet enabled refrigerator which uses technology and assists us in our decision making or takes decisions for us Users: Working women Homemakers Bachelors and Spinsters living alone Other family members (Elderly, Kids etc) Prioritized users: Working women, Bachelors and Spinsters living alone Problems: Food left in the refrigerator gets rotten as it goes out of notice I am at the supermarket and I dont know the inven"

    Sahil A. - "Clarifying question: By high-tech, we mean internet enabled refrigerator which uses technology and assists us in our decision making or takes decisions for us Users: Working women Homemakers Bachelors and Spinsters living alone Other family members (Elderly, Kids etc) Prioritized users: Working women, Bachelors and Spinsters living alone Problems: Food left in the refrigerator gets rotten as it goes out of notice I am at the supermarket and I dont know the inven"See full answer

    Product Manager
    Product Design
    +1 more
  • Meta logoAsked at Meta 
    1 answer

    "Provide me SAP ATTP consultant interview questions and answers"

    Kumaresh K. - "Provide me SAP ATTP consultant interview questions and answers"See full answer

    Product Manager
    Analytical
    +2 more
  • Google logoAsked at Google 
    Add answer
    Product Designer
    Behavioral
    +1 more
  • Google logoAsked at Google 
    Add answer
    Product Design
    System Design
Showing 2041-2060 of 4415