Skip to main content

Interview Questions

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

    "Assumptions: The question is for a PM working for a refrigerator startup company and for a domestic refrigerator (not industrial). The first model comes in the most commonly used form factor with fridge/freezer split, and it has standard cooling specifications. Target market is the US. The startup is for profit. Product goal: To make interacting with refrigerator easy, seamless and pleasurable for the blind. Target users and channel partners: Fully blind people between the ages o"

    Nr 9. - "Assumptions: The question is for a PM working for a refrigerator startup company and for a domestic refrigerator (not industrial). The first model comes in the most commonly used form factor with fridge/freezer split, and it has standard cooling specifications. Target market is the US. The startup is for profit. Product goal: To make interacting with refrigerator easy, seamless and pleasurable for the blind. Target users and channel partners: Fully blind people between the ages o"See full answer

    Product Manager
    Product Design
  • Adobe logoAsked at Adobe 

    "I would start with the company vision then assuming we have more than one product team, craft the vision for the product through a collaboration of PMs and Tech leads, then based on that I will define the scope of each product team's milestones to achieve the product vision and go from both ends to fill the gap from what we already have and what needed to achieve the milestones."

    Seyed rasoul J. - "I would start with the company vision then assuming we have more than one product team, craft the vision for the product through a collaboration of PMs and Tech leads, then based on that I will define the scope of each product team's milestones to achieve the product vision and go from both ends to fill the gap from what we already have and what needed to achieve the milestones."See full answer

    Product Manager
    Behavioral
    +1 more
  • Google logoAsked at Google 
    Video answer for 'Design a cyber attack.'

    "Phishing Attack Scenario (High-Level) Attack Type: Phishing Goal: Steal user credentials Attack Vector: Fake email pretending to be a bank Target: End users Impact: Account takeover, financial loss Detection: Email filtering, user reports Prevention: User awareness training Multi-factor authentication Email security gateways"

    Dileep D. - "Phishing Attack Scenario (High-Level) Attack Type: Phishing Goal: Steal user credentials Attack Vector: Fake email pretending to be a bank Target: End users Impact: Account takeover, financial loss Detection: Email filtering, user reports Prevention: User awareness training Multi-factor authentication Email security gateways"See full answer

    Security
    Technical
  • Adobe logoAsked at Adobe 
    +30

    " from typing import List one pass O(n) def find_duplicates(arr1: List[int], arr2: List[int]) -> List[int]: duplicates = [] i1 = i2 = 0 while i1 < len(arr1) and i2 < len(arr2): if arr1[i1] == arr2[i2]: duplicates.append(arr1[i1]) i2 += 1 i1 += 1 return duplicates debug your code below print(find_duplicates([1, 2, 3, 5, 6, 7], [3, 6, 7, 8, 20])) `"

    Rick E. - " from typing import List one pass O(n) def find_duplicates(arr1: List[int], arr2: List[int]) -> List[int]: duplicates = [] i1 = i2 = 0 while i1 < len(arr1) and i2 < len(arr2): if arr1[i1] == arr2[i2]: duplicates.append(arr1[i1]) i2 += 1 i1 += 1 return duplicates debug your code below print(find_duplicates([1, 2, 3, 5, 6, 7], [3, 6, 7, 8, 20])) `"See full answer

    Data Engineer
    Data Structures & Algorithms
    +2 more
  • Machine Learning Engineer
    Data Structures & Algorithms
    +3 more
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • "While running the testloop I am getting an error RuntimeError: runningmean should contain 28 elements not 38. I think it's the difference between the categorical features in train and test. `"

    Abinash S. - "While running the testloop I am getting an error RuntimeError: runningmean should contain 28 elements not 38. I think it's the difference between the categorical features in train and test. `"See full answer

    Coding
    Machine Learning
  • "Even after a successful launch and long-term performance locally, app developers will need to develop a rigorous expansion strategy to succeed on a global scale. And although users are more connected than ever before, each region will present new challenges and considerations that must be solved by data-driven insights and research into the target market. This guide outlines everything you need to consider when expanding into new territories and localizing your app for new audiences."

    Abdurhman M. - "Even after a successful launch and long-term performance locally, app developers will need to develop a rigorous expansion strategy to succeed on a global scale. And although users are more connected than ever before, each region will present new challenges and considerations that must be solved by data-driven insights and research into the target market. This guide outlines everything you need to consider when expanding into new territories and localizing your app for new audiences."See full answer

    Design Manager
    Behavioral
    +1 more
  • Yelp logoAsked at Yelp 
    Product Design
    System Design
  • +1

    "User Need Not Being Met by the Market: Instant, Seamless Cross-Border Refunds Identifying the Gap- One major gap in the digital payments industry is the lack of instant, seamless cross-border refunds for consumers. Currently, international refunds take days or even weeks due to exchange rate fluctuations, banking delays, and compliance checks. This creates frustration for users, especially in e-commerce, where consumers expect instant refunds like they receive for domestic transactions. Pain Poi"

    Ani T. - "User Need Not Being Met by the Market: Instant, Seamless Cross-Border Refunds Identifying the Gap- One major gap in the digital payments industry is the lack of instant, seamless cross-border refunds for consumers. Currently, international refunds take days or even weeks due to exchange rate fluctuations, banking delays, and compliance checks. This creates frustration for users, especially in e-commerce, where consumers expect instant refunds like they receive for domestic transactions. Pain Poi"See full answer

    Product Manager
    Behavioral
    +1 more
  • Software Engineer
    Coding
  • "Apoorva Tai is the best. Wash-off effect can be applied on switchback if 1-hour time-block is persisted with, where the first 10-15 minutes of a switchback is ignored"

    Aman M. - "Apoorva Tai is the best. Wash-off effect can be applied on switchback if 1-hour time-block is persisted with, where the first 10-15 minutes of a switchback is ignored"See full answer

    Statistics & Experimentation
  • Amazon logoAsked at Amazon 
    +25

    "import java.util.*; public class MostCommonWords { public static String mostCommonWords(String text) { String removeNonAlphabets = "[.,;!\"'\\(\\)]"; String sanitizedText = text.replaceAll(removeNonAlphabets," ").toLowerCase(); String[] wordsArray = sanitizedText.split("\\s+"); Map hm = new HashMap(); for (String word: wordsArray){ if (!word.isEmpty()){ hm.put(word, hm.getOrDefault(word,0)+1); } } List> entries = new ArrayList(hm.entrySet()); en"

    Sailaja R. - "import java.util.*; public class MostCommonWords { public static String mostCommonWords(String text) { String removeNonAlphabets = "[.,;!\"'\\(\\)]"; String sanitizedText = text.replaceAll(removeNonAlphabets," ").toLowerCase(); String[] wordsArray = sanitizedText.split("\\s+"); Map hm = new HashMap(); for (String word: wordsArray){ if (!word.isEmpty()){ hm.put(word, hm.getOrDefault(word,0)+1); } } List> entries = new ArrayList(hm.entrySet()); en"See full answer

    Security Engineer
    Data Structures & Algorithms
    +1 more
  • Google logoAsked at Google 
    Video answer for 'How does the internet work?'

    "URL> DNS over UDP> IP address > TCP handshake > HTTP(SSL handshake) req, responses, websites architectures for any query DB, servers."

    Wizzy B. - "URL> DNS over UDP> IP address > TCP handshake > HTTP(SSL handshake) req, responses, websites architectures for any query DB, servers."See full answer

    Security
    Technical
  • Databricks logoAsked at Databricks 

    "One Accomplishment I'm most proud of is that I graduated from Schaumburg High School In May of 2021 and I was able to get up the stage and collect my diploma. This was a HUGE Impact in regards of passing all of my classes and earning all of my credits in order to be apart of the NOW Arena graduation."

    Amparo L. - "One Accomplishment I'm most proud of is that I graduated from Schaumburg High School In May of 2021 and I was able to get up the stage and collect my diploma. This was a HUGE Impact in regards of passing all of my classes and earning all of my credits in order to be apart of the NOW Arena graduation."See full answer

    Product Manager
    Behavioral
    +1 more
  • Behavioral
    Customer Interaction
  • "Analytics as a career route was to problem solve and think out of the box , where I would be able to inculcate a data-driven thinking to finding solutions. Establishing a foundation and end to end analytical methodologies for giving recommendations for actionable outcomes useful for internal and external teams relying on these observations. Learning the procedure of how to source unstructured data and clean, impute, introduce variables to build impactful inferences."

    Aishwarya J. - "Analytics as a career route was to problem solve and think out of the box , where I would be able to inculcate a data-driven thinking to finding solutions. Establishing a foundation and end to end analytical methodologies for giving recommendations for actionable outcomes useful for internal and external teams relying on these observations. Learning the procedure of how to source unstructured data and clean, impute, introduce variables to build impactful inferences."See full answer

    Product Analyst
    Behavioral
    +1 more
  • "Imagine you're a PM for Mastercard. Design a product for restaurants to help them transition to a purchase order (PO) system that reduces their labor costs Mission & Vision : Mastercard is a payment processing fintech company, it has different payment service & products ex credit/debit cards etc. Mastercard vision and mission to to connect the world financially making payment process seamless across different industries. Clarifying questions : What type of restaurants on basis of revenue we"

    Ashutosh K. - "Imagine you're a PM for Mastercard. Design a product for restaurants to help them transition to a purchase order (PO) system that reduces their labor costs Mission & Vision : Mastercard is a payment processing fintech company, it has different payment service & products ex credit/debit cards etc. Mastercard vision and mission to to connect the world financially making payment process seamless across different industries. Clarifying questions : What type of restaurants on basis of revenue we"See full answer

    Product Manager
    Product Design
  • Meta logoAsked at Meta 
    Video answer for 'Find the common ancestors in a tree.'
    Machine Learning Engineer
    Data Structures & Algorithms
    +1 more
  • "clarifying questions: Particular location? Small town? Big town? Self- checkout vs. associate checkout? Weekly operating hours? Super-center vs small format? Competitive landscape? Store sales? Are we talking division 1 or adding health and wellness? Does the store have a vision center? Hair… nails … bank etc. Let’s say we agree that this is a super center in a suburb that wants to focus on converting to full self checkout. I’d have to look further into exact times with my data science team t"

    Michael P. - "clarifying questions: Particular location? Small town? Big town? Self- checkout vs. associate checkout? Weekly operating hours? Super-center vs small format? Competitive landscape? Store sales? Are we talking division 1 or adding health and wellness? Does the store have a vision center? Hair… nails … bank etc. Let’s say we agree that this is a super center in a suburb that wants to focus on converting to full self checkout. I’d have to look further into exact times with my data science team t"See full answer

    Estimation
    Product Design
  • "I product manage customer care - while I belong to the ecommerce platform team. customer care is not a direct contributor for revenue and the feedback i received during my career progression was unless i contribute to revenue i cannot be on promotion track. this is difficult feedback to act on as its not by job responsibility. worked with my manager on 2 fronts - 1) create a succession plan so i can take on additional responsibility that contributes to revenue and 2) create a plan on how care ca"

    Gomathi S. - "I product manage customer care - while I belong to the ecommerce platform team. customer care is not a direct contributor for revenue and the feedback i received during my career progression was unless i contribute to revenue i cannot be on promotion track. this is difficult feedback to act on as its not by job responsibility. worked with my manager on 2 fronts - 1) create a succession plan so i can take on additional responsibility that contributes to revenue and 2) create a plan on how care ca"See full answer

    Technical Program Manager
    Behavioral
Showing 1001-1020 of 4415