Interview Questions

Review this list of 4,065 interview questions and answers verified by hiring managers and candidates.
  • Rakuten logoAsked at Rakuten 
    Product Manager
    Behavioral
  • Google logoAsked at Google 
    Product Manager
    Execution
    +1 more
  • "Q. Why is a promotional tool required? Swiggy vision is to provide unparalleled convenience to customers. There are a number of newer restaurants launching everyday all over India and swiggy is a place not just for order but also for customer acquisition and feedback. And in India one of the most tried and tested ways to acquire is by giving discounts on all orders or special items if one wants to try newer items with customers or even cross sell. I myself have used Swiggy trynew code multiple t"

    Vishal S. - "Q. Why is a promotional tool required? Swiggy vision is to provide unparalleled convenience to customers. There are a number of newer restaurants launching everyday all over India and swiggy is a place not just for order but also for customer acquisition and feedback. And in India one of the most tried and tested ways to acquire is by giving discounts on all orders or special items if one wants to try newer items with customers or even cross sell. I myself have used Swiggy trynew code multiple t"See full answer

    Product Manager
    Product Strategy
  • "Goal of the pilot deployment: 1) Evaluate if riders would choose self driving cars (SDC) over regular driver operated cars 2) Test SDC performance/efficiency in given area before scaling operations Interviewer liked my goals and asked me to proceed , this is where I got stuck. I wasnt sure if this was an algorithmic based problem or something else and started saying about general issues SDC may have that may impact customer experience such as SDC waiting too long in traffic affecting ETA, SDC"

    Prashant R. - "Goal of the pilot deployment: 1) Evaluate if riders would choose self driving cars (SDC) over regular driver operated cars 2) Test SDC performance/efficiency in given area before scaling operations Interviewer liked my goals and asked me to proceed , this is where I got stuck. I wasnt sure if this was an algorithmic based problem or something else and started saying about general issues SDC may have that may impact customer experience such as SDC waiting too long in traffic affecting ETA, SDC"See full answer

    Product Manager
    Analytical
    +1 more
  • Discord logoAsked at Discord 
    Data Engineer
    Behavioral
    +2 more
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • +2

    "I am assuming this is for Trains from one city to another and not the local trains. Top pain points are - Information on the how much time is left to reach destination Cleanliness and safety Food and water supply"

    Navya D. - "I am assuming this is for Trains from one city to another and not the local trains. Top pain points are - Information on the how much time is left to reach destination Cleanliness and safety Food and water supply"See full answer

    Product Design
  • Product Manager
    Product Design
    +1 more
  • 23andMe logoAsked at 23andMe 

    "I described why I liked the product Defined success metrics Proposed an A/B test"

    Kitan F. - "I described why I liked the product Defined success metrics Proposed an A/B test"See full answer

    Product Manager
    Product Strategy
  • Amazon logoAsked at Amazon 

    "USING RECURSION"

    Flora K. - "USING RECURSION"See full answer

    Data Structures & Algorithms
    Coding
  • Amazon logoAsked at Amazon 

    "Firstly need to check is this service really beneficial or not. And video service provide more realistic perspective about the product so keep it"

    Priyanka C. - "Firstly need to check is this service really beneficial or not. And video service provide more realistic perspective about the product so keep it"See full answer

    Product Manager
    Product Strategy
    +1 more
  • "We should define automated Scheduled Updates for deployment to keep the application up to date."

    Rahul M. - "We should define automated Scheduled Updates for deployment to keep the application up to date."See full answer

    System Design
    Machine Learning
  • Google logoAsked at Google 
    Product Design
  • Adobe logoAsked at Adobe 

    "func isMatch(text: String, pattern: String) -> Bool { // Convert strings to arrays for easier indexing let s = Array(text.characters) let p = Array(pattern.characters) guard !s.isEmpty && !p.isEmpty else { return true } // Create DP table: dpi represents if s[0...i-1] matches p[0...j-1] var dp = Array(repeating: Array(repeating: false, count: p.count + 1), count: s.count + 1) // Empty pattern matches empty string dp[0]["

    Vince S. - "func isMatch(text: String, pattern: String) -> Bool { // Convert strings to arrays for easier indexing let s = Array(text.characters) let p = Array(pattern.characters) guard !s.isEmpty && !p.isEmpty else { return true } // Create DP table: dpi represents if s[0...i-1] matches p[0...j-1] var dp = Array(repeating: Array(repeating: false, count: p.count + 1), count: s.count + 1) // Empty pattern matches empty string dp[0]["See full answer

    Machine Learning Engineer
    Data Structures & Algorithms
    +3 more
  • Dropbox logoAsked at Dropbox 

    "Clarifying and Assumptions Is there any specific geography we need to restrict to? Assumption: Total worldwide. Is there any specific segment we need to restrict to? Assumption: All segments. Number of users Total worldwide users: 300,000,000 Storage per user Slice the users into 3 segments. Low users 80% Free tier 2 GB per user available Using the 80-20 rule for segmentation. Medium users 10% Basic paid tier 2 TB per user available Usi"

    Darpan D. - "Clarifying and Assumptions Is there any specific geography we need to restrict to? Assumption: Total worldwide. Is there any specific segment we need to restrict to? Assumption: All segments. Number of users Total worldwide users: 300,000,000 Storage per user Slice the users into 3 segments. Low users 80% Free tier 2 GB per user available Using the 80-20 rule for segmentation. Medium users 10% Basic paid tier 2 TB per user available Usi"See full answer

    Product Manager
    Estimation
  • Dropbox logoAsked at Dropbox 
    Program Sense
  • "Video is collection of images and we can call them as moving pictures. Let us break down the important components of the video in comparison to photos and explain how they impact : Frame rate per second : It is at which a total number of frames are captured in a video while it was shot and played then later Resolution : What resolution video was shot and played on devices ( Both can be different) Let us talk a bit deep dive about Frame rate per second. Often , a video co"

    Kk - "Video is collection of images and we can call them as moving pictures. Let us break down the important components of the video in comparison to photos and explain how they impact : Frame rate per second : It is at which a total number of frames are captured in a video while it was shot and played then later Resolution : What resolution video was shot and played on devices ( Both can be different) Let us talk a bit deep dive about Frame rate per second. Often , a video co"See full answer

    Technical
  • Google logoAsked at Google 

    "To determine what predictions to show, our systems look for common queries that match what someone starts to enter into the search box but also consider:"

    Abdurhman M. - "To determine what predictions to show, our systems look for common queries that match what someone starts to enter into the search box but also consider:"See full answer

    Technical
    System Design
  • "The solution produces the same result as the 'prescribed solution' yet it does not get accepted In the test results section transcript['year'] = transcript['year'].astype(str) df = pd.pivottable(data = transcript, index = 'studentid', columns = 'year', values = 'yearlygpa', aggfunc = 'mean').resetindex() df = df[(df['2021'] < df['2022']) & (df['2022'] < df['2023'])] df['average_gpa'] = df[['2021', '2022', '2023']].mean(axis=1).round(2) return df "

    Prachi G. - "The solution produces the same result as the 'prescribed solution' yet it does not get accepted In the test results section transcript['year'] = transcript['year'].astype(str) df = pd.pivottable(data = transcript, index = 'studentid', columns = 'year', values = 'yearlygpa', aggfunc = 'mean').resetindex() df = df[(df['2021'] < df['2022']) & (df['2022'] < df['2023'])] df['average_gpa'] = df[['2021', '2022', '2023']].mean(axis=1).round(2) return df "See full answer

    Coding
    Data Analysis
  • Product Manager
    Behavioral
    +1 more
Showing 2681-2700 of 4065