Skip to main content

Interview Questions

Review this list of 4,415 interview questions and answers verified by hiring managers and candidates.
  • Zomato logoAsked at Zomato 
    Add answer
    Product Design
  • Google logoAsked at Google 
    1 answer

    "Clarifying QQ What do you mean by Smart - Lets say it means its connected Am I the google PM - yes Will we own the hardware part or this will be developed by any vendor/partner - Say vendor on requirements from google Any specific market - USA What is the overall goal - Enter the new market with driving better adoption and enhanced experience through the users Any specific piece of furniture - No you are free to assume Thanks for all the clarifying QQ Lets say for this exa"

    Product V. - "Clarifying QQ What do you mean by Smart - Lets say it means its connected Am I the google PM - yes Will we own the hardware part or this will be developed by any vendor/partner - Say vendor on requirements from google Any specific market - USA What is the overall goal - Enter the new market with driving better adoption and enhanced experience through the users Any specific piece of furniture - No you are free to assume Thanks for all the clarifying QQ Lets say for this exa"See full answer

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

  • Google logoAsked at Google 
    1 answer

    "Ask Follow up Questions Is this for specific type of user or open? Do we have any past research that has been done? Do we have an idea of company and user goals? Do we have metrics of success? Are there any existing constraints? Why  |  5 min Why is this product or feature important? How does this product benefit customers? What business opportunities does it create? What is our hypothesis? What are our company goals? Who  |  3 min Who are the different types"

    Ben G. - "Ask Follow up Questions Is this for specific type of user or open? Do we have any past research that has been done? Do we have an idea of company and user goals? Do we have metrics of success? Are there any existing constraints? Why  |  5 min Why is this product or feature important? How does this product benefit customers? What business opportunities does it create? What is our hypothesis? What are our company goals? Who  |  3 min Who are the different types"See full answer

    Product Designer
    Product Design
  • Meta logoAsked at Meta 
    1 answer

    "By providing some new technologies and improve the products"

    Baviya M. - "By providing some new technologies and improve the products"See full answer

    Product Design
  • Google logoAsked at Google 
    1 answer

    "Clarification questions: What is the mission of the company? To connect people together to unleash their creativity. Is there any geographical areas that I should concentrate on? It is worldwide. Are there any constraints? No, there is none. Success of the usage of the app? The PM to pick. Approach: Establish the nature of the application. Establish the type of users that would be on the platform. Lay out what the user journey is. Define the metrics that are relevant. -"

    Ferri T. - "Clarification questions: What is the mission of the company? To connect people together to unleash their creativity. Is there any geographical areas that I should concentrate on? It is worldwide. Are there any constraints? No, there is none. Success of the usage of the app? The PM to pick. Approach: Establish the nature of the application. Establish the type of users that would be on the platform. Lay out what the user journey is. Define the metrics that are relevant. -"See full answer

    Product Manager
    Analytical
  • Apptio logoAsked at Apptio 
    Add answer
    Product Strategy
  • Microsoft logoAsked at Microsoft 
    1 answer

    "Skype is a communication and collaboration tool used by individuals and businesses. Users can send messages, do audio and video calls, share screen etc. There are two parts to the business model: Individual user - to - individual user: users can make audio and video calls at no fee Enterprises: Organisations need to purchase the subscription for internal usage. Revenue depends on \# of paying enterprises, length of subscription, price per month/year Product objective: increase rev"

    Rahul J. - "Skype is a communication and collaboration tool used by individuals and businesses. Users can send messages, do audio and video calls, share screen etc. There are two parts to the business model: Individual user - to - individual user: users can make audio and video calls at no fee Enterprises: Organisations need to purchase the subscription for internal usage. Revenue depends on \# of paying enterprises, length of subscription, price per month/year Product objective: increase rev"See full answer

    Product Manager
    Product Strategy
  • Capital One logoAsked at Capital One 
    Add answer
    Product Manager
  • TikTok logoAsked at TikTok 
    1 answer

    "Clarify Questions • Target Audience: Are we focusing on existing TikTok users, new users, or both? • Scope of Search Features: Are we looking at in-app search, search engine optimization (SEO), or both? • Geographical Focus: Are there specific regions we are targeting for user acquisition? Goal Our primary goal is to increase user adoption and market share by making it easier for users to discover and engage with TikTok Shop through optimized search features. User Segments Current TikTo"

    Vihari K. - "Clarify Questions • Target Audience: Are we focusing on existing TikTok users, new users, or both? • Scope of Search Features: Are we looking at in-app search, search engine optimization (SEO), or both? • Geographical Focus: Are there specific regions we are targeting for user acquisition? Goal Our primary goal is to increase user adoption and market share by making it easier for users to discover and engage with TikTok Shop through optimized search features. User Segments Current TikTo"See full answer

    Product Manager
    Product Strategy
  • "Comprehend the Situation: What is the goal?The goal is to introduce an ACH payment method in the United States for Netflix. Why is this important?ACH payments can offer a convenient and cost-effective payment option for customers. Who are the stakeholders?Stakeholders include Netflix customers, the product team, finance, legal, and compliance teams. How does ACH work? transaction flow and potential benefits. Identify the Customer: Recurring subscribers and"

    Anonymous Goat - "Comprehend the Situation: What is the goal?The goal is to introduce an ACH payment method in the United States for Netflix. Why is this important?ACH payments can offer a convenient and cost-effective payment option for customers. Who are the stakeholders?Stakeholders include Netflix customers, the product team, finance, legal, and compliance teams. How does ACH work? transaction flow and potential benefits. Identify the Customer: Recurring subscribers and"See full answer

    Product Manager
    Analytical
    +1 more
  • 11 answers
    +8

    "select DISTINCT p.product_id, p.product_name , CASE when sale_date is null then 'Not Sold' else 'Sold' END as sale_status from products p left join sales s on p.productid= s.productid `"

    Gowtami K. - "select DISTINCT p.product_id, p.product_name , CASE when sale_date is null then 'Not Sold' else 'Sold' END as sale_status from products p left join sales s on p.productid= s.productid `"See full answer

    Coding
    SQL
  • LinkedIn logoAsked at LinkedIn 
    1 answer

    "Basic Approach As BST inorder traversal will result in a sequence of increasing order. Store that order in a vector and get the k-1 index to get the Kth smallest element, similarly access the N-K+1 th element will be the Kth largest element Time Complexity: O(n) Space Complexity O(n) Space Optimized Approach For Kth smallest , start inorder traversal, and keep a counter, decrement the counter when you access the node element. When the counter turns 0 that elementwill be the Kth smal"

    Saurabh S. - "Basic Approach As BST inorder traversal will result in a sequence of increasing order. Store that order in a vector and get the k-1 index to get the Kth smallest element, similarly access the N-K+1 th element will be the Kth largest element Time Complexity: O(n) Space Complexity O(n) Space Optimized Approach For Kth smallest , start inorder traversal, and keep a counter, decrement the counter when you access the node element. When the counter turns 0 that elementwill be the Kth smal"See full answer

    Data Structures & Algorithms
    Coding
    +1 more
  • Meta logoAsked at Meta 
    1 answer

    "I once had to change a decision i had previously made when I got stakeholder feedback that seemed to contradict what was already designed or already even built - such as the way a page was architected or the designs or colors used on a page. I had a justification for all decisions made, but sometimes the stakeholder feedback brings a perspective, such as a part of the user experience, that I had not thought of before. So I then went back to the original design or product and made an adjustment o"

    Sarah K. - "I once had to change a decision i had previously made when I got stakeholder feedback that seemed to contradict what was already designed or already even built - such as the way a page was architected or the designs or colors used on a page. I had a justification for all decisions made, but sometimes the stakeholder feedback brings a perspective, such as a part of the user experience, that I had not thought of before. So I then went back to the original design or product and made an adjustment o"See full answer

    Solutions Architect
    Behavioral
    +1 more
  • Microsoft logoAsked at Microsoft 
    Add answer
    Product Manager
    Product Design
    +1 more
  • 14 answers
    +9

    "SELECT o.order_amount FROM orders o JOIN departments d ON d.departmentid = o.departmentid WHERE d.department_name = 'Fashion' ORDER BY order_amount DESC LIMIT 1 OFFSET 1; `"

    Derrick M. - "SELECT o.order_amount FROM orders o JOIN departments d ON d.departmentid = o.departmentid WHERE d.department_name = 'Fashion' ORDER BY order_amount DESC LIMIT 1 OFFSET 1; `"See full answer

    Coding
    SQL
  • Shopify logoAsked at Shopify 
    1 answer

    "Before we begin, it's important to understand what the interviewer is testing with this type of question. This is a Strategy Question that tests an interviewee's ability to create compelling arguments from high level information, discern motive, and think strategically. We can split this question into two views: is Spotify's high churn rate okay or not? Let's see the argument that is bad, and then the opposing side. High churn is bad We'll first give the naive argument here — that churn i"

    Exponent - "Before we begin, it's important to understand what the interviewer is testing with this type of question. This is a Strategy Question that tests an interviewee's ability to create compelling arguments from high level information, discern motive, and think strategically. We can split this question into two views: is Spotify's high churn rate okay or not? Let's see the argument that is bad, and then the opposing side. High churn is bad We'll first give the naive argument here — that churn i"See full answer

    Product Manager
    Analytical
  • "I will try to reconcile the differences between expectations and actuals in the release in order to understand where there may be mismatch. I would try to understand if there can be a roll-back or hotfix to remediate the differences and work with engineering to drive this. Moving forward, I'd work with the rest of the product team to align on a roadmap and have a readout with the executive staff, flagging any changes along the way."

    Ankit T. - "I will try to reconcile the differences between expectations and actuals in the release in order to understand where there may be mismatch. I would try to understand if there can be a roll-back or hotfix to remediate the differences and work with engineering to drive this. Moving forward, I'd work with the rest of the product team to align on a roadmap and have a readout with the executive staff, flagging any changes along the way."See full answer

    Behavioral
Showing 2301-2320 of 4415