Interview Questions

Review this list of 4,065 interview questions and answers verified by hiring managers and candidates.
  • Product Design
  • LinkedIn logoAsked at LinkedIn 
    Product Strategy
  • Twilio logoAsked at Twilio 
    Product Manager
    Behavioral
  • Google logoAsked at Google 
    Product Designer
    Technical
  • "Interesting question. I believe they now do this. Couple clarifying questions: Are we talking about the FSD feature specifically, or older legacy models as well? Is there any hardware needed in order to enable this feature, or is it purely a software update? Would people still be able to pay a set fee for FSD upfront, or is it up to me? Up to you. Goals: Let's think about Tesla's goals in this change. One could be adoption. The cost of 10k could be prohibitive for the feature up"

    Jeff H. - "Interesting question. I believe they now do this. Couple clarifying questions: Are we talking about the FSD feature specifically, or older legacy models as well? Is there any hardware needed in order to enable this feature, or is it purely a software update? Would people still be able to pay a set fee for FSD upfront, or is it up to me? Up to you. Goals: Let's think about Tesla's goals in this change. One could be adoption. The cost of 10k could be prohibitive for the feature up"See full answer

    Product Strategy
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • LendingClub logoAsked at LendingClub 

    "I am"

    Matthew P. - "I am"See full answer

    Behavioral
  • Intercom logoAsked at Intercom 

    "This is a Technical question. It tests your ability to understand high level technical concepts. Even though your job won't have any coding involved, you'll still need to understand these concepts. Being able to cover all these topics with clarity communicates confidence in your interviewer. Unfortunately, there's no formula for technical questions, but some general tips are: Use analogies when you can Break your solution into clear, bite-size steps Don't be afraid to use examples to b"

    Exponent - "This is a Technical question. It tests your ability to understand high level technical concepts. Even though your job won't have any coding involved, you'll still need to understand these concepts. Being able to cover all these topics with clarity communicates confidence in your interviewer. Unfortunately, there's no formula for technical questions, but some general tips are: Use analogies when you can Break your solution into clear, bite-size steps Don't be afraid to use examples to b"See full answer

    Product Manager
    Analytical
  • "Is this s shuttle service or the standard uber service? Let's assume the latter. First Uber should gather some data. Find cities similar to Bangalore in several measures that Uber already services. Al bring in cities in India that already are services by Uber, if any. With this in hand, do a multifactoral analysis to try and understand the likely demand in Bangalore. That will help the company understand how many drivers it needs to launch with, so that user expectations for service are met. Hir"

    Lee F. - "Is this s shuttle service or the standard uber service? Let's assume the latter. First Uber should gather some data. Find cities similar to Bangalore in several measures that Uber already services. Al bring in cities in India that already are services by Uber, if any. With this in hand, do a multifactoral analysis to try and understand the likely demand in Bangalore. That will help the company understand how many drivers it needs to launch with, so that user expectations for service are met. Hir"See full answer

    Product Manager
    Analytical
  • Snap logoAsked at Snap 

    "Make it easier for creators to create content by introducing easier to use tools such as : video editor, filters, audio/video mixing using different layover speeds. This would encourage new creators to jump onto the spotlight bandwagon. Make it easier for consumers of spotlight content to search relevant content that they would find entertaining and keep coming back for. Build recommendation algorithms that suggests content that users are likely to enjoy based on their view /engagement his"

    Ozark - "Make it easier for creators to create content by introducing easier to use tools such as : video editor, filters, audio/video mixing using different layover speeds. This would encourage new creators to jump onto the spotlight bandwagon. Make it easier for consumers of spotlight content to search relevant content that they would find entertaining and keep coming back for. Build recommendation algorithms that suggests content that users are likely to enjoy based on their view /engagement his"See full answer

    Product Manager
    Product Design
  • Google logoAsked at Google 
    Product Manager
    Product Design
  • Meta (Facebook) logoAsked at Meta (Facebook) 
    Product Design
  • Google logoAsked at Google 

    "Museums are multi-revenue organizations. They dont have much or any profits in the process but thats becuase they dont want to either. All the money pretty much goes to operational costs required to be a well maintained place of exhibit. Lets consider the sources they currently "make" the money from- governments(national and/or state) private donors and trustees heritage organizations with their lottery fundings self channels like admission/entry fees, tickets for exhibitions, gift s"

    Debajyoti B. - "Museums are multi-revenue organizations. They dont have much or any profits in the process but thats becuase they dont want to either. All the money pretty much goes to operational costs required to be a well maintained place of exhibit. Lets consider the sources they currently "make" the money from- governments(national and/or state) private donors and trustees heritage organizations with their lottery fundings self channels like admission/entry fees, tickets for exhibitions, gift s"See full answer

    System Design
    Product Design
  • Microsoft logoAsked at Microsoft 
    System Design
    Product Design
  • Gusto logoAsked at Gusto 
    Software Engineer
    Coding
  • GitHub logoAsked at GitHub 
    Engineering Manager
    Behavioral
  • MasterClass logoAsked at MasterClass 

    "Just to clarify, I’m picturing that we have a install progress bar that we’re showing to the user, and for the initial stage of the install, we display one ad, then we show a different ad when the user is somewhere in the middle part of the installation, then show a third ad in the final step. Also, I assume that each slot must feature a different advertiser. First I’ll set the scene on how ad campaigns work in general then describe how we’d prioritize them and what to display to the user. A t"

    Spencer W. - "Just to clarify, I’m picturing that we have a install progress bar that we’re showing to the user, and for the initial stage of the install, we display one ad, then we show a different ad when the user is somewhere in the middle part of the installation, then show a third ad in the final step. Also, I assume that each slot must feature a different advertiser. First I’ll set the scene on how ad campaigns work in general then describe how we’d prioritize them and what to display to the user. A t"See full answer

    Analytical
  • +1

    "Roles, Events, Artifacts, Roles: PO, Scrum Master, Developer Events: Sprint, Sprint Planning, Daily Standup, Review, Retrospective Artifacts: Product Backlog, Sprint Backlog, Increment"

    Chandru S. - "Roles, Events, Artifacts, Roles: PO, Scrum Master, Developer Events: Sprint, Sprint Planning, Daily Standup, Review, Retrospective Artifacts: Product Backlog, Sprint Backlog, Increment"See full answer

    Behavioral
  • Visa logoAsked at Visa 

    "Evaluate product performance metrics against projections, rationalize performance, and identify opportunities to optimize performance"

    Frank A. - "Evaluate product performance metrics against projections, rationalize performance, and identify opportunities to optimize performance"See full answer

    Product Strategy
    Analytical
    +1 more
  • Adobe logoAsked at Adobe 
    +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

    Data Engineer
    Data Structures & Algorithms
    +3 more
Showing 3081-3100 of 4065