Interview Questions

Review this list of 3,944 interview questions and answers verified by hiring managers and candidates.
  • "boolean isMatch(String s, String p) { int i=0; int j=0; int sID=-1; int prevM=-1; while(i<s.length()){ if(j<p.length() && (s.charAt(i)==p.charAt(j) || p.charAt(j)=='?')){ i++; j++; }else if(j<p.length() && p.charAt(j)=='*'){ sID=j; prevM=i; j++; }else if(sID!=-1){ j=sID+1; prevM++; i=prevM; }else{ return false; } } while(j<p.length() && p.charAt(j)=='*') j++; if(i!=s.length() || j!=p.leng"

    Ravi C. - "boolean isMatch(String s, String p) { int i=0; int j=0; int sID=-1; int prevM=-1; while(i<s.length()){ if(j<p.length() && (s.charAt(i)==p.charAt(j) || p.charAt(j)=='?')){ i++; j++; }else if(j<p.length() && p.charAt(j)=='*'){ sID=j; prevM=i; j++; }else if(sID!=-1){ j=sID+1; prevM++; i=prevM; }else{ return false; } } while(j<p.length() && p.charAt(j)=='*') j++; if(i!=s.length() || j!=p.leng"See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
  • "i said there is hashed, clustered, non-clustered"

    Erjan G. - "i said there is hashed, clustered, non-clustered"See full answer

    Data Engineer
    Technical
  • " function diffBetweenTwoStrings(source, target) { /** @param source: string @param target: string @return: string[] */ let dp = new Array(source.length+1).fill().map(() => Array(target.length+1).fill(0)) for (let i = source.length; i>= 0; i--) { for (let j = target.length; j>= 0; j--) { if (i === source.length) { dpi = target.length - j } else if (j === target.length) { dpi = sou"

    Matthew K. - " function diffBetweenTwoStrings(source, target) { /** @param source: string @param target: string @return: string[] */ let dp = new Array(source.length+1).fill().map(() => Array(target.length+1).fill(0)) for (let i = source.length; i>= 0; i--) { for (let j = target.length; j>= 0; j--) { if (i === source.length) { dpi = target.length - j } else if (j === target.length) { dpi = sou"See full answer

    Data Structures & Algorithms
    Coding
  • Google logoAsked at Google 
    Product Designer
    Technical
  • Meta (Facebook) logoAsked at Meta (Facebook) 

    "i asked if she meant operations business analytics metrics.. she clarified that she meant operational/stability metrics.. i explained that i used dynatrace to monitor the product and she said i want to know about SLAs etc. she was looking for the words SLA SLO and SLI.. i then explained SLA 99.99% various SLO's contributed to it like system uptime, continous testing of business functions, and incident mgmt metrics."

    Sayee M. - "i asked if she meant operations business analytics metrics.. she clarified that she meant operational/stability metrics.. i explained that i used dynatrace to monitor the product and she said i want to know about SLAs etc. she was looking for the words SLA SLO and SLI.. i then explained SLA 99.99% various SLO's contributed to it like system uptime, continous testing of business functions, and incident mgmt metrics."See full answer

    Technical Program Manager
    Execution
    +1 more
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Dell logoAsked at Dell 

    "Identify Target Market: Identify the target market for Dell’s products. Consider demographics, psychographics, and other characteristics of potential customers. Set Objectives: Establish the objectives for the product marketing strategy. These objectives should be measurable and achievable. Develop Brand Message: Develop a unique, memorable brand message for Dell’s products that communicates the company’s value proposition and resonates with the target market. Identify Channels: Iden"

    Shivam S. - "Identify Target Market: Identify the target market for Dell’s products. Consider demographics, psychographics, and other characteristics of potential customers. Set Objectives: Establish the objectives for the product marketing strategy. These objectives should be measurable and achievable. Develop Brand Message: Develop a unique, memorable brand message for Dell’s products that communicates the company’s value proposition and resonates with the target market. Identify Channels: Iden"See full answer

    Product Marketing Manager
    Product Strategy
  • "On the topic of personalisation the main complexity comes from stitching the data together so that you can create a curated and hopefully personal experience for the consumers (e.g. product offer that match user's interest). Since the existing technology we use, especially on the app, do not support some of of the BE foundations needed to personalize omni-channel the main complexity is in integrating with the BE services especially creating connected data pipelines. My main contribution is in"

    Delyan P. - "On the topic of personalisation the main complexity comes from stitching the data together so that you can create a curated and hopefully personal experience for the consumers (e.g. product offer that match user's interest). Since the existing technology we use, especially on the app, do not support some of of the BE foundations needed to personalize omni-channel the main complexity is in integrating with the BE services especially creating connected data pipelines. My main contribution is in"See full answer

    Behavioral
    Technical
  • Google logoAsked at Google 

    "Let's start by describing a time machine, which is a device that allows somebody to move backwards or forwards in time. The movement could be physical movement, wherein the user gets physically transported to a different timeline, or it could be getting a glimpse into a different timeline, like wearing a VR headset and getting to experience a different timeline without physically being there. For the purpose of this exercise, I will assume, this time machine allows a person to physically trans"

    Akshay R. - "Let's start by describing a time machine, which is a device that allows somebody to move backwards or forwards in time. The movement could be physical movement, wherein the user gets physically transported to a different timeline, or it could be getting a glimpse into a different timeline, like wearing a VR headset and getting to experience a different timeline without physically being there. For the purpose of this exercise, I will assume, this time machine allows a person to physically trans"See full answer

    Product Manager
    Product Strategy
    +1 more
  • LinkedIn logoAsked at LinkedIn 

    "LinkedIn is a Corporate/Professional Networking platform. We will analyze the following factors before the launch: How many people of the demography are on LinkedIn I will make sure Learning platform content is approved, verified and required for interviewing for a specific role in a corporate Create a Learning Community where people who opt for the LinkedIn learning platform share their experience of the completed course and how it helped them get an interview opportunity with the comp"

    Akshat A. - "LinkedIn is a Corporate/Professional Networking platform. We will analyze the following factors before the launch: How many people of the demography are on LinkedIn I will make sure Learning platform content is approved, verified and required for interviewing for a specific role in a corporate Create a Learning Community where people who opt for the LinkedIn learning platform share their experience of the completed course and how it helped them get an interview opportunity with the comp"See full answer

    Product Strategy
  • BizOps & Strategy
    Behavioral
  • Microsoft logoAsked at Microsoft 
    Product Manager
    Product Design
    +1 more
  • Meta (Facebook) logoAsked at Meta (Facebook) 

    "if decreasing arr, start from end and keep checking if next element increases by 1 or not. wherever not, put that value there."

    Rishabh R. - "if decreasing arr, start from end and keep checking if next element increases by 1 or not. wherever not, put that value there."See full answer

    Data Structures & Algorithms
    Coding
    +1 more
  • "Facebook groups operate to inculcate community interaction. I would deep dive into the current user behavior to understand a lot more User journey User age groups that show most activity Usage of features Dominant topics Any other data point that will provide insight to usage statics Based on above findings, I would devise a feature that would target increasing retention/time spent on the groups by incentivizing high performing user and/or user groups. Some examples of features"

    Priyanka V. - "Facebook groups operate to inculcate community interaction. I would deep dive into the current user behavior to understand a lot more User journey User age groups that show most activity Usage of features Dominant topics Any other data point that will provide insight to usage statics Based on above findings, I would devise a feature that would target increasing retention/time spent on the groups by incentivizing high performing user and/or user groups. Some examples of features"See full answer

    Product Design
  • Product Marketing Manager
    Execution
    +2 more
  • Technical Program Manager
    Behavioral
  • Stripe logoAsked at Stripe 
    Product Marketing Manager
  • Product Manager
    Behavioral
  • Meta (Facebook) logoAsked at Meta (Facebook) 
    Product Manager
    Product Design
  • "How much does the Empire State Building weigh? I will estimate the weight of the Empire State Building using a structured approach. I’ll start with clarifying questions, define an equation, make reasonable assumptions, perform calculations, and address trade-offs and potential errors. Clarifying Questions To refine the scope, I considered: How many floors does the Empire State Building have? What is the area per floor? What materials are used (e.g., steel, concrete)"

    Nishtha - "How much does the Empire State Building weigh? I will estimate the weight of the Empire State Building using a structured approach. I’ll start with clarifying questions, define an equation, make reasonable assumptions, perform calculations, and address trade-offs and potential errors. Clarifying Questions To refine the scope, I considered: How many floors does the Empire State Building have? What is the area per floor? What materials are used (e.g., steel, concrete)"See full answer

    Estimation
  • Dropbox logoAsked at Dropbox 
    Execution
    Analytical
Showing 2761-2780 of 3944