Skip to main content

Interview Questions

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

    "This is one of the core behavioral questions that you should expect to cover in any interview. In particular, it asks you to justify why you want to work at a specific company that you've applied for. There's no right answer for this, however we do recommend you list at least three distinct reasons. Here's an example of what you might say: > Great question! There's so many reasons, but I'll keep it to my top three.I love how intricate and delicate the payments space is and I want to work in this"

    Exponent - "This is one of the core behavioral questions that you should expect to cover in any interview. In particular, it asks you to justify why you want to work at a specific company that you've applied for. There's no right answer for this, however we do recommend you list at least three distinct reasons. Here's an example of what you might say: > Great question! There's so many reasons, but I'll keep it to my top three.I love how intricate and delicate the payments space is and I want to work in this"See full answer

    Product Manager
    Behavioral
  • Google logoAsked at Google 
    5 answers
    +2

    "Is it innovative Is it user friendly ? Is it honest ? Apple Phones click on all categories above."

    Googlepm 1. - "Is it innovative Is it user friendly ? Is it honest ? Apple Phones click on all categories above."See full answer

    Product Design
  • Google logoAsked at Google 
    Add answer
    System Design
    Technical
  • Google logoAsked at Google 
    Add answer
    Product Design
  • DoorDash logoAsked at DoorDash 
    1 answer

    "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
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Google logoAsked at Google 
    1 answer

    "Full travel packages. Flight + hotel + experiences. They have all the data in the world to scrape to see some of the top places to visit in each city or country. Coupled with the ability to find the cheapest flights to make these trips affordable."

    Patrick K. - "Full travel packages. Flight + hotel + experiences. They have all the data in the world to scrape to see some of the top places to visit in each city or country. Coupled with the ability to find the cheapest flights to make these trips affordable."See full answer

    Product Manager
    Product Design
    +1 more
  • Capital One logoAsked at Capital One 
    2 answers

    "Hi, is this question part of the Powerday interview or the Mini-case interview?"

    Krutarth S. - "Hi, is this question part of the Powerday interview or the Mini-case interview?"See full answer

    Product Manager
    Product Strategy
  • TikTok logoAsked at TikTok 
    3 answers

    "Use face recognition as a preliminary step"

    Anand T. - "Use face recognition as a preliminary step"See full answer

    Product Manager
    Product Strategy
  • Google logoAsked at Google 
    2 answers

    "Mobile typically involves creating designs optimized for smaller screens and touch-based interactions, while desktop designs are optimized for larger screens and mouse-based interactions. Mobile Pros: Greater accessibility: Mobile apps can be used anywhere, as long as the user has their phone. This makes them convenient for people whose rhythm of life is relatively high and requires quick and convenient access to modern technology, services, and gadgets. Wider audience: There are"

    Ben G. - "Mobile typically involves creating designs optimized for smaller screens and touch-based interactions, while desktop designs are optimized for larger screens and mouse-based interactions. Mobile Pros: Greater accessibility: Mobile apps can be used anywhere, as long as the user has their phone. This makes them convenient for people whose rhythm of life is relatively high and requires quick and convenient access to modern technology, services, and gadgets. Wider audience: There are"See full answer

    Product Designer
    Product Strategy
  • Adobe logoAsked at Adobe 

    Permutations

    IDE
    Medium
    3 answers

    "function permute(nums) { if (nums.length <= 1) { return [nums]; } const prevPermutations = permute(nums.slice(0, nums.length-1)); const currentNum = nums[nums.length-1]; const permutations = new Set(); for (let prev of prevPermutations) { for (let i=0; i < prev.length; i++) { permutations.add([...prev.slice(0, i), currentNum, ...prev.slice(i)]); } permutations.add([...prev, currentNum]); } return [...permutations]"

    Tiago R. - "function permute(nums) { if (nums.length <= 1) { return [nums]; } const prevPermutations = permute(nums.slice(0, nums.length-1)); const currentNum = nums[nums.length-1]; const permutations = new Set(); for (let prev of prevPermutations) { for (let i=0; i < prev.length; i++) { permutations.add([...prev.slice(0, i), currentNum, ...prev.slice(i)]); } permutations.add([...prev, currentNum]); } return [...permutations]"See full answer

    Software Engineer
    Data Structures & Algorithms
    +3 more
  • Adobe logoAsked at Adobe 
    2 answers

    "simply check its size if the size if the size is greater than n then yes it has duplicate"

    Kunal kumar S. - "simply check its size if the size if the size is greater than n then yes it has duplicate"See full answer

    Machine Learning Engineer
    Data Structures & Algorithms
    +2 more
  • Asana logoAsked at Asana 
    6 answers
    +3

    "Clarification Questions: Can we define and describe office ? my current office ( IT ) , or government offices, starup offices, etc I assume we are desgining a refrigerator for my current office. It is an office with multiple floors with canteen on one of the floors. There is seating arrangement for around 200 - 300 on every floor. Generally there is maximum usage during lunch time and then snacks time since part of us dont have breakfast and dinner in office. Is there any cost limitation"

    Darshana W. - "Clarification Questions: Can we define and describe office ? my current office ( IT ) , or government offices, starup offices, etc I assume we are desgining a refrigerator for my current office. It is an office with multiple floors with canteen on one of the floors. There is seating arrangement for around 200 - 300 on every floor. Generally there is maximum usage during lunch time and then snacks time since part of us dont have breakfast and dinner in office. Is there any cost limitation"See full answer

    Product Manager
    Product Design
  • Apple logoAsked at Apple 

    Coin Change

    IDE
    Medium
    12 answers
    +9

    "The example given is wrong. The 2nd test case should have answer 3, as we can get to 6 by using 3 coins of denomination 2."

    Anmol R. - "The example given is wrong. The 2nd test case should have answer 3, as we can get to 6 by using 3 coins of denomination 2."See full answer

    Backend Engineer
    Coding
    +4 more
  • Estimation
  • Google logoAsked at Google 
    2 answers

    "Assuming we have to consider sms sent by people & not company messages, promotions etc Total population of USA- 300 mil Poverty rate- 10% Remaining 270 mil Avg members per household- 4 Total households- approx 70 mil Kids(25) prefer whatsapp over traditional messaging nowadays unless absolutely necessary, so fo"

    Debajyoti B. - "Assuming we have to consider sms sent by people & not company messages, promotions etc Total population of USA- 300 mil Poverty rate- 10% Remaining 270 mil Avg members per household- 4 Total households- approx 70 mil Kids(25) prefer whatsapp over traditional messaging nowadays unless absolutely necessary, so fo"See full answer

    Estimation
  • Google logoAsked at Google 
    Add answer
    Technical
  • "Clarification Question: First I would like to clarify my understanding of AirBnB. AirBnB is an online marketplace that lets people rent out their properties or spare rooms to guests. Airbnb takes 3% commission from hosts and around 6 to 12% from guests. Now, I believe payment collection experience is related to the host so they can visualize everything around their payments. Reason for designing this experience - to provide a better collection experience for hosts Marke"

    D S. - "Clarification Question: First I would like to clarify my understanding of AirBnB. AirBnB is an online marketplace that lets people rent out their properties or spare rooms to guests. Airbnb takes 3% commission from hosts and around 6 to 12% from guests. Now, I believe payment collection experience is related to the host so they can visualize everything around their payments. Reason for designing this experience - to provide a better collection experience for hosts Marke"See full answer

    Product Design
  • +13

    "Top three most important variables Uber could use to estimate the ETA for passenger pickup, beyond the ETA on Google Maps can be: Driver related - sometimes driver cancel rides after they are assigned or agree to pickup, especially at odd hours. Sometimes, they can also cancel midway through their journeys. Other factor can be that they drive slower or faster than google maps ETA. Car related - The car may be old or not maintained well than other cars. It can be CNG, Diesel, petrol or elec"

    Malvika S. - "Top three most important variables Uber could use to estimate the ETA for passenger pickup, beyond the ETA on Google Maps can be: Driver related - sometimes driver cancel rides after they are assigned or agree to pickup, especially at odd hours. Sometimes, they can also cancel midway through their journeys. Other factor can be that they drive slower or faster than google maps ETA. Car related - The car may be old or not maintained well than other cars. It can be CNG, Diesel, petrol or elec"See full answer

    Analytical
  • "Me: Thanks for this. I have a few clarification questions- what would be the museum? Is this an art museum? A museum with ancient things from across the globe? Is there a specific theme? Interviewer: You can consider that this is a modern art museum like MOMA in New York. Me: Thanks -- and to make sure, do you have any additional specifications in what this product wants to tackle? Specifically, are we trying to make the museum experience better, the ticketing experience better or anything els"

    Talles S. - "Me: Thanks for this. I have a few clarification questions- what would be the museum? Is this an art museum? A museum with ancient things from across the globe? Is there a specific theme? Interviewer: You can consider that this is a modern art museum like MOMA in New York. Me: Thanks -- and to make sure, do you have any additional specifications in what this product wants to tackle? Specifically, are we trying to make the museum experience better, the ticketing experience better or anything els"See full answer

    Product Design
Showing 1861-1880 of 4415