Skip to main content

Interview Questions

Review this list of 4,411 interview questions and answers verified by hiring managers and candidates.
  • "1/cost 2/speed 3/unique value/use case 4/data governance and privacy"

    M Q. - "1/cost 2/speed 3/unique value/use case 4/data governance and privacy"See full answer

    Product Manager
    Artificial Intelligence
  • Meta logoAsked at Meta 

    "Assumptions: This is an entirely new app and not part of FB Clarification questions: Q: What type of doctors are they looking for? It seems like an app would be for a more generalist doctor to establish relationship and not some type of emergency situation A: Yes Q: When we say looking for doctors whats the scope of this? Should we include making the actual appointment, does this happen on platform? A: Yes, initial appointment Ok thanks based on that I think we have enough to get started. "

    Anonymous Hummingbird - "Assumptions: This is an entirely new app and not part of FB Clarification questions: Q: What type of doctors are they looking for? It seems like an app would be for a more generalist doctor to establish relationship and not some type of emergency situation A: Yes Q: When we say looking for doctors whats the scope of this? Should we include making the actual appointment, does this happen on platform? A: Yes, initial appointment Ok thanks based on that I think we have enough to get started. "See full answer

    Product Manager
    Product Design
    +1 more
  • +18

    "What will be the technical Interview looks like for Program Manager at Microsoft? What types of questions they generally ask."

    Rahul D. - "What will be the technical Interview looks like for Program Manager at Microsoft? What types of questions they generally ask."See full answer

  • "First, I would operationalize the term "slip" by asking: What’s slipping — delivery, scope, quality, or decision-making? Second, I would ask the following questions that help me shape the possible causes for the "slip": What is important for us in this project delivery: time/quality/scope? What is the priory of this project? Is it urgent? Do we have a strict customer or other stakeholder commitment? Is it a big project that involves multiple teams or is only one team involved"

    Anastasiia V. - "First, I would operationalize the term "slip" by asking: What’s slipping — delivery, scope, quality, or decision-making? Second, I would ask the following questions that help me shape the possible causes for the "slip": What is important for us in this project delivery: time/quality/scope? What is the priory of this project? Is it urgent? Do we have a strict customer or other stakeholder commitment? Is it a big project that involves multiple teams or is only one team involved"See full answer

    Product Manager
    Behavioral
  • Capital One logoAsked at Capital One 
    Product Manager
    Product Design
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • ElevenLabs logoAsked at ElevenLabs 

    "Getting things done : I am extremely proud of walking the extra mile to get things done which I am extremely proud of in my career Ladder transfer : Being on the tactical front, to dream about creating a product from its inception to the delivery and being able to achieve it Gaining trust : Leading without authority is critical and gaining trust in the process of the peers and stakeholders is one thing I am extremely proud of."

    Googlepm 1. - "Getting things done : I am extremely proud of walking the extra mile to get things done which I am extremely proud of in my career Ladder transfer : Being on the tactical front, to dream about creating a product from its inception to the delivery and being able to achieve it Gaining trust : Leading without authority is critical and gaining trust in the process of the peers and stakeholders is one thing I am extremely proud of."See full answer

    Product Marketing Manager
    Behavioral
    +1 more
  • "Let's look at what the goal is- why we want to understand customer satifaction, and understand what actions our users take where we collect user feedback and then figure out the metrics that track these feedback touch points to understand cust satisfaction. Goal: To understand more about customer satisfaction and loyalty with the product to understand any gaps and understand where we stand with the competition, beyond the engagement, retention and revenue metrics. Actions: We have different"

    M N. - "Let's look at what the goal is- why we want to understand customer satifaction, and understand what actions our users take where we collect user feedback and then figure out the metrics that track these feedback touch points to understand cust satisfaction. Goal: To understand more about customer satisfaction and loyalty with the product to understand any gaps and understand where we stand with the competition, beyond the engagement, retention and revenue metrics. Actions: We have different"See full answer

    Analytical
  • Google logoAsked at Google 

    "Clarifying Questions What is definition of blind - people who cannot see Is this also inclusive of partially blind - No Does this cater people who are blind naturally or got blind due to some illness or accident - Only natural Why do you want to build it - what is the intended goal Improve the smartphone experience Do we expect the users any kind of phone experience when we talk about this device - Yes, basic phone experience with accessibility features "

    Product V. - "Clarifying Questions What is definition of blind - people who cannot see Is this also inclusive of partially blind - No Does this cater people who are blind naturally or got blind due to some illness or accident - Only natural Why do you want to build it - what is the intended goal Improve the smartphone experience Do we expect the users any kind of phone experience when we talk about this device - Yes, basic phone experience with accessibility features "See full answer

    Product Manager
    Product Design
  • Solutions Architect
    Behavioral
  • Meta logoAsked at Meta 
    Technical Program Manager
    Program Sense
  • Meta logoAsked at Meta 

    "Given a Binary Tree, the task is to find its vertical traversal starting from the leftmost level to the rightmost level. If multiple nodes pass through a vertical line, they should be printed as they appear in the level order traversal of the tree. The idea is to traverse the tree using dfs and maintain a hashmap to store nodes at each horizontal distance (HD) from the root. Starting with an HD of 0 at the root, the HD is decremented for left children and incremented for right children. As we"

    Anonymous Mongoose - "Given a Binary Tree, the task is to find its vertical traversal starting from the leftmost level to the rightmost level. If multiple nodes pass through a vertical line, they should be printed as they appear in the level order traversal of the tree. The idea is to traverse the tree using dfs and maintain a hashmap to store nodes at each horizontal distance (HD) from the root. Starting with an HD of 0 at the root, the HD is decremented for left children and incremented for right children. As we"See full answer

    Software Engineer
    Data Structures & Algorithms
  • Adobe logoAsked at Adobe 
    +7

    "function preorderToInorder(preorder) { let inorder = []; let stack = []; let root = preorder[0]; stack.push(root); for (let i = 1; i 0 && stack[stack.length - 1] 0) { root = stack.pop(); inorder.push(r"

    Ugo C. - "function preorderToInorder(preorder) { let inorder = []; let stack = []; let root = preorder[0]; stack.push(root); for (let i = 1; i 0 && stack[stack.length - 1] 0) { root = stack.pop(); inorder.push(r"See full answer

    Software Engineer
    Data Structures & Algorithms
    +2 more
  • Apple logoAsked at Apple 

    "I was a student worker at Gordon's Food Service, Schaumburg, My tasks were vacuuming onion peels, checking expiration dates, cleaning the break room, cleaning the shelves from the Ailes, Stocking stuff on shelves, sweeping the backroom, mopping, Refilling bottles with cleaning supplies and cleaning the fridge glass."

    Amparo L. - "I was a student worker at Gordon's Food Service, Schaumburg, My tasks were vacuuming onion peels, checking expiration dates, cleaning the break room, cleaning the shelves from the Ailes, Stocking stuff on shelves, sweeping the backroom, mopping, Refilling bottles with cleaning supplies and cleaning the fridge glass."See full answer

    Software Engineer
    Behavioral
  • +12

    "with my_table as (select * , rownumber() over(order by customerid) as row_index from customers) select customer_id, customer_name from my_table where row_index % 3 = 0"

    Marcos G. - "with my_table as (select * , rownumber() over(order by customerid) as row_index from customers) select customer_id, customer_name from my_table where row_index % 3 = 0"See full answer

    Coding
    SQL
  • Statistics & Experimentation
  • American Express logoAsked at American Express 
    +1

    "After more than five years at my previous company, I had contributed significantly to many important projects and helped the team navigate critical transitions, such as our shift from a monolithic to a microservices architecture. However, over time, I realized that my goals and the direction of the company were no longer fully aligned. I felt I had outgrown the position and was ready for new challenges, where I could continue to grow both technically and professionally. Ultimately, I’m excited a"

    Chinedu ekene O. - "After more than five years at my previous company, I had contributed significantly to many important projects and helped the team navigate critical transitions, such as our shift from a monolithic to a microservices architecture. However, over time, I realized that my goals and the direction of the company were no longer fully aligned. I felt I had outgrown the position and was ready for new challenges, where I could continue to grow both technically and professionally. Ultimately, I’m excited a"See full answer

    Software Engineer
    Behavioral
    +1 more
  • Amazon logoAsked at Amazon 

    "Explained in STAR format one of the project situation where I had to collect data points by deploying a minimum viable product due to unclear business requirements/dynamic nature of business. Emphasized on exact data points and how they strategically used to iteratively deploy improved version of product."

    Vijay P. - "Explained in STAR format one of the project situation where I had to collect data points by deploying a minimum viable product due to unclear business requirements/dynamic nature of business. Emphasized on exact data points and how they strategically used to iteratively deploy improved version of product."See full answer

    Technical Program Manager
    Behavioral
    +2 more
  • Product Manager
    Behavioral
  • "JJ Zhou, co-founder at the previous company taught me this: if you want to get people build a boat, tell them how great the sea is. That advice guided me through challenges I face to get my team on board with my vision. When i became the payment PM where I oversaw the user checkout experience, I decided to introduce Agile approach and organized the workflow into Scrums. The challenge was most engineers and data-scientists in my team were from banks so they were comfortable with water-fall. On"

    Darren L. - "JJ Zhou, co-founder at the previous company taught me this: if you want to get people build a boat, tell them how great the sea is. That advice guided me through challenges I face to get my team on board with my vision. When i became the payment PM where I oversaw the user checkout experience, I decided to introduce Agile approach and organized the workflow into Scrums. The challenge was most engineers and data-scientists in my team were from banks so they were comfortable with water-fall. On"See full answer

    Behavioral
Showing 1441-1460 of 4411