Skip to main content

Interview Questions

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

    "Clarify the ask/ goal and scope Talk about the general need for travel in a Covid/post covid world + how it aligns with Meta's mission and business (the Why) Audience /Behavior segmentation with needs/pain points Prioritize Suggested 3 Solution territories Dived deep into 1 and mentioned tradeoffs/ risks for that one Summarized with a few GTM considerations/ideas Please note: Although the interview was scoped for 30 mins, the interviewer spent the first 15 diving into past work e"

    Raina M. - "Clarify the ask/ goal and scope Talk about the general need for travel in a Covid/post covid world + how it aligns with Meta's mission and business (the Why) Audience /Behavior segmentation with needs/pain points Prioritize Suggested 3 Solution territories Dived deep into 1 and mentioned tradeoffs/ risks for that one Summarized with a few GTM considerations/ideas Please note: Although the interview was scoped for 30 mins, the interviewer spent the first 15 diving into past work e"See full answer

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

    "The primary objective of Instagram Stories is to share fleeting moments and engage with followers in a more casual way, through photos and videos that disappear after 24 hours. Its also used to showcase all ongoing Instagram Live events. There are 4 user segments Story Viewers Story Creators (who posted the story) Live event creators Live event viewers No of stories posted per user per day -> How to nudge users to post more stories and tag their friends/location. No of stories view"

    Kiran M. - "The primary objective of Instagram Stories is to share fleeting moments and engage with followers in a more casual way, through photos and videos that disappear after 24 hours. Its also used to showcase all ongoing Instagram Live events. There are 4 user segments Story Viewers Story Creators (who posted the story) Live event creators Live event viewers No of stories posted per user per day -> How to nudge users to post more stories and tag their friends/location. No of stories view"See full answer

    Product Manager
    Analytical
    +1 more
  • Google logoAsked at Google 
    1 answer

    "After clarifying the question, answered in following way: Defined what is Google Map. Discussed its history and dominant #1 current market position Aligned with the Google's mission Listed few users segments and few features for roadmap and discussed technology advancements & need to continue to innovate and differentiate aggressively"

    Anonymous Tapir - "After clarifying the question, answered in following way: Defined what is Google Map. Discussed its history and dominant #1 current market position Aligned with the Google's mission Listed few users segments and few features for roadmap and discussed technology advancements & need to continue to innovate and differentiate aggressively"See full answer

    Product Manager
    Product Strategy
  • Perplexity AI logoAsked at Perplexity AI 
    Add answer
    Software Engineer
    Concept
    +1 more
  • Add answer
    Video answer for 'Design a Data Warehouse Schema for Airbnb'
    Data Engineer
    Data Modeling
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Add answer
    Video answer for 'Design Reddit's homepage.'
    Product Design
    System Design
  • Shopify logoAsked at Shopify 
    Add answer
    Product Manager
    Behavioral
    +2 more
  • Dropbox logoAsked at Dropbox 
    3 answers

    "Project Schedule is a living document which is prepared based on inputs from the entire team including product, engineering, finance, sales, marketing, legal etc. It is owned by Project/Program Manager but it reflects progress of the whole team. Inputs required for the development of schedule includes project charter, list of stakeholders, project scope, WBS, freeze calendar, vendor SOWs etc. I will use the following approach for schedule development: Copy Milestone level plan from Project"

    Saket S. - "Project Schedule is a living document which is prepared based on inputs from the entire team including product, engineering, finance, sales, marketing, legal etc. It is owned by Project/Program Manager but it reflects progress of the whole team. Inputs required for the development of schedule includes project charter, list of stakeholders, project scope, WBS, freeze calendar, vendor SOWs etc. I will use the following approach for schedule development: Copy Milestone level plan from Project"See full answer

    Software Engineer
    Program Sense
  • 14 answers
    +11

    "Good Question, but I would've marked this as medium not hard difficulty, since it's just a straightforward traversal."

    Ahmed A. - "Good Question, but I would've marked this as medium not hard difficulty, since it's just a straightforward traversal."See full answer

    Data Structures & Algorithms
    Coding
  • Amazon logoAsked at Amazon 
    1 answer

    "It was a Finetech product to help people remove credit card limited balance issue. The product is design especially for business man who usually use they credit card to make purchase or big transaction. Problem Credit card have a limit amont of money they can support. it is very difficult to handle situation where people want to make a transaction that goes beyond their supported credit card balance. Having many credit card is not easy to manage and go to trip with a huge amont of money i"

    Adegnika O. - "It was a Finetech product to help people remove credit card limited balance issue. The product is design especially for business man who usually use they credit card to make purchase or big transaction. Problem Credit card have a limit amont of money they can support. it is very difficult to handle situation where people want to make a transaction that goes beyond their supported credit card balance. Having many credit card is not easy to manage and go to trip with a huge amont of money i"See full answer

    Product Manager
    Execution
    +1 more
  • Google logoAsked at Google 
    Add answer
    Product Designer
    Behavioral
  • Amazon logoAsked at Amazon 
    2 answers

    "no"

    Hamilton D. - "no"See full answer

    Product Manager
    Technical
    +1 more
  • Google logoAsked at Google 
    3 answers

    "This is the reason we PMs get bad name,lol! People are so busy in parroting the framework and answers that they don't even bother to read the question :D "

    Nishant K. - "This is the reason we PMs get bad name,lol! People are so busy in parroting the framework and answers that they don't even bother to read the question :D "See full answer

    Product Manager
    Product Strategy
  • Nvidia logoAsked at Nvidia 
    2 answers

    "`#include using namespace std; void printNumbersTillN(int n){ if(n_==0){ return; } printNumbersTillN(n-1); // go to the end -> reach 1 cout>_n; printNumbersTillN(n); }`"

    Jet 1. - "`#include using namespace std; void printNumbersTillN(int n){ if(n_==0){ return; } printNumbersTillN(n-1); // go to the end -> reach 1 cout>_n; printNumbersTillN(n); }`"See full answer

    Software Engineer
    Coding
  • Amazon logoAsked at Amazon 
    1 answer

    "My parents because they take really good care of me whenever I feel sick"

    Amparo L. - "My parents because they take really good care of me whenever I feel sick"See full answer

    Solutions Architect
    Behavioral
  • 13 answers
    +9

    "function getDifferentNumber(arr) { // your code goes here const n = arr.length; //Define Max Integer const MAX_INT = Math.pow(2, 31) - 1; //Coppy arr to arr1 then sort arr1. const arr1 = arr; arr1.sort(function(a,b) {return a -b}); // Put arr1 in Set to optimize lo const uniqueSet = new Set(arr1); console.log(uniqueSet); // Check for the smallest nonnegative integer not in the array for (let i = 0; i < n; i++) { if (!uniqueSet.has(i)) { return i; } } if(n<MAX_INT) return n+1; else return -1; }"

    Anonymous Hare - "function getDifferentNumber(arr) { // your code goes here const n = arr.length; //Define Max Integer const MAX_INT = Math.pow(2, 31) - 1; //Coppy arr to arr1 then sort arr1. const arr1 = arr; arr1.sort(function(a,b) {return a -b}); // Put arr1 in Set to optimize lo const uniqueSet = new Set(arr1); console.log(uniqueSet); // Check for the smallest nonnegative integer not in the array for (let i = 0; i < n; i++) { if (!uniqueSet.has(i)) { return i; } } if(n<MAX_INT) return n+1; else return -1; }"See full answer

    Data Structures & Algorithms
    Coding
  • Anthropic logoAsked at Anthropic 
    Add answer
    Software Engineer
    Behavioral
  • Product Manager
    System Design
  • Meta logoAsked at Meta 
    1 answer

    "Formulate a draft format of idea, open to feedback, communicate your progress"

    Swaroop M. - "Formulate a draft format of idea, open to feedback, communicate your progress"See full answer

    Behavioral
  • 7 answers
    +4

    "SELECT i.item_category, o.order_date, SUM(o.orderquantity) AS totalunits_ordered FROM orders o JOIN items i ON o.itemid = i.itemid WHERE o.order_date >= DATE('now', '-6 days') GROUP BY i.item_category, o.order_date ORDER BY i.item_category ASC, o.order_date ASC;"

    Anonymous Tortoise - "SELECT i.item_category, o.order_date, SUM(o.orderquantity) AS totalunits_ordered FROM orders o JOIN items i ON o.itemid = i.itemid WHERE o.order_date >= DATE('now', '-6 days') GROUP BY i.item_category, o.order_date ORDER BY i.item_category ASC, o.order_date ASC;"See full answer

    Coding
    SQL
Showing 2041-2060 of 4477