Skip to main content

Interview Questions

Review this list of 4,411 interview questions and answers verified by hiring managers and candidates.
  • Microsoft logoAsked at Microsoft 
    Security Engineer
    Coding
    +1 more
  • "Let me tell you about a time when I learnt the craft of writing and sending emails. I worked at an early stage startup that does voice recording and transcription and one of my primary responsibilities was to engage with existing customers. At that time, there were a around 10k users in total. I decided to split the entire user base into cohorts. Users who've recorded and transcribed atleast 10 words within 3 months Users who've recorded and transcribed atleast 10 words within 3- 6 month"

    Anonymous Crayfish - "Let me tell you about a time when I learnt the craft of writing and sending emails. I worked at an early stage startup that does voice recording and transcription and one of my primary responsibilities was to engage with existing customers. At that time, there were a around 10k users in total. I decided to split the entire user base into cohorts. Users who've recorded and transcribed atleast 10 words within 3 months Users who've recorded and transcribed atleast 10 words within 3- 6 month"See full answer

    Behavioral
    Project Management
  • "hi"

    Sean L. - "hi"See full answer

    Product Design
    Technical
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Shopify logoAsked at Shopify 

    "This is one of the core behavioral questions you should expect in any interview. For this behavioral question in particular, we like to break things down into two parts: Listing the weakness How you're actively trying to improve For this solution, let's say our biggest weakness is being too detail oriented. Here's one potential way to answer this question: > My biggest challenge is I sometimes am too detail oriented that I miss the forest from the trees. This can cause me to go down rabbit"

    Exponent - "This is one of the core behavioral questions you should expect in any interview. For this behavioral question in particular, we like to break things down into two parts: Listing the weakness How you're actively trying to improve For this solution, let's say our biggest weakness is being too detail oriented. Here's one potential way to answer this question: > My biggest challenge is I sometimes am too detail oriented that I miss the forest from the trees. This can cause me to go down rabbit"See full answer

    Product Manager
    Behavioral
  • Meta logoAsked at Meta 
    Technical Program Manager
    Product Design
    +2 more
  • AstraZeneca logoAsked at AstraZeneca 
    Technical Program Manager
    Behavioral
  • Google logoAsked at Google 

    "User: Self Driving Ride Sharing Car Companies (consdering waymo uasecase for google) Needs Identify the rider and allow only authorized rider to enter Emergency use case (allow maintenance team to enter in case of emergency) Avoid accidents with nearby vehicles Avoid blindspots with kids / pets nearby Solutions Biometrics / qr code scanning to identify the rider / maintenance team Alerting the emergency team in case of accident / fire etc. Sensors / camera in the car Remote Locking"

    P D. - "User: Self Driving Ride Sharing Car Companies (consdering waymo uasecase for google) Needs Identify the rider and allow only authorized rider to enter Emergency use case (allow maintenance team to enter in case of emergency) Avoid accidents with nearby vehicles Avoid blindspots with kids / pets nearby Solutions Biometrics / qr code scanning to identify the rider / maintenance team Alerting the emergency team in case of accident / fire etc. Sensors / camera in the car Remote Locking"See full answer

    Product Design
  • Deliveroo logoAsked at Deliveroo 

    "This is a straightforward Expansion problem, since we're expanding to a new market. This is the formula you should use when tackling these types of interview questions: Ask clarifying questions Perform user analysis Market risk analysis State goals Perform channel analysis Prioritize growth channels Strategy Summarize Without further ado, let's dive in! Ask clarifying questions It's important to ask questions in advance to create a"

    Exponent - "This is a straightforward Expansion problem, since we're expanding to a new market. This is the formula you should use when tackling these types of interview questions: Ask clarifying questions Perform user analysis Market risk analysis State goals Perform channel analysis Prioritize growth channels Strategy Summarize Without further ado, let's dive in! Ask clarifying questions It's important to ask questions in advance to create a"See full answer

    Product Manager
    Product Strategy
  • Business Analyst
    Data Analysis
    +2 more
  • +1

    "The product the user bought The category the product belongs to The name of the customer The address of the customer The payment option selected by the customer The delivery option The date and time of purchase Did the customer use the search filter or scan through different pages before they could find the product they want to buy"

    Olawale F. - "The product the user bought The category the product belongs to The name of the customer The address of the customer The payment option selected by the customer The delivery option The date and time of purchase Did the customer use the search filter or scan through different pages before they could find the product they want to buy"See full answer

    Analytical
  • Meta logoAsked at Meta 
    Machine Learning Engineer
    Concept
  • "Disclaimer: Just an Overview. Let us consider 2 Systems: System A: Includes the Bank Account numbered 123 System B: Includes the Bus Transit Card Numbered 456. Our Customer named: Tom Taking the journey step by step: Product Design & Workflow: System B will have an account number linked with it, which will be maintained by the bus operator. This account can be linked with the Bank Details of the user, using the beneficiary adding mechanism. System A's bank account number will be linked w"

    Biplab R. - "Disclaimer: Just an Overview. Let us consider 2 Systems: System A: Includes the Bank Account numbered 123 System B: Includes the Bus Transit Card Numbered 456. Our Customer named: Tom Taking the journey step by step: Product Design & Workflow: System B will have an account number linked with it, which will be maintained by the bus operator. This account can be linked with the Bank Details of the user, using the beneficiary adding mechanism. System A's bank account number will be linked w"See full answer

    Product Design
    Technical
  • "Clarification Question what does it mean by the different markets? Emerging market, developing market, or developed market. Technical Front Low bandwidth or network can affect the performance Latency can be high if the server is not placed near to the regions Business Front The average number of people who indulge in corporate or white collar jobs is very less. Jobs in the local market is very less People who don't have smartphone/desktop excess extensively may not be present on the"

    Anonymous Muskox - "Clarification Question what does it mean by the different markets? Emerging market, developing market, or developed market. Technical Front Low bandwidth or network can affect the performance Latency can be high if the server is not placed near to the regions Business Front The average number of people who indulge in corporate or white collar jobs is very less. Jobs in the local market is very less People who don't have smartphone/desktop excess extensively may not be present on the"See full answer

    Analytical
    Technical
  • System Design
    Technical
  • Adobe logoAsked at Adobe 

    "import java.util.Arrays; import java.util.stream.Collectors; class Main { // Recursive function to print all combinations of numbers from \i\ to \n\ // having sum \n. The index\ denotes the next free slot in the output array \out\ public static void printCombinations(int i, int n, int[] out, int index) { // if the sum becomes n, print the combination if (n == 0) { System.out.println(Arrays.stream(out).limit(index) .boxed().collect(Collectors.toList())); } // start from the previous e"

    Relynn may silver B. - "import java.util.Arrays; import java.util.stream.Collectors; class Main { // Recursive function to print all combinations of numbers from \i\ to \n\ // having sum \n. The index\ denotes the next free slot in the output array \out\ public static void printCombinations(int i, int n, int[] out, int index) { // if the sum becomes n, print the combination if (n == 0) { System.out.println(Arrays.stream(out).limit(index) .boxed().collect(Collectors.toList())); } // start from the previous e"See full answer

    Software Engineer
    Data Structures & Algorithms
    +4 more
  • Microsoft logoAsked at Microsoft 
    Product Manager
    Technical
  • Amazon logoAsked at Amazon 

    "Ability for system to keep in service without much degradation in SLA or adding significant latency."

    Anonymous Narwhal - "Ability for system to keep in service without much degradation in SLA or adding significant latency."See full answer

    Solutions Architect
    Technical
  • "I look at a product’s quality through a combination of user impact, business outcomes, and technical robustness. 1) A good product solves a real user problem effectively and intuitively—usability, performance, and accessibility. I look at user feedback, behavioral data, and adoption metrics to validate this. 2) A good product aligns with strategic business goals Growing engagement, generating revenue, or supporting long-term scalability. 3) I assess how maintainable and"

    Anonymous Dingo - "I look at a product’s quality through a combination of user impact, business outcomes, and technical robustness. 1) A good product solves a real user problem effectively and intuitively—usability, performance, and accessibility. I look at user feedback, behavioral data, and adoption metrics to validate this. 2) A good product aligns with strategic business goals Growing engagement, generating revenue, or supporting long-term scalability. 3) I assess how maintainable and"See full answer

    Behavioral
Showing 3681-3700 of 4411