Interview Questions

Review this list of 4,029 interview questions and answers verified by hiring managers and candidates.
  • Adobe logoAsked at Adobe 
    Video answer for 'Generate Parentheses'
    +5

    " function generateParentheses(n) { // your code goes here if(n === 0) return []; let allComb = [] backtrack(allComb, n, "", 0, 0); return allComb } function backtrack(allComb, n, current, open, close){ if(current.length === 2*n){ allComb.push(current); return } if(open < n){ backtrack(allComb, n, current + "(", open + 1, close) } if(close < open){ backtrack(allComb, n, current + ")", open, close + 1) "

    Daisy N. - " function generateParentheses(n) { // your code goes here if(n === 0) return []; let allComb = [] backtrack(allComb, n, "", 0, 0); return allComb } function backtrack(allComb, n, current, open, close){ if(current.length === 2*n){ allComb.push(current); return } if(open < n){ backtrack(allComb, n, current + "(", open + 1, close) } if(close < open){ backtrack(allComb, n, current + ")", open, close + 1) "See full answer

    Software Engineer
    Data Structures & Algorithms
    +3 more
  • Microsoft logoAsked at Microsoft 
    +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

  • +1

    "Product "XYZ" explain what it is and which audience it is serving. Goals Ease the anxiety Offer the most comprehensive perspective of Cloud Engagement Democratize Upsell Insights Business Review Deck Slide #1: NPS - Now, Trend & Insights + Call To Action: FYI & solicit feedback Slide #2: User Engagement Update - DAU, WAU, MAU, Actions Completed + Call To Action: FYI & solicit feedback Slide #3: Partnership Update - Share new cross org collabor"

    Coach - "Product "XYZ" explain what it is and which audience it is serving. Goals Ease the anxiety Offer the most comprehensive perspective of Cloud Engagement Democratize Upsell Insights Business Review Deck Slide #1: NPS - Now, Trend & Insights + Call To Action: FYI & solicit feedback Slide #2: User Engagement Update - DAU, WAU, MAU, Actions Completed + Call To Action: FYI & solicit feedback Slide #3: Partnership Update - Share new cross org collabor"See full answer

    Product Manager
    Execution
    +2 more
  • Product Manager
    Analytical
    +1 more
  • Amazon logoAsked at Amazon 

    " I have told about the challenge I have faced while designing the Automation Framework for Angular and React website and why we have to use 1 library puppeteer sharp over selenium e.g. we need to handle the asynch calls correctly when an object is selected in the UI and result is awaited for it."

    Kanwal jeet singh L. - " I have told about the challenge I have faced while designing the Automation Framework for Angular and React website and why we have to use 1 library puppeteer sharp over selenium e.g. we need to handle the asynch calls correctly when an object is selected in the UI and result is awaited for it."See full answer

    Solutions Architect
    Technical
    +2 more
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • "Here's how I'd approach investing that $10 million over the next year and a half. The biggest chunk about $4 million would go straight into our core infrastructure because that's what everything else depends on. We're seeing massive demand for real-time payments, so I'd put $2.5 million into building instant settlement capabilities and integrating with FedNow and RTP rails. The remaining $1.5 million would beef up our platform scalability because we're hitting capacity limits during peak times,"

    Rajeev K. - "Here's how I'd approach investing that $10 million over the next year and a half. The biggest chunk about $4 million would go straight into our core infrastructure because that's what everything else depends on. We're seeing massive demand for real-time payments, so I'd put $2.5 million into building instant settlement capabilities and integrating with FedNow and RTP rails. The remaining $1.5 million would beef up our platform scalability because we're hitting capacity limits during peak times,"See full answer

    Product Manager
    Product Strategy
  • Amazon logoAsked at Amazon 

    "Before getting into the solution aspect, let us revisit Amazon's mission. Mission: Amazon is guided by four principles: customer obsession rather than competitor focus, passion for invention, commitment to operational excellence, and long-term thinking. Participants: Therefore any improvement in the marketplace should be in sync with this thought process. Participants in the marketplace have both buyers and sellers. We can improve the platform either of them or both of them. **Wh"

    Nithesh S. - "Before getting into the solution aspect, let us revisit Amazon's mission. Mission: Amazon is guided by four principles: customer obsession rather than competitor focus, passion for invention, commitment to operational excellence, and long-term thinking. Participants: Therefore any improvement in the marketplace should be in sync with this thought process. Participants in the marketplace have both buyers and sellers. We can improve the platform either of them or both of them. **Wh"See full answer

    Product Design
  • "How do you ensure that your process maps accurately reflect current workflows in a university?"

    Josephine F. - "How do you ensure that your process maps accurately reflect current workflows in a university?"See full answer

    Product Manager
    Behavioral
  • Google logoAsked at Google 
    Product Manager
    Product Design
  • American Express logoAsked at American Express 

    "Automated Reimbursement System 1. Clarifying Questions Scope: Will the system be applicable to all employees or only specific grades/levels? Ownership: Are we building this product internally for our own use, or is it intended for external/outsourced usage? MVP Requirements: Besides automation, what additional features or problem statements should the Minimum Viable Product (MVP) address? 2. User Segmentation Commute Expenses: e.g., m"

    Kiran R. - "Automated Reimbursement System 1. Clarifying Questions Scope: Will the system be applicable to all employees or only specific grades/levels? Ownership: Are we building this product internally for our own use, or is it intended for external/outsourced usage? MVP Requirements: Besides automation, what additional features or problem statements should the Minimum Viable Product (MVP) address? 2. User Segmentation Commute Expenses: e.g., m"See full answer

    Product Manager
    Product Design
  • Apple logoAsked at Apple 

    "Lyft mission. What do we mean by engagement here? We want higher rides , not just time spent on app. What does social mean? When we create interactions between riders. Lyft line is social. Ideas: Idea: Can we maintain interactions between riders by letting them ride with same people again? Benefit: Increases repeat rides. Idea: Giving riders an option to request a driver they rode with. Benefits: Increases social interaction between riders and drivers. Increases retention and # rides as"

    M N. - "Lyft mission. What do we mean by engagement here? We want higher rides , not just time spent on app. What does social mean? When we create interactions between riders. Lyft line is social. Ideas: Idea: Can we maintain interactions between riders by letting them ride with same people again? Benefit: Increases repeat rides. Idea: Giving riders an option to request a driver they rode with. Benefits: Increases social interaction between riders and drivers. Increases retention and # rides as"See full answer

    Product Design
    System Design
  • +8

    "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
  • Amazon logoAsked at Amazon 

    "App design experience which involved a new technology"

    Kong - "App design experience which involved a new technology"See full answer

    Product Manager
    Product Design
    +2 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
  • Rippling logoAsked at Rippling 

    "Are support tickets % an increase or an absolute increase? (Assuming absolute increase) Is the dashboard showing an increase in tickets accurate? Categories tickets Geographic area? Product area? Operational area? Seasonality? Type of ticket - Debug tickets or Help me how to do x (Did we have an influx of new customers joining? ) What type of customers ( new or existing, age with the company, history) 3"

    Sonam S. - "Are support tickets % an increase or an absolute increase? (Assuming absolute increase) Is the dashboard showing an increase in tickets accurate? Categories tickets Geographic area? Product area? Operational area? Seasonality? Type of ticket - Debug tickets or Help me how to do x (Did we have an influx of new customers joining? ) What type of customers ( new or existing, age with the company, history) 3"See full answer

    BizOps & Strategy
    Product Strategy
    +2 more
  • DoorDash logoAsked at DoorDash 

    "NPS is the Net Promoter Score. It basically measures if the users will promote or recommend our product or not. Do we have any timelines for this? Also Amazon as in the Amazon MarketPlace right? So to improve NPS, we need to improve the customer experience and keep them more engaged. So lets focus on improving engagement. Mission of Amazon - Help users get any and everything by just clicking some buttons at their doorstep. Users Demographics - Teenagers, Young Adults, Adults, Oldies Pro"

    Namrata L. - "NPS is the Net Promoter Score. It basically measures if the users will promote or recommend our product or not. Do we have any timelines for this? Also Amazon as in the Amazon MarketPlace right? So to improve NPS, we need to improve the customer experience and keep them more engaged. So lets focus on improving engagement. Mission of Amazon - Help users get any and everything by just clicking some buttons at their doorstep. Users Demographics - Teenagers, Young Adults, Adults, Oldies Pro"See full answer

    Product Manager
    Product Strategy
  • Google logoAsked at Google 

    "I would like to ask questions to the interviewer as to if the company or I as TPM have any success history handling this magnitude. Also, I will talk on my behalf to justify my experience and caliber to drive this magnitude of project to success. But, I always follow a flow-chart approach when meeting exec management where I do my home work studying the current state of the project/ pain points/ issues/ blockers and steps we have taken or planning to take next to mitigate it. Now w.r.t the flow"

    Pramod V. - "I would like to ask questions to the interviewer as to if the company or I as TPM have any success history handling this magnitude. Also, I will talk on my behalf to justify my experience and caliber to drive this magnitude of project to success. But, I always follow a flow-chart approach when meeting exec management where I do my home work studying the current state of the project/ pain points/ issues/ blockers and steps we have taken or planning to take next to mitigate it. Now w.r.t the flow"See full answer

    Technical Program Manager
    Program Sense
    +2 more
  • Product Manager
    Product Design
Showing 1381-1400 of 4029