Interview Questions

Review this list of 4,138 interview questions and answers verified by hiring managers and candidates.
  • +1

    "Clarifying Questions : By reducing bandwidth , do you mean reducing the total size of video transfer reduction ? Ans Yes Is it ok to reduce the resolution by reducing the bandwidth : Ans May be yes and no Any app in particular you are looking forward which could help talking from its standpoint : Ans : Youtube Assumptions : Youtube has a compression algorithm which can still be made better with the evolution of technologies Solutions ( prioritised list ) Improve the compressio"

    Kk - "Clarifying Questions : By reducing bandwidth , do you mean reducing the total size of video transfer reduction ? Ans Yes Is it ok to reduce the resolution by reducing the bandwidth : Ans May be yes and no Any app in particular you are looking forward which could help talking from its standpoint : Ans : Youtube Assumptions : Youtube has a compression algorithm which can still be made better with the evolution of technologies Solutions ( prioritised list ) Improve the compressio"See full answer

    Technical
  • Microsoft logoAsked at Microsoft 

    "I think AI such as ChatGPT seemed to spit out its answers fast and instinctively, hence proving its efficiency but in the recent versions it seems to have acquired reasoning skills which was revealed 'transparently' to users. This new, reasoning skills introduce a small delay in its response and explains what it does during the delay but I do not really think that it is "thinking" any differently than before, except that it is constrained by some purported rules when asked to summarise certain b"

    Louisa C. - "I think AI such as ChatGPT seemed to spit out its answers fast and instinctively, hence proving its efficiency but in the recent versions it seems to have acquired reasoning skills which was revealed 'transparently' to users. This new, reasoning skills introduce a small delay in its response and explains what it does during the delay but I do not really think that it is "thinking" any differently than before, except that it is constrained by some purported rules when asked to summarise certain b"See full answer

    Customer Success Manager
    Behavioral
  • DocuSign logoAsked at DocuSign 

    "The real discussion was very much similar o what exposed at https://www.tryexponent.com/courses/software-engineering/system-design/design-rate-limiter, but - as I commented the video - the real interviewer wasn't so naive to do not forgive the client identification only because IP. I had to introduce glimpses of https://en.wikipedia.org/wiki/Knowyourcustomer practice, I quoted JWT. I proposed a logical map of id addressing a "deque" of time-stamps of requests, with a threshold for the deque an"

    Luca D. - "The real discussion was very much similar o what exposed at https://www.tryexponent.com/courses/software-engineering/system-design/design-rate-limiter, but - as I commented the video - the real interviewer wasn't so naive to do not forgive the client identification only because IP. I had to introduce glimpses of https://en.wikipedia.org/wiki/Knowyourcustomer practice, I quoted JWT. I proposed a logical map of id addressing a "deque" of time-stamps of requests, with a threshold for the deque an"See full answer

    Software Engineer
    System Design
  • Business Analyst
    Data Analysis
    +3 more
  • Agoda logoAsked at Agoda 

    "CQs: Uber - which business? → Ride hailing Business - B2B or B2C? → B2C Geo - India Revenue/profit → revenue Revenue sources Rides - bike, car, shuttle Ads Partnerships Rides revenue = number of rides x average price Ads revenue = ad impressions x conversion rate x CPC Partnerships = number of partnerships x average income Considering I am a PM, do you want me to focus on tech focused enablement only? No, assume you are a VP of product *"

    Sumit P. - "CQs: Uber - which business? → Ride hailing Business - B2B or B2C? → B2C Geo - India Revenue/profit → revenue Revenue sources Rides - bike, car, shuttle Ads Partnerships Rides revenue = number of rides x average price Ads revenue = ad impressions x conversion rate x CPC Partnerships = number of partnerships x average income Considering I am a PM, do you want me to focus on tech focused enablement only? No, assume you are a VP of product *"See full answer

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

  • Instacart logoAsked at Instacart 
    +7

    "Assumptions Instacart for Business is core Instacart with additional features and capabilities tailored to businesses. Users Potential user segments: Office managers (Focus here) Entrepreneurs/small business owners Restauranteurs Opportunities (pain points, needs, problems) Many places don’t offer same-day shipping. Inconvenient to physically go out and purchase these items from a store if urgent Hard to predict an"

    Dan H. - "Assumptions Instacart for Business is core Instacart with additional features and capabilities tailored to businesses. Users Potential user segments: Office managers (Focus here) Entrepreneurs/small business owners Restauranteurs Opportunities (pain points, needs, problems) Many places don’t offer same-day shipping. Inconvenient to physically go out and purchase these items from a store if urgent Hard to predict an"See full answer

    Product Design
  • "For me the answer looks very broad and general. It would be good the reply is relevant and focus good examples using STAR format. Please let me know your views."

    BePostive - "For me the answer looks very broad and general. It would be good the reply is relevant and focus good examples using STAR format. Please let me know your views."See full answer

    Behavioral
  • Google logoAsked at Google 

    "Clarification questions - Assumption: Blind person - Generally aware about what an ATM machine is and how it works. Markets - US market and think about global expansion later Regulatory, Financial companies approval - We have agreement from the regulators and financial companies about the merits and we don’t see any kind of concerns from these companies Goal - Part of the company's social initiatives - Positive word of mouth - increase customer base Users - **Blind users with no other disabi"

    Vijay S. - "Clarification questions - Assumption: Blind person - Generally aware about what an ATM machine is and how it works. Markets - US market and think about global expansion later Regulatory, Financial companies approval - We have agreement from the regulators and financial companies about the merits and we don’t see any kind of concerns from these companies Goal - Part of the company's social initiatives - Positive word of mouth - increase customer base Users - **Blind users with no other disabi"See full answer

    Product Manager
    Product Design
  • "Clarification Are we focusing on building the product on a specific Meta platform (Facebook, Instagram, WhatsApp), or is this a standalone effort? Is the product digital or physical? Are we targeting internal (employees) or external (customers) users? Are there any specific constraints like funding, resourcing, or geography? 1. Narrowing Down the Problem Awareness and Education: Create tools to increase understanding of climate change and its effects. -"

    Ram - "Clarification Are we focusing on building the product on a specific Meta platform (Facebook, Instagram, WhatsApp), or is this a standalone effort? Is the product digital or physical? Are we targeting internal (employees) or external (customers) users? Are there any specific constraints like funding, resourcing, or geography? 1. Narrowing Down the Problem Awareness and Education: Create tools to increase understanding of climate change and its effects. -"See full answer

    Product Manager
    Product Design
  • +9

    " import pandas as pd def lowestearningemployees(employees: pd.DataFrame) -> pd.DataFrame: sortedemployees=employees.sortvalues(by='salary',ascending=True) return sorted_employees.iloc[:3,:4] debug your code below employees = pd.DataFrame({ 'id': [1, 2, 3, 4, 5, 6], 'first_name': ['John', 'Ava', 'Cailin', 'Mike', 'Ian', 'John'], 'last_name': ['Smith', 'Muffinson', 'Ninson', 'Peterson', 'Peterson', 'Mills'], 'salary': [20000, 10000, 30000, 20000, 80000, 5"

    Sujith K. - " import pandas as pd def lowestearningemployees(employees: pd.DataFrame) -> pd.DataFrame: sortedemployees=employees.sortvalues(by='salary',ascending=True) return sorted_employees.iloc[:3,:4] debug your code below employees = pd.DataFrame({ 'id': [1, 2, 3, 4, 5, 6], 'first_name': ['John', 'Ava', 'Cailin', 'Mike', 'Ian', 'John'], 'last_name': ['Smith', 'Muffinson', 'Ninson', 'Peterson', 'Peterson', 'Mills'], 'salary': [20000, 10000, 30000, 20000, 80000, 5"See full answer

    Coding
    Data Analysis
  • " Why do we want to increase the price? How much do we need to increase? Is it tied to some kind of revenue target? What is the region in which price needs to be increased? - Say India Who are the major players in that region who offer similar services and how are they priced? Will the users switch to those competitors? What is our unique proposition for retention? Do we have any leverage against them which will stop the users from churning? Any change in pricing or anything major like terms an"

    Ekta M. - " Why do we want to increase the price? How much do we need to increase? Is it tied to some kind of revenue target? What is the region in which price needs to be increased? - Say India Who are the major players in that region who offer similar services and how are they priced? Will the users switch to those competitors? What is our unique proposition for retention? Do we have any leverage against them which will stop the users from churning? Any change in pricing or anything major like terms an"See full answer

    Product Manager
    Product Strategy
  • "Clarification: Are we talking of Amazon as an entity in whole (or) Amazon E-commerce ? I would like to use overlap across following buckets with emphasis on current product & markets, Future adjacencies and expansions, strengths barrier to entry in the markets either way Amazon Intuit Products - Considering Amazon as a whole - Devices - AWS - E-Commerce - Music - Video - E-Books - All other services, currently there is no overlap between the use-cases and services offered"

    Pm P. - "Clarification: Are we talking of Amazon as an entity in whole (or) Amazon E-commerce ? I would like to use overlap across following buckets with emphasis on current product & markets, Future adjacencies and expansions, strengths barrier to entry in the markets either way Amazon Intuit Products - Considering Amazon as a whole - Devices - AWS - E-Commerce - Music - Video - E-Books - All other services, currently there is no overlap between the use-cases and services offered"See full answer

    Product Strategy
  • Databricks logoAsked at Databricks 
    Video answer for 'What is your leadership style?'
    +7

    "My leadership style is flexible and adaptive, it varies depending on the team members and the needs of the company. My leadership goal is to empower the team and inspire and grow leaders. In order to achieve that, I combine transformational, democratic and coaching leadership styles. Usually when we are facing a new type of challenge, or at the early stage of a project, I like to adapt the transformational leadership which allows me to listen to all the suggestions from the team members and sta"

    onering2ruleall - "My leadership style is flexible and adaptive, it varies depending on the team members and the needs of the company. My leadership goal is to empower the team and inspire and grow leaders. In order to achieve that, I combine transformational, democratic and coaching leadership styles. Usually when we are facing a new type of challenge, or at the early stage of a project, I like to adapt the transformational leadership which allows me to listen to all the suggestions from the team members and sta"See full answer

    Engineering Manager
    Behavioral
    +4 more
  • Uber logoAsked at Uber 
    Product Manager
    Product Strategy
  • Amazon logoAsked at Amazon 

    "The user awakes Alexa by saying the "Alexa word" Device starts recording audio from the user, and streaming it to the Alexa Cloud Service The recorded audio stream is sent to the ASR (Automatic Speech Recognition) system ASR returns the words and the order of the words in the audio stream, and sends this information to NLU (Natural Language Understanding) NLU returns the intent of the audio stream, and sends it to Alexa Skill If the intent triggers a "play" directive (e.g. turn"

    Kai W. - "The user awakes Alexa by saying the "Alexa word" Device starts recording audio from the user, and streaming it to the Alexa Cloud Service The recorded audio stream is sent to the ASR (Automatic Speech Recognition) system ASR returns the words and the order of the words in the audio stream, and sends this information to NLU (Natural Language Understanding) NLU returns the intent of the audio stream, and sends it to Alexa Skill If the intent triggers a "play" directive (e.g. turn"See full answer

    System Design
    Technical
  • Data Engineer
    Data Modeling
  • Zendesk logoAsked at Zendesk 
    +1

    "\>> Amazon Mission & Strategy \>> Where does Amazon Prime fit into Amazon’s mission? \>> Analyze Amazon’s positioning thru \Porter’s 5 forces \ \>> Available Options \\Amazon Mission & Strategy\\ \>> Vision // To be everything store \>> Jeff Bezos // Your margin is my opportunity \\Amazon Prime\\ \>> Loyalty program to help increase customer loyalty // CLTV \>> Fuels Bezos philosophy of \“your margin is my opportunity”\ \>> Amazon Services\: E-Commerce, OTT, Mus"

    Sourabh M. - "\>> Amazon Mission & Strategy \>> Where does Amazon Prime fit into Amazon’s mission? \>> Analyze Amazon’s positioning thru \Porter’s 5 forces \ \>> Available Options \\Amazon Mission & Strategy\\ \>> Vision // To be everything store \>> Jeff Bezos // Your margin is my opportunity \\Amazon Prime\\ \>> Loyalty program to help increase customer loyalty // CLTV \>> Fuels Bezos philosophy of \“your margin is my opportunity”\ \>> Amazon Services\: E-Commerce, OTT, Mus"See full answer

    Product Manager
    Product Strategy
  • Meta (Facebook) logoAsked at Meta (Facebook) 
    Video answer for 'Design a vending machine.'
    Engineering Manager
    System Design
    +1 more
  • Google logoAsked at Google 
    Video answer for 'Design a website for creating GIFs.'
    +1

    "Clarifying Qs: Design meaning - UI elements, front end requests and backend system architecture GIFs = standard short animated videos of 1/2 seconds built either using images or videos Make GIFs = generate gifs from images and videos Do we want to build the system for a certain volume of requests? Do you want me to consider the scalability part? I: Assumptions 1,2 & 3 are correct, ignore 3 for now Users: User b/w age 18-45 trying to generate GIFs using images(at least 3)"

    Shwetang S. - "Clarifying Qs: Design meaning - UI elements, front end requests and backend system architecture GIFs = standard short animated videos of 1/2 seconds built either using images or videos Make GIFs = generate gifs from images and videos Do we want to build the system for a certain volume of requests? Do you want me to consider the scalability part? I: Assumptions 1,2 & 3 are correct, ignore 3 for now Users: User b/w age 18-45 trying to generate GIFs using images(at least 3)"See full answer

    Product Design
  • Meta (Facebook) logoAsked at Meta (Facebook) 

    "Mission: to help users buy and sell products from groups. If we think about the value here, users want to join groups that sell/buy products of interest (young moms or vinyl), or location of interest, or trust, or some other factor - either from other users or SMBs. User Actions: create groups, join groups, active in groups - make posts to sell or show interest in buying (like, commenting, sharing or ideally transacting) deeper engagement - sharing , saving , searching more based on wh"

    Sri A. - "Mission: to help users buy and sell products from groups. If we think about the value here, users want to join groups that sell/buy products of interest (young moms or vinyl), or location of interest, or trust, or some other factor - either from other users or SMBs. User Actions: create groups, join groups, active in groups - make posts to sell or show interest in buying (like, commenting, sharing or ideally transacting) deeper engagement - sharing , saving , searching more based on wh"See full answer

    Execution
    System Design
    +1 more
Showing 1121-1140 of 4138