Google Interview Questions

Review this list of 845 Google interview questions and answers verified by hiring managers and candidates.
  • Google logoAsked at Google 
    Video answer for 'Generate Parentheses'
    +5

    "function generateParentheses(n) { if (n < 1) { return []; } if (n === 1) { return ["()"]; } const combinations = new Set(); let previousCombinations = generateParentheses(n-1); for (let prev of previousCombinations) { for (let i=0; i < prev.length; i++) { combinations.add(prev.slice(0, i+1) + "()" + prev.slice(i+1)); } } return [...combinations]; } `"

    Tiago R. - "function generateParentheses(n) { if (n < 1) { return []; } if (n === 1) { return ["()"]; } const combinations = new Set(); let previousCombinations = generateParentheses(n-1); for (let prev of previousCombinations) { for (let i=0; i < prev.length; i++) { combinations.add(prev.slice(0, i+1) + "()" + prev.slice(i+1)); } } return [...combinations]; } `"See full answer

    Software Engineer
    Data Structures & Algorithms
    +3 more
  • Google logoAsked at Google 

    "Clarify: User experience improvements or revenue based improvements for the company? (Assumed UX) Can it be hardware or must it be software? (assumed I have the choice) Position: My favorite product is Airbnb. It's an app that let's people list their home for short term rental and then let's guests book those homes (or rooms) to stay in. It's used primarily for vacations but people all over the world now use it for business or even longer term stays. It's idea was pretty revolutionary a"

    Joel A. - "Clarify: User experience improvements or revenue based improvements for the company? (Assumed UX) Can it be hardware or must it be software? (assumed I have the choice) Position: My favorite product is Airbnb. It's an app that let's people list their home for short term rental and then let's guests book those homes (or rooms) to stay in. It's used primarily for vacations but people all over the world now use it for business or even longer term stays. It's idea was pretty revolutionary a"See full answer

    Product Manager
    Product Design
  • Google logoAsked at Google 

    "Functional Requirement Monitor health, metrics Alert in case of failure/anomaly Visualize the live health Analyse machines on periodic basis Non Functional Should not exert load on machines low latency Highly scalable Logs/Metrics Gathering push - machine gather and send to system and low priority background thread along with batching pull - heart beat check (for offline machines) Processing Real time streaming using Kafka/kinesis + Flink TimeSeries database for stor"

    Sourabh G. - "Functional Requirement Monitor health, metrics Alert in case of failure/anomaly Visualize the live health Analyse machines on periodic basis Non Functional Should not exert load on machines low latency Highly scalable Logs/Metrics Gathering push - machine gather and send to system and low priority background thread along with batching pull - heart beat check (for offline machines) Processing Real time streaming using Kafka/kinesis + Flink TimeSeries database for stor"See full answer

    Engineering Manager
    System Design
    +2 more
  • Google logoAsked at Google 

    "I would like to ask questions to the interviewer as to if the company or I as TPM have any success history handling this magnitude. Also, I will talk on my behalf to justify my experience and caliber to drive this magnitude of project to success. But, I always follow a flow-chart approach when meeting exec management where I do my home work studying the current state of the project/ pain points/ issues/ blockers and steps we have taken or planning to take next to mitigate it. Now w.r.t the flow"

    Pramod V. - "I would like to ask questions to the interviewer as to if the company or I as TPM have any success history handling this magnitude. Also, I will talk on my behalf to justify my experience and caliber to drive this magnitude of project to success. But, I always follow a flow-chart approach when meeting exec management where I do my home work studying the current state of the project/ pain points/ issues/ blockers and steps we have taken or planning to take next to mitigate it. Now w.r.t the flow"See full answer

    Technical Program Manager
    Program Sense
    +2 more
  • Google logoAsked at Google 

    "My favorite app on my phone is Youtube because that way I could watch iCarly videos for free."

    Amparo L. - "My favorite app on my phone is Youtube because that way I could watch iCarly videos for free."See full answer

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

  • Google logoAsked at Google 
    Product Manager
    Product Design
  • Google logoAsked at Google 
    +3

    "import time class Task: def init\(self, description, interval=None): self.description = description self.interval = interval self.next_run = time.time() class SimpleTaskScheduler: def init\(self): self.tasks = [] def add_task(self, description, interval=None): self.tasks.append(Task(description, interval)) def run(self, duration=60): end_time = time.time() + duration while time.time() < end_time: curr"

    Yash N. - "import time class Task: def init\(self, description, interval=None): self.description = description self.interval = interval self.next_run = time.time() class SimpleTaskScheduler: def init\(self): self.tasks = [] def add_task(self, description, interval=None): self.tasks.append(Task(description, interval)) def run(self, duration=60): end_time = time.time() + duration while time.time() < end_time: curr"See full answer

    Machine Learning Engineer
    Data Structures & Algorithms
    +1 more
  • Google logoAsked at Google 
    Video answer for 'How would you debug a failing NUC in a data center?'

    "what is NUC? "

    Astro S. - "what is NUC? "See full answer

    Technical
  • Google logoAsked at Google 

    "Strategy of 15 minute delivery apps. I will discuss what delivery apps are, what is their current business model, examples of some delivery apps, any market metrics/share, opportunity, how 15-minute delivery apps fit in, challenges/opps, what's next, takeaways. Clarifying questions Are we focused on North America? Any other geo? Delivery apps -> Assumed to be food/grocery/alcohol delivery not packages (Amazon)? Assumed delivery apps for end-consumers not large businesses? Delivery apps o"

    Glados - "Strategy of 15 minute delivery apps. I will discuss what delivery apps are, what is their current business model, examples of some delivery apps, any market metrics/share, opportunity, how 15-minute delivery apps fit in, challenges/opps, what's next, takeaways. Clarifying questions Are we focused on North America? Any other geo? Delivery apps -> Assumed to be food/grocery/alcohol delivery not packages (Amazon)? Assumed delivery apps for end-consumers not large businesses? Delivery apps o"See full answer

    Product Manager
    Product Strategy
  • Google logoAsked at Google 

    "i am a fresher"

    Akash A. - "i am a fresher"See full answer

    Software Engineer
    Behavioral
  • Google logoAsked at Google 

    "Since Experimentation is a Broad Term I would like to ask a couple of Clarifying questions What kind of Experimentation User Behavior with newly introduced Beta features AI/Image learning Based Experimentation to test out trial features Something else API based experimentation for user/Third-party experiments,with APIs for new features exposed(this has a lot of potential where devs of apps etc can integrate new experimentation features in their apps with minima"

    Manas M. - "Since Experimentation is a Broad Term I would like to ask a couple of Clarifying questions What kind of Experimentation User Behavior with newly introduced Beta features AI/Image learning Based Experimentation to test out trial features Something else API based experimentation for user/Third-party experiments,with APIs for new features exposed(this has a lot of potential where devs of apps etc can integrate new experimentation features in their apps with minima"See full answer

    Product Manager
    Product Design
  • Google logoAsked at Google 

    "Getting things done : I am extremely proud of walking the extra mile to get things done which I am extremely proud of in my career Ladder transfer : Being on the tactical front, to dream about creating a product from its inception to the delivery and being able to achieve it Gaining trust : Leading without authority is critical and gaining trust in the process of the peers and stakeholders is one thing I am extremely proud of."

    Googlepm 1. - "Getting things done : I am extremely proud of walking the extra mile to get things done which I am extremely proud of in my career Ladder transfer : Being on the tactical front, to dream about creating a product from its inception to the delivery and being able to achieve it Gaining trust : Leading without authority is critical and gaining trust in the process of the peers and stakeholders is one thing I am extremely proud of."See full answer

    Product Marketing Manager
    Behavioral
  • +1

    "Clarification: What does "share" imply? is it the action of sharing the app or website ? My assumption here we are not talking about stock market share :P, other factors come into play there. Diving-in: I would like to classify the questions into 2 buckets Internal Do we have data on which platform the shares increases and split up by Mobile and if mobile via app or via browser, split by apple/android, split via desktop, tablet . Essentially source of the shares. What this will t"

    Pm P. - "Clarification: What does "share" imply? is it the action of sharing the app or website ? My assumption here we are not talking about stock market share :P, other factors come into play there. Diving-in: I would like to classify the questions into 2 buckets Internal Do we have data on which platform the shares increases and split up by Mobile and if mobile via app or via browser, split by apple/android, split via desktop, tablet . Essentially source of the shares. What this will t"See full answer

    Analytical
    Product Strategy
  • Google logoAsked at Google 

    "Estimate the market size for Google Fi Market size -> total revenue/sales in a market = market share Google Fi -> telecommunication services by google. Only for US market Market size = (1)google fi customers / (2)total customers in the market (2)total customers in the market 300m ppl in the US 0-90 life expectancy Factor out 0-12,80-90 240m ~250m ppl in the US who are using phones and need a telecommunication service (1)google fi customers Version 40% - 110m AT&T 30% - 70m T-Mobil"

    Cameron P. - "Estimate the market size for Google Fi Market size -> total revenue/sales in a market = market share Google Fi -> telecommunication services by google. Only for US market Market size = (1)google fi customers / (2)total customers in the market (2)total customers in the market 300m ppl in the US 0-90 life expectancy Factor out 0-12,80-90 240m ~250m ppl in the US who are using phones and need a telecommunication service (1)google fi customers Version 40% - 110m AT&T 30% - 70m T-Mobil"See full answer

    Product Manager
    Estimation
  • Google logoAsked at Google 

    "Hadoop is better than PySpark when you are dealing with extremely large scale, batch oriented, non-iterative workloads where in-memory computing isn't feasible/ necessary, like log storage or ETL workflows that don't require high response times. It's also better in situations where the Hadoop ecosystem is already deeply embedded and where there is a need for resource conscious, fault tolerant computation without the overhead of Spark's memory constraints. In these such scenarios, Hadoop's disk-b"

    Joshua R. - "Hadoop is better than PySpark when you are dealing with extremely large scale, batch oriented, non-iterative workloads where in-memory computing isn't feasible/ necessary, like log storage or ETL workflows that don't require high response times. It's also better in situations where the Hadoop ecosystem is already deeply embedded and where there is a need for resource conscious, fault tolerant computation without the overhead of Spark's memory constraints. In these such scenarios, Hadoop's disk-b"See full answer

    Data Engineer
    Data Pipeline Design
  • Google logoAsked at Google 
    +4

    "public static void sortBinaryArray(int[] array) { int len = array.length; int[] res = new int[len]; int r=len-1; for (int value : array) { if(value==1){ res[r]= 1; r--; } } System.out.println(Arrays.toString(res)); } `"

    Nitin P. - "public static void sortBinaryArray(int[] array) { int len = array.length; int[] res = new int[len]; int r=len-1; for (int value : array) { if(value==1){ res[r]= 1; r--; } } System.out.println(Arrays.toString(res)); } `"See full answer

    Software Engineer
    Data Structures & Algorithms
    +1 more
  • Google logoAsked at Google 
    +1

    "After more than five years at my previous company, I had contributed significantly to many important projects and helped the team navigate critical transitions, such as our shift from a monolithic to a microservices architecture. However, over time, I realized that my goals and the direction of the company were no longer fully aligned. I felt I had outgrown the position and was ready for new challenges, where I could continue to grow both technically and professionally. Ultimately, I’m excited a"

    Chinedu ekene O. - "After more than five years at my previous company, I had contributed significantly to many important projects and helped the team navigate critical transitions, such as our shift from a monolithic to a microservices architecture. However, over time, I realized that my goals and the direction of the company were no longer fully aligned. I felt I had outgrown the position and was ready for new challenges, where I could continue to grow both technically and professionally. Ultimately, I’m excited a"See full answer

    Software Engineer
    Behavioral
    +1 more
  • "Hangouts 100k feedback gave 3* rating, in 2013. What to do next Clarify: Solving for 2013, should disregard changes made (Allo, Gchat, Gmeet) since then? [yes] Is this on any specific platform - App Store or Play store? [both] Consumer or Enterprise [consumer] Problem framing - - - - - - - - - - - - - Mission: org world info., be helpful. Hangouts role in this mission to help users stay connected, exchange info and content (via messages and calls) Biz/ Prod goals Growth/ acq Install ba"

    Calyan - "Hangouts 100k feedback gave 3* rating, in 2013. What to do next Clarify: Solving for 2013, should disregard changes made (Allo, Gchat, Gmeet) since then? [yes] Is this on any specific platform - App Store or Play store? [both] Consumer or Enterprise [consumer] Problem framing - - - - - - - - - - - - - Mission: org world info., be helpful. Hangouts role in this mission to help users stay connected, exchange info and content (via messages and calls) Biz/ Prod goals Growth/ acq Install ba"See full answer

    Product Manager
    Analytical
    +1 more
  • Google logoAsked at Google 
    +1

    "Providing some bullets to expand on to respond to this question- Inability to adapt to the changes in customer's needs in retail industry Lack of competitive analysis Rigid business model Lack of well defined Vision and Strategy"

    Rahul P. - "Providing some bullets to expand on to respond to this question- Inability to adapt to the changes in customer's needs in retail industry Lack of competitive analysis Rigid business model Lack of well defined Vision and Strategy"See full answer

    Product Strategy
  • Product Manager
    Analytical
    +1 more
Showing 361-380 of 845