Skip to main content

Interview Questions

Review this list of 4,411 interview questions and answers verified by hiring managers and candidates.
  • ElevenLabs logoAsked at ElevenLabs 
    Software Engineer
    Behavioral
  • "You should be able to identify this as a Strategy Question, which asks you to justify high-level business decisions and strategy. Be concise and to the point. > The underlying theme I can see in these services is that they all encourage people to start online businesses. This helps Stripe since their main product is the ability to handle online transactions. Stripe takes a percentage fee from each transaction, so it's in their best interest to encourage the growth of internet-enabled busines"

    Exponent - "You should be able to identify this as a Strategy Question, which asks you to justify high-level business decisions and strategy. Be concise and to the point. > The underlying theme I can see in these services is that they all encourage people to start online businesses. This helps Stripe since their main product is the ability to handle online transactions. Stripe takes a percentage fee from each transaction, so it's in their best interest to encourage the growth of internet-enabled busines"See full answer

    Product Manager
  • Google logoAsked at Google 

    "Clarify: Physical car garage or some app? 1 garage or a chain? Where is it located? (if highway then user seg to be focussed would change) (rn consider a residential area) Objective/ constraints? - majorly revenue i.e. #users * rev/user (acquire more users) Is there some issue and we are trying to address that via features or we just need features to improve the overall user experience? basic idea of garage: Car issue - drop it to garage/ sometimes pickup service - repair time -"

    Rev - "Clarify: Physical car garage or some app? 1 garage or a chain? Where is it located? (if highway then user seg to be focussed would change) (rn consider a residential area) Objective/ constraints? - majorly revenue i.e. #users * rev/user (acquire more users) Is there some issue and we are trying to address that via features or we just need features to improve the overall user experience? basic idea of garage: Car issue - drop it to garage/ sometimes pickup service - repair time -"See full answer

    Product Manager
    Product Design
  • Technical Program Manager
    Behavioral
  • Robinhood logoAsked at Robinhood 

    "Assuming that trades will have information like trade_type buy or sell trade_price with these tuples, one can iterate over each trade while maintaining a stack which maintains all the open buy trades. If we encounter a sell trade then we pop one element make it a buy/sell pair and calculate the profit/loss for that pair. Moreover, keep adding pair-wise profit/loss to calculate overall profit as we continue iterating over trades. At the end print pairs and their profit/loss along with"

    Parth S. - "Assuming that trades will have information like trade_type buy or sell trade_price with these tuples, one can iterate over each trade while maintaining a stack which maintains all the open buy trades. If we encounter a sell trade then we pop one element make it a buy/sell pair and calculate the profit/loss for that pair. Moreover, keep adding pair-wise profit/loss to calculate overall profit as we continue iterating over trades. At the end print pairs and their profit/loss along with"See full answer

    Data Structures & Algorithms
    Coding
    +1 more
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Meta logoAsked at Meta 

    "What goals would you set for Reels recommendation engine? Clarification: Is this Reels on Instagram, FB? Which ones do you mean? -Instagram What does this feature cover- Reels recommendation engine- showcases a new video to the user when tapped User can Like, comment , add reel to the story, remix this reel, save, report, not interested Why is this done? Competition from Tiktok : Make Reels appealing to Meta userbase so that Meta doesn't lose users, creators, brands to TikTok Mission "

    UoP - "What goals would you set for Reels recommendation engine? Clarification: Is this Reels on Instagram, FB? Which ones do you mean? -Instagram What does this feature cover- Reels recommendation engine- showcases a new video to the user when tapped User can Like, comment , add reel to the story, remix this reel, save, report, not interested Why is this done? Competition from Tiktok : Make Reels appealing to Meta userbase so that Meta doesn't lose users, creators, brands to TikTok Mission "See full answer

    Product Manager
    Analytical
    +2 more
  • Asana logoAsked at Asana 
    +1

    "Continuous learning is a core value of mine; I want to positively impact others starting from the people around me. That means, supporting my coworkers, a team, and an organization that is committed to thoughtfully solving and resolving others pain points. As long as design is able to open these opportunities for me, I plan to continue walking this path with the end goal of seeing how this attitude can blossom, influence, and compound at scale."

    BC - "Continuous learning is a core value of mine; I want to positively impact others starting from the people around me. That means, supporting my coworkers, a team, and an organization that is committed to thoughtfully solving and resolving others pain points. As long as design is able to open these opportunities for me, I plan to continue walking this path with the end goal of seeing how this attitude can blossom, influence, and compound at scale."See full answer

    Account Manager
    Behavioral
  • Yahoo logoAsked at Yahoo 

    "Open Oriented programming is a way to organize code around objects rather then functions."

    Yasir M. - "Open Oriented programming is a way to organize code around objects rather then functions."See full answer

    Software Engineer
    Concept
  • Nvidia logoAsked at Nvidia 

    "def containSubString(mainString, SubString): s1 = "hello world" # main String s2 = "hello" s3 = "world" s4 = "Nothing" answer1 = containSubString(s1, s2) answer2 = containSubString(s1, s3) answer3 = containSubString(s1, s4) print(answer1 , answer2, answer) "

    Jalpa S. - "def containSubString(mainString, SubString): s1 = "hello world" # main String s2 = "hello" s3 = "world" s4 = "Nothing" answer1 = containSubString(s1, s2) answer2 = containSubString(s1, s3) answer3 = containSubString(s1, s4) print(answer1 , answer2, answer) "See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
  • Google logoAsked at Google 

    "User groups - Elderly People People with physical disabilities Blind people Hikers The cane required for each group is different. Elderly and People with physical disabilities are using it for support, and hence their cane has to be more stable and static. The cane for blind people is very lightweight because they use it to find any hurdle on their way The cane for hikers is mostly for support but lightweight because they cannot carry heavyweights cane while hiking. Thinking about the blind"

    Priya J. - "User groups - Elderly People People with physical disabilities Blind people Hikers The cane required for each group is different. Elderly and People with physical disabilities are using it for support, and hence their cane has to be more stable and static. The cane for blind people is very lightweight because they use it to find any hurdle on their way The cane for hikers is mostly for support but lightweight because they cannot carry heavyweights cane while hiking. Thinking about the blind"See full answer

    Product Manager
    Product Design
  • +4

    "SELECT e1.empid AS manageremployee_id, e1.empname AS managername, COUNT(e2.empid) AS numberofdirectreports FROM employees AS e1 INNER JOIN employees AS e2 ON e2.managerid = e1.empid GROUP BY e1.emp_id HAVING COUNT(e2.emp_id) >= 2 ORDER BY numberofdirectreports DESC, managername ASC `"

    Alvin P. - "SELECT e1.empid AS manageremployee_id, e1.empname AS managername, COUNT(e2.empid) AS numberofdirectreports FROM employees AS e1 INNER JOIN employees AS e2 ON e2.managerid = e1.empid GROUP BY e1.emp_id HAVING COUNT(e2.emp_id) >= 2 ORDER BY numberofdirectreports DESC, managername ASC `"See full answer

    Coding
    SQL
  • DoorDash logoAsked at DoorDash 

    "I like Spotify, because Spotify has a social element and an element of community that other music apps do not. The ability to see what friends are listening to, make playlists/jams with friends, and enjoy the "wrapped" at the end of the year (which is also an incredible social sharing tactic), is what sets it apart from other apps."

    Madeline S. - "I like Spotify, because Spotify has a social element and an element of community that other music apps do not. The ability to see what friends are listening to, make playlists/jams with friends, and enjoy the "wrapped" at the end of the year (which is also an incredible social sharing tactic), is what sets it apart from other apps."See full answer

    Product Manager
    Behavioral
  • Amazon logoAsked at Amazon 

    "DevOps Engineer Interview Questions for 3+ yrs experience candidate"

    Vishwanath K. - "DevOps Engineer Interview Questions for 3+ yrs experience candidate"See full answer

    Machine Learning Engineer
    Concept
  • Reddit logoAsked at Reddit 
    Product Manager
    Behavioral
  • Google logoAsked at Google 
    +1

    "I recall a frustrating experience I had with a traditional, non-digital alarm clock. As a Product Manager, I'm always thinking about how products can be improved, and this experience stuck with me. It was a few years ago, and I was traveling for work. I had an early flight to catch, and I relied on the alarm clock in my hotel room to wake me up on time. However, the clock was an old, analog model with tiny buttons and a confusing interface. I struggled to set the alarm, and even when I thought I"

    Shashank S. - "I recall a frustrating experience I had with a traditional, non-digital alarm clock. As a Product Manager, I'm always thinking about how products can be improved, and this experience stuck with me. It was a few years ago, and I was traveling for work. I had an early flight to catch, and I relied on the alarm clock in my hotel room to wake me up on time. However, the clock was an old, analog model with tiny buttons and a confusing interface. I struggled to set the alarm, and even when I thought I"See full answer

    Product Manager
    Product Design
  • "What do AVs need? Search for a destination Best route to the destination Real time update on traffic on the way Location information for other cars, bikes, pedestrians Lanes Road signs Road conditions Weather conditions Parking information for destination What does Google Maps already have? Search for destination Navigation to a destination Shortest distance Filters like Tolls, Highways, Ferries Traffic updates Incident reports like constructi"

    B P. - "What do AVs need? Search for a destination Best route to the destination Real time update on traffic on the way Location information for other cars, bikes, pedestrians Lanes Road signs Road conditions Weather conditions Parking information for destination What does Google Maps already have? Search for destination Navigation to a destination Shortest distance Filters like Tolls, Highways, Ferries Traffic updates Incident reports like constructi"See full answer

    Product Design
  • Meta logoAsked at Meta 

    "First, I'd like to ask a few clarifying questions: Do you have any specific user segment in mind or i can choose? A: you can choose Should we think about mobile rather than website? A: you can choose, choose mobile because of growth in usage across the glob Do you have any specific objectives in mind or i can choose? A: you can choose Is this app stand alone or part of broader Facebook ecosystem ? Part of Facebook Facebook mission is to give people power to build community and bring"

    Ak - "First, I'd like to ask a few clarifying questions: Do you have any specific user segment in mind or i can choose? A: you can choose Should we think about mobile rather than website? A: you can choose, choose mobile because of growth in usage across the glob Do you have any specific objectives in mind or i can choose? A: you can choose Is this app stand alone or part of broader Facebook ecosystem ? Part of Facebook Facebook mission is to give people power to build community and bring"See full answer

    Product Design
    System Design
  • Product Manager
    Product Design
    +1 more
  • "Submitted before deadline and described the creativity behind the new website"

    Promise S. - "Submitted before deadline and described the creativity behind the new website"See full answer

    Frontend Engineer
    Product Design
    +1 more
  • Product Manager
    Product Strategy
Showing 2501-2520 of 4411