Skip to main content

Interview Questions

Review this list of 4,411 interview questions and answers verified by hiring managers and candidates.
  • Slack logoAsked at Slack 

    "I will ask few clarifying questions to the interviewer: Is there any specific application that we are referring to (assuming B2C website/app) What are we Trading off here (assuming Requirements/Features) I will consider following criteria to prioritize Trade offs: Impact on User experience: In terms of usability, reliability, and efficiency Usability: Ease of Use, Intuitive UI Reliability: Functions as expected and produces desired results, tolerates user mistakes and prevents unauthor"

    Saket S. - "I will ask few clarifying questions to the interviewer: Is there any specific application that we are referring to (assuming B2C website/app) What are we Trading off here (assuming Requirements/Features) I will consider following criteria to prioritize Trade offs: Impact on User experience: In terms of usability, reliability, and efficiency Usability: Ease of Use, Intuitive UI Reliability: Functions as expected and produces desired results, tolerates user mistakes and prevents unauthor"See full answer

    Behavioral
    Program Sense
  • "For me the answer looks very broad and general. It would be good the reply is relevant and focus good examples using STAR format. Please let me know your views."

    BePostive - "For me the answer looks very broad and general. It would be good the reply is relevant and focus good examples using STAR format. Please let me know your views."See full answer

    Behavioral
  • Product Manager
    Product Design
  • "Great question, give me a moment to collect my thoughts…. When faced with a situation where a product defect is impacting my customers as a product manager my goal would be to roll out a quick & effective enough solution that minimizes the negative impact on users. I would seek available incident information to understand, its blast radius i.e. the impacted users, platforms, duration, if available understand the nature of failure i.e. recoverable vs not, it's root cause and short/long t"

    Coach - "Great question, give me a moment to collect my thoughts…. When faced with a situation where a product defect is impacting my customers as a product manager my goal would be to roll out a quick & effective enough solution that minimizes the negative impact on users. I would seek available incident information to understand, its blast radius i.e. the impacted users, platforms, duration, if available understand the nature of failure i.e. recoverable vs not, it's root cause and short/long t"See full answer

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

  • +15

    "SELECT name ,type ,ROUND( CASE WHEN type = 'Electronic' THEN price * 0.90 WHEN type = 'Clothing' THEN price * 0.80 WHEN type = 'Grocery' THEN price * 0.95 WHEN type = 'Book' THEN price * 0.85 ELSE price END, 2 ) as discounted_price FROM products `"

    Aikya S. - "SELECT name ,type ,ROUND( CASE WHEN type = 'Electronic' THEN price * 0.90 WHEN type = 'Clothing' THEN price * 0.80 WHEN type = 'Grocery' THEN price * 0.95 WHEN type = 'Book' THEN price * 0.85 ELSE price END, 2 ) as discounted_price FROM products `"See full answer

    Coding
    SQL
  • +3

    "The question refers to a very specific event: "step into the back for a few minutes, return and see a lot of people waiting"... I might try to clarify goals and scenario: Before I stepped back, there were no ppl waiting? If so, we might be talking about a very specific, even uncommon scenario, in which optimizations for the complete serving system in the long term might not be needed. Maybe they even arrived all together and this is expected behavior. Are people waiting for something specif"

    Alfredo M. - "The question refers to a very specific event: "step into the back for a few minutes, return and see a lot of people waiting"... I might try to clarify goals and scenario: Before I stepped back, there were no ppl waiting? If so, we might be talking about a very specific, even uncommon scenario, in which optimizations for the complete serving system in the long term might not be needed. Maybe they even arrived all together and this is expected behavior. Are people waiting for something specif"See full answer

    Analytical
    Execution
  • "Proposed Solution: Awareness and Control Features Algorithm Awareness Campaign Educational Content: Create short videos explaining how the algorithm works to enhance user experience. Transparency Reports: Regular updates on algorithm changes to keep users informed. User-Controlled Engagement Settings Customizable Feed Options: Allow users to adjust content preferences and limit certain types of videos. Time Management Tools: Introduce reminders for screen time limits an"

    Jaswanth P. - "Proposed Solution: Awareness and Control Features Algorithm Awareness Campaign Educational Content: Create short videos explaining how the algorithm works to enhance user experience. Transparency Reports: Regular updates on algorithm changes to keep users informed. User-Controlled Engagement Settings Customizable Feed Options: Allow users to adjust content preferences and limit certain types of videos. Time Management Tools: Introduce reminders for screen time limits an"See full answer

    Product Manager
    Behavioral
    +1 more
  • "After cleaning and organizing the data the dataset become retable and ready for analysis. This helped the tame make accurate decision based on clean data"

    Kusheta K. - "After cleaning and organizing the data the dataset become retable and ready for analysis. This helped the tame make accurate decision based on clean data"See full answer

    Data Analyst
    Data Analysis
    +3 more
  • Amazon logoAsked at Amazon 

    "The user awakes Alexa by saying the "Alexa word" Device starts recording audio from the user, and streaming it to the Alexa Cloud Service The recorded audio stream is sent to the ASR (Automatic Speech Recognition) system ASR returns the words and the order of the words in the audio stream, and sends this information to NLU (Natural Language Understanding) NLU returns the intent of the audio stream, and sends it to Alexa Skill If the intent triggers a "play" directive (e.g. turn"

    Kai W. - "The user awakes Alexa by saying the "Alexa word" Device starts recording audio from the user, and streaming it to the Alexa Cloud Service The recorded audio stream is sent to the ASR (Automatic Speech Recognition) system ASR returns the words and the order of the words in the audio stream, and sends this information to NLU (Natural Language Understanding) NLU returns the intent of the audio stream, and sends it to Alexa Skill If the intent triggers a "play" directive (e.g. turn"See full answer

    System Design
    Technical
  • Meta logoAsked at Meta 
    Product Manager
    Product Strategy
  • +24

    " from typing import List def find_first(array: List[int], num: int) -> int: left = 0 right = len(array) - 1 result = -1 # keep track of leftmost occurence found so far while left <= right: mid = (left + right) // 2 if array[mid] == num: result = mid #Found a potential result right = mid - 1 elif array[mid] < num: left = mid + 1 else: right = mid - 1 return result debug your code"

    Akash C. - " from typing import List def find_first(array: List[int], num: int) -> int: left = 0 right = len(array) - 1 result = -1 # keep track of leftmost occurence found so far while left <= right: mid = (left + right) // 2 if array[mid] == num: result = mid #Found a potential result right = mid - 1 elif array[mid] < num: left = mid + 1 else: right = mid - 1 return result debug your code"See full answer

    Data Structures & Algorithms
    Coding
  • +5

    "Clarifying Questions: By “down”, do we mean creation of messages (activation), engagement, or both? My assumed answer: engagement How are “messages” defined? Is it comments to posts, DMs, or posts themselves? My assumed answer: DMs How is engagement of DMs defined? Is it by number of DMs viewed, created, replied to? My assumed answer: all of that Quick Product Strategy Discussion: Why messaging is important to LinkedIn LinkedIn’s mission is"

    Arthur Y. - "Clarifying Questions: By “down”, do we mean creation of messages (activation), engagement, or both? My assumed answer: engagement How are “messages” defined? Is it comments to posts, DMs, or posts themselves? My assumed answer: DMs How is engagement of DMs defined? Is it by number of DMs viewed, created, replied to? My assumed answer: all of that Quick Product Strategy Discussion: Why messaging is important to LinkedIn LinkedIn’s mission is"See full answer

    Analytical
    Execution
  • Meta logoAsked at Meta 
    Video answer for 'Design a vending machine.'
    Engineering Manager
    Product Design
    +1 more
  • Product Manager
  • "Clarifying questions / assumptions we are talking about a typical retail bank and not investments banks or other NBFCs The banking app covers the primary functions of a bank like money transfers, account management, savings etc. A typical bank has the following business functions: Giving loans (primary function to make money) Savings and other accounts Investments (like Fixed deposits of the bank and other government schemes) Pain points A bank had to deploy manpower to perform all"

    Rahul J. - "Clarifying questions / assumptions we are talking about a typical retail bank and not investments banks or other NBFCs The banking app covers the primary functions of a bank like money transfers, account management, savings etc. A typical bank has the following business functions: Giving loans (primary function to make money) Savings and other accounts Investments (like Fixed deposits of the bank and other government schemes) Pain points A bank had to deploy manpower to perform all"See full answer

    Product Manager
    Product Strategy
  • Google logoAsked at Google 
    +2

    "Estimate Google ads revenue. Clarifications: Google ads: only includes ads shown on Google search pages. It does not include any other ads such as display advertisement etc. Google makes money everytime a user clicks on an ad. Market - US Monthly / Yearly - Yearly Revenue in $ For 2020 ? - yes So to state the Q again, I have to estimate Google’s annual search ads revenue for 2020. Ads revene =( $ads clicked everyday * avg price per ad ) * 360 $ads clicked every"

    D S. - "Estimate Google ads revenue. Clarifications: Google ads: only includes ads shown on Google search pages. It does not include any other ads such as display advertisement etc. Google makes money everytime a user clicks on an ad. Market - US Monthly / Yearly - Yearly Revenue in $ For 2020 ? - yes So to state the Q again, I have to estimate Google’s annual search ads revenue for 2020. Ads revene =( $ads clicked everyday * avg price per ad ) * 360 $ads clicked every"See full answer

    Estimation
  • Meta logoAsked at Meta 
    +2

    "To make sure we are on the same page, this is a feature in the current FB app that would make it easier for people to volunteer? Or more broadly, the feature would aim to expand the base of volunteers. To start I want to dive deeper on the objective of the feature. Then we can look at possible users, pick a segment and outline their needs, then look at some solutions. We can then prioritize and see how we might roll something like this out. If I look at FB mission of building community and brin"

    Anonymous Sparrow - "To make sure we are on the same page, this is a feature in the current FB app that would make it easier for people to volunteer? Or more broadly, the feature would aim to expand the base of volunteers. To start I want to dive deeper on the objective of the feature. Then we can look at possible users, pick a segment and outline their needs, then look at some solutions. We can then prioritize and see how we might roll something like this out. If I look at FB mission of building community and brin"See full answer

    Product Manager
    Product Design
  • +10

    " select user_id, b.marketing_channel from user_sessions a Left join attribution b on b.sessionid = a.sessionid group by 1,2 HAVING sum(purchasevalue)>100 and min(adclick_timestamp) `"

    G B. - " select user_id, b.marketing_channel from user_sessions a Left join attribution b on b.sessionid = a.sessionid group by 1,2 HAVING sum(purchasevalue)>100 and min(adclick_timestamp) `"See full answer

    Data Engineer
    Coding
    +3 more
  • Google logoAsked at Google 
    Video answer for 'Design a website for creating GIFs.'
    +1

    "Clarifying Qs: Design meaning - UI elements, front end requests and backend system architecture GIFs = standard short animated videos of 1/2 seconds built either using images or videos Make GIFs = generate gifs from images and videos Do we want to build the system for a certain volume of requests? Do you want me to consider the scalability part? I: Assumptions 1,2 & 3 are correct, ignore 3 for now Users: User b/w age 18-45 trying to generate GIFs using images(at least 3)"

    Shwetang S. - "Clarifying Qs: Design meaning - UI elements, front end requests and backend system architecture GIFs = standard short animated videos of 1/2 seconds built either using images or videos Make GIFs = generate gifs from images and videos Do we want to build the system for a certain volume of requests? Do you want me to consider the scalability part? I: Assumptions 1,2 & 3 are correct, ignore 3 for now Users: User b/w age 18-45 trying to generate GIFs using images(at least 3)"See full answer

    Product Design
Showing 1141-1160 of 4411