Skip to main content

Interview Questions

Review this list of 4,415 interview questions and answers verified by hiring managers and candidates.
  • Asana logoAsked at Asana 

    "This is a Design a Product question. For this, we'll want to follow the formula for success: Ask clarifying questions Identify user types, behaviors, and pain points State the goal and use cases List current solutions Improvements / net new solutions Evaluate and select solutions Measure Success Summarize Ask clarifying questions It's important to get clarity on anything unclear. Asking questions also helps us limit scope early on s"

    Exponent - "This is a Design a Product question. For this, we'll want to follow the formula for success: Ask clarifying questions Identify user types, behaviors, and pain points State the goal and use cases List current solutions Improvements / net new solutions Evaluate and select solutions Measure Success Summarize Ask clarifying questions It's important to get clarity on anything unclear. Asking questions also helps us limit scope early on s"See full answer

    Product Manager
    Product Design
  • "import random def coin_flip(): x=4*[0]+[1] res=[] for i in range(20): res.append(random.choice(x)) return res res=[0,0] # [head,tail] for j in range(1000): temp=coin_flip() res[0]+=sum(temp) #head res[1]+=(20-sum(temp)) #tail"

    Alireza K. - "import random def coin_flip(): x=4*[0]+[1] res=[] for i in range(20): res.append(random.choice(x)) return res res=[0,0] # [head,tail] for j in range(1000): temp=coin_flip() res[0]+=sum(temp) #head res[1]+=(20-sum(temp)) #tail"See full answer

    Coding
  • Meta logoAsked at Meta 

    "As I understand it, you’d like me to design a mobile native application (for iOS or Android) that helps people manipulate data similar to that of Microsoft Excel or Google Sheets. You can add and import data, edit it, run calculations, regressions, and generate charts and graphs. If it’s ok with you, I’d like to confine the design to iOS, and based on my knowledge of how a product manager uses a spreadsheet. I’d like to approach this problem by first identifying the goal of the app. Since we’r"

    David I. - "As I understand it, you’d like me to design a mobile native application (for iOS or Android) that helps people manipulate data similar to that of Microsoft Excel or Google Sheets. You can add and import data, edit it, run calculations, regressions, and generate charts and graphs. If it’s ok with you, I’d like to confine the design to iOS, and based on my knowledge of how a product manager uses a spreadsheet. I’d like to approach this problem by first identifying the goal of the app. Since we’r"See full answer

    Product Design
  • Behavioral
    Technical
  • Meta logoAsked at Meta 

    "Coded the solution using this approach that is frequency table and counting. it is Leetcode 791"

    Anonymous Porcupine - "Coded the solution using this approach that is frequency table and counting. it is Leetcode 791"See full answer

    Mobile Engineer
    Coding
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Google logoAsked at Google 

    "Clarifying questions: Location: Mountian view campus. [Google has campuses across the world and for the interview purpose design the product for Mountian view campus] Assumption : Scope of the design is on-campus travel purpose between buildings. Product: Digital product Target Customer segments Meetings: Googlers who takes bikes to commute to a different build for meetings. a. Goal: On-Time for meetings Lunch or breakfast: Lunch spot co-ordinat"

    S K. - "Clarifying questions: Location: Mountian view campus. [Google has campuses across the world and for the interview purpose design the product for Mountian view campus] Assumption : Scope of the design is on-campus travel purpose between buildings. Product: Digital product Target Customer segments Meetings: Googlers who takes bikes to commute to a different build for meetings. a. Goal: On-Time for meetings Lunch or breakfast: Lunch spot co-ordinat"See full answer

    Product Design
  • Freshworks logoAsked at Freshworks 
    Product Manager
    Product Design
  • Amazon logoAsked at Amazon 
    Software Engineer
    Behavioral
  • Product Manager
    Behavioral
    +1 more
  • "Timeline and trends analyze period when the CTR was down Check external factors Seasonality and holidays Competitive factors Industry-wide changes Ad performance analysis Ad copy Product feed quality Pricing Promotions and discounts Audience targeting and segmentation Specific demographics? User segment? Device across mobile, desktop, and tablet Ad placement and auction insights Anything changed with ad placement?"

    Varun J. - "Timeline and trends analyze period when the CTR was down Check external factors Seasonality and holidays Competitive factors Industry-wide changes Ad performance analysis Ad copy Product feed quality Pricing Promotions and discounts Audience targeting and segmentation Specific demographics? User segment? Device across mobile, desktop, and tablet Ad placement and auction insights Anything changed with ad placement?"See full answer

    Analytical
    Execution
  • +1

    "Let's assume that the school furniture includes Table, Chair and Whiteboard. Now, the first step is to find the number of students in the U.S Let's assume that the population of the U.S is 300M. Let's assume that Americans start education at 5 years old till 25 for undergrad. It means Americans spend 20 years of their life in school. Average living years for people is 80. 20/80 * 100 = 25%. It means 25% of the American population attends college. 25/100*300M = 75M. So, there are 75M students"

    Anonymous Shrimp - "Let's assume that the school furniture includes Table, Chair and Whiteboard. Now, the first step is to find the number of students in the U.S Let's assume that the population of the U.S is 300M. Let's assume that Americans start education at 5 years old till 25 for undergrad. It means Americans spend 20 years of their life in school. Average living years for people is 80. 20/80 * 100 = 25%. It means 25% of the American population attends college. 25/100*300M = 75M. So, there are 75M students"See full answer

    Estimation
  • Infosys logoAsked at Infosys 

    "In Java, GC is the process of automatically identifying and reclaming memory occupied by objects that are no longer reachable.. the process involves the 3 steps Mark phase -- identify the objects that are still in use. i.e reachable sweep Phase -- removes the unreachable objects compact phase -- rearragnes objects to prevent fragmentation 4 types of Garbage collection Serial GC -- single threaded simple and compacting -- best for small applications Parrallel GC -- throughput GC"

    Sue G. - "In Java, GC is the process of automatically identifying and reclaming memory occupied by objects that are no longer reachable.. the process involves the 3 steps Mark phase -- identify the objects that are still in use. i.e reachable sweep Phase -- removes the unreachable objects compact phase -- rearragnes objects to prevent fragmentation 4 types of Garbage collection Serial GC -- single threaded simple and compacting -- best for small applications Parrallel GC -- throughput GC"See full answer

    Software Engineer
    Concept
  • "Construct a min-heap either inplace, or by making a copy of the array and then applying heapify on that copy. This is done in O(n) time. Maintain two zero-initialised variables - sum and count. Keep popping off the heap while sum < k, and update count. In the worst case you will have to do n pops, and each pop is O(log n), so the algorithm would take O(n log n) in total. Space complexity depends on whether you're allowed to modify inplace or not, so either O(1) or O(n) respectively."

    Anonymous Wolf - "Construct a min-heap either inplace, or by making a copy of the array and then applying heapify on that copy. This is done in O(n) time. Maintain two zero-initialised variables - sum and count. Keep popping off the heap while sum < k, and update count. In the worst case you will have to do n pops, and each pop is O(log n), so the algorithm would take O(n log n) in total. Space complexity depends on whether you're allowed to modify inplace or not, so either O(1) or O(n) respectively."See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
  • "If I get to live my life again I will try to be more confident, it took me a life time to get some confidence and to be what I am today, I ll try to be less dependent on others, I ll work for women empowerment."

    Umaira K. - "If I get to live my life again I will try to be more confident, it took me a life time to get some confidence and to be what I am today, I ll try to be less dependent on others, I ll work for women empowerment."See full answer

    Behavioral
  • "Do you have questions you want to ask me or any feedback you want to provide about the interview process? Tell me about your role & day to day basis of work in your current project in current company."

    Kuldeep Y. - "Do you have questions you want to ask me or any feedback you want to provide about the interview process? Tell me about your role & day to day basis of work in your current project in current company."See full answer

    Behavioral
  • "We have detailed monitoring and meetings dedicated to discussing the health of the conversion business. When I’ve seen drops in the conversion rate, the first thing I do to diagnose the issue is to work backwards through the conversion funnel. For example, if I see a drop in user adoption rates, I will evaluate if there are any product experiments that could be negatively affecting adoption. Likewise, was there a technical outage that could have caused a drop? Segmentation and cohorting is also"

    Katherine B. - "We have detailed monitoring and meetings dedicated to discussing the health of the conversion business. When I’ve seen drops in the conversion rate, the first thing I do to diagnose the issue is to work backwards through the conversion funnel. For example, if I see a drop in user adoption rates, I will evaluate if there are any product experiments that could be negatively affecting adoption. Likewise, was there a technical outage that could have caused a drop? Segmentation and cohorting is also"See full answer

    Business Analyst
    Data Analysis
    +2 more
  • Business Analyst
    Data Analysis
    +2 more
  • Meta logoAsked at Meta 

    "Facebook is now more safe app it designed for all purposes advertise your collection and doctor's advise there clients also and more amazing things we do. I don't understand this questions"

    Shaheen B. - "Facebook is now more safe app it designed for all purposes advertise your collection and doctor's advise there clients also and more amazing things we do. I don't understand this questions"See full answer

    Product Design
Showing 2921-2940 of 4415