Skip to main content

Interview Questions

Review this list of 4,477 interview questions and answers verified by hiring managers and candidates.
  • Meta logoAsked at Meta 
    Add answer
    Product Analyst
    Execution
    +1 more
  • Amazon logoAsked at Amazon 
    1 answer

    "I’d clarify the scope first. I’ll assume they want: Given a root folder and a search text, recursively find all files whose filename contains that text. Code: #include #include #include #include using namespace std; namespace fs = std::filesystem; vector searchFiles(const string& rootPath, const string& target) { vector ans; if(!fs::exists(rootPath)) { return ans; } // recursively go through all folder"

    Alok S. - "I’d clarify the scope first. I’ll assume they want: Given a root folder and a search text, recursively find all files whose filename contains that text. Code: #include #include #include #include using namespace std; namespace fs = std::filesystem; vector searchFiles(const string& rootPath, const string& target) { vector ans; if(!fs::exists(rootPath)) { return ans; } // recursively go through all folder"See full answer

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

    "Clarifying Questions Before diving in, a few questions to align on scope: Apple Maps is pre-installed on all iPhones and iPads, correct? We're keeping the web channel but focusing on the app? Core use case: navigation, nearby search, traffic, location sharing, place discovery? Are we targeting the US only, and what's the market share goal? Assume answers: Yes to all. Currently 5% share, target 20% in 18 months. 80% owned by Google Maps. Reframing the Problem A 5% → 20% jump i"

    Vani B. - "Clarifying Questions Before diving in, a few questions to align on scope: Apple Maps is pre-installed on all iPhones and iPads, correct? We're keeping the web channel but focusing on the app? Core use case: navigation, nearby search, traffic, location sharing, place discovery? Are we targeting the US only, and what's the market share goal? Assume answers: Yes to all. Currently 5% share, target 20% in 18 months. 80% owned by Google Maps. Reframing the Problem A 5% → 20% jump i"See full answer

    Product Manager
    Product Design
    +1 more
  • Nubank logoAsked at Nubank 
    Add answer
    Product Manager
    Product Design
  • Apple logoAsked at Apple 
    Add answer
    Product Manager
    Behavioral
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Apple logoAsked at Apple 
    Add answer
    Product Manager
    Behavioral
  • Meta logoAsked at Meta 
    7 answers
    +3

    "#include #include bool palindrome(std::string &str, int left, int right, int error) { if (left >= right) { return true; } if (str[left] == str[right]) { return palindrome(str, left + 1, right - 1, error); } else if (error == 0) { return (palindrome(str, left + 1, right, 1) || palindrome(str,left, right -1,1)); } else { return false; } } int main() { std::string str = "abcbca"; int size = str.size() - 1; if"

    Dev S. - "#include #include bool palindrome(std::string &str, int left, int right, int error) { if (left >= right) { return true; } if (str[left] == str[right]) { return palindrome(str, left + 1, right - 1, error); } else if (error == 0) { return (palindrome(str, left + 1, right, 1) || palindrome(str,left, right -1,1)); } else { return false; } } int main() { std::string str = "abcbca"; int size = str.size() - 1; if"See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
  • "Clarifying questions, Establish problem, Factors to take into account. Dive in with the numbers request specific numbers based on follow up questions, Calculate based on the numbers and Final Recommendation"

    Dhruvin S. - "Clarifying questions, Establish problem, Factors to take into account. Dive in with the numbers request specific numbers based on follow up questions, Calculate based on the numbers and Final Recommendation"See full answer

    Business Analyst
    Analytical
  • American Express logoAsked at American Express 
    Add answer
    Product Manager
    Behavioral
  • American Express logoAsked at American Express 
    Add answer
    Product Manager
    Behavioral
  • Meta logoAsked at Meta 
    2 answers

    "Answer generated using AI plugin: https://github.com/buildforward/product-sense-interview-answer Section 1 — Clarify (~2 min) Before I dive in, I'd like to ask a couple of clarifying questions to make sure I'm solving the right problem. What do we mean by "engaging"? Hashtags can drive discovery, community, creation, or interaction. I'll assume we're focused on making hashtags more engaging for content consumers — increasing the time people spend exploring and interacting with"

    Elly P. - "Answer generated using AI plugin: https://github.com/buildforward/product-sense-interview-answer Section 1 — Clarify (~2 min) Before I dive in, I'd like to ask a couple of clarifying questions to make sure I'm solving the right problem. What do we mean by "engaging"? Hashtags can drive discovery, community, creation, or interaction. I'll assume we're focused on making hashtags more engaging for content consumers — increasing the time people spend exploring and interacting with"See full answer

    Product Manager
    Product Design
  • Box logoAsked at Box 
    2 answers

    "Clarifying Questions Okay so in my role, can I assume that I am a Product Manager at Box who wants to integrate with ChatGpt? Do we have any more context as to why we are wanting to integrate Box with ChatGPT? Just trying to understand what the business value is we are trying to drive here. What is our timeline for executing this strategy is it more short term like 6 months where I might assume we have already conducted an understand workstream exploring this? Or is the t"

    Matthew W. - "Clarifying Questions Okay so in my role, can I assume that I am a Product Manager at Box who wants to integrate with ChatGpt? Do we have any more context as to why we are wanting to integrate Box with ChatGPT? Just trying to understand what the business value is we are trying to drive here. What is our timeline for executing this strategy is it more short term like 6 months where I might assume we have already conducted an understand workstream exploring this? Or is the t"See full answer

    Product Manager
    Product Design
  • Wayfair logoAsked at Wayfair 
    Add answer
    Product Manager
    Product Strategy
  • Google logoAsked at Google 
    Add answer
    Product Manager
    Behavioral
  • Google logoAsked at Google 
    1 answer

    "Cars have a side mirror that captures any vehicle passing on the side; however there is a blindspot right besides the B beam between the doors. A car on the side passing is not visible to the driver as the angle of reflection would be smaller as the car is farther behind. It is also not visible in the back facing mirror (which captures vehicles farther behind). A driver would have to lean to the left or turn their head to check for cars in that blindspot to change lanes safely. This applies to"

    Jyoty S. - "Cars have a side mirror that captures any vehicle passing on the side; however there is a blindspot right besides the B beam between the doors. A car on the side passing is not visible to the driver as the angle of reflection would be smaller as the car is farther behind. It is also not visible in the back facing mirror (which captures vehicles farther behind). A driver would have to lean to the left or turn their head to check for cars in that blindspot to change lanes safely. This applies to"See full answer

    Product Manager
    Product Design
  • Visa logoAsked at Visa 
    1 answer

    "Framework"

    Shashank P. - "Framework"See full answer

    Product Manager
    Technical
  • Microsoft logoAsked at Microsoft 
    1 answer

    "I confirmed with the interviewer that its about how slave replaces primary when primary node when suddenly shuts down. It was very tough question for me i felt. i told, we need to maintain schema of primary, secondary instances with their URL's and posts. There should be heartbeat service which always pings the actual microservices to get to know their instances health."

    Sreenath P. - "I confirmed with the interviewer that its about how slave replaces primary when primary node when suddenly shuts down. It was very tough question for me i felt. i told, we need to maintain schema of primary, secondary instances with their URL's and posts. There should be heartbeat service which always pings the actual microservices to get to know their instances health."See full answer

    Software Engineer
    System Design
  • Airbnb logoAsked at Airbnb 
    1 answer

    "1. Problem Statement & Clarifications To achieve a 3x growth in new users, I am defining the scope as follows: Platform Scope: I am looking at the entire Airbnb ecosystem (Homes + Experiences). Since Airbnb operates on a two-sided marketplace model, growth in the user base requires a balanced distribution between demand and supply. Defining "New Users": Our goal is to increase the number of users who not only sign up but complete their first booking. This conversion from "reg"

    Mrigang S. - "1. Problem Statement & Clarifications To achieve a 3x growth in new users, I am defining the scope as follows: Platform Scope: I am looking at the entire Airbnb ecosystem (Homes + Experiences). Since Airbnb operates on a two-sided marketplace model, growth in the user base requires a balanced distribution between demand and supply. Defining "New Users": Our goal is to increase the number of users who not only sign up but complete their first booking. This conversion from "reg"See full answer

    Product Manager
    Product Strategy
  • Waymo logoAsked at Waymo 
    Add answer
    Product Manager
    Product Strategy
  • Product Manager
    Product Strategy
Showing 61-80 of 4477