Skip to main content

Top Google Interview Questions

Review this list of 926 Google interview questions and answers verified by hiring managers and candidates.
  • Google logoAsked at Google 
    1 answer

    "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 
    2 answers

    "Clarifying question? What is GCP and what does it mean to create a new GCP region in Portugal? GCP is Google Cloud Portugal. Creating a new region means creating data centres (clouds) which can be used as hosts. Is there a business objective to consider Portugal for a new region? None in particular Structure: Explore internal factors Is there a particular business goal that we are trying to accomplish like goal of getting more business from EU companies in coming few years? If yes"

    S Y. - "Clarifying question? What is GCP and what does it mean to create a new GCP region in Portugal? GCP is Google Cloud Portugal. Creating a new region means creating data centres (clouds) which can be used as hosts. Is there a business objective to consider Portugal for a new region? None in particular Structure: Explore internal factors Is there a particular business goal that we are trying to accomplish like goal of getting more business from EU companies in coming few years? If yes"See full answer

    Product Manager
    Behavioral
    +1 more
  • Google logoAsked at Google 
    5 answers
    +1

    "DNNs can learn hierarchical features, with each layer learning progressively more abstract features, and generalizes better. SNNs are better for simplier problems involving smaller datasets and if low latency is required."

    Louie Z. - "DNNs can learn hierarchical features, with each layer learning progressively more abstract features, and generalizes better. SNNs are better for simplier problems involving smaller datasets and if low latency is required."See full answer

    Software Engineer
    Concept
    +2 more
  • +1

    "Product "XYZ" explain what it is and which audience it is serving. Goals Ease the anxiety Offer the most comprehensive perspective of Cloud Engagement Democratize Upsell Insights Business Review Deck Slide #1: NPS - Now, Trend & Insights + Call To Action: FYI & solicit feedback Slide #2: User Engagement Update - DAU, WAU, MAU, Actions Completed + Call To Action: FYI & solicit feedback Slide #3: Partnership Update - Share new cross org collabor"

    Coach - "Product "XYZ" explain what it is and which audience it is serving. Goals Ease the anxiety Offer the most comprehensive perspective of Cloud Engagement Democratize Upsell Insights Business Review Deck Slide #1: NPS - Now, Trend & Insights + Call To Action: FYI & solicit feedback Slide #2: User Engagement Update - DAU, WAU, MAU, Actions Completed + Call To Action: FYI & solicit feedback Slide #3: Partnership Update - Share new cross org collabor"See full answer

    Product Manager
    Analytical
    +2 more
  • "Answering only estimation portion for practice (for some reason after submitting the formatting is unorganized) clarification and assumptions can I assume this grocery store location is called Greens can I assume that self-checkout means that customers checks out without assistance? can I assume that cashier checkout means that cashier assists customers with checkout? can I assume that ratio means how man self-checkouts should be place at this grocery store compare"

    Ama M. - "Answering only estimation portion for practice (for some reason after submitting the formatting is unorganized) clarification and assumptions can I assume this grocery store location is called Greens can I assume that self-checkout means that customers checks out without assistance? can I assume that cashier checkout means that cashier assists customers with checkout? can I assume that ratio means how man self-checkouts should be place at this grocery store compare"See full answer

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

  • Google logoAsked at Google 
    12 answers
    +8

    "Clarifying questions: Should I include the tail of the helicopter when computing the area for this question? Can I assume that the average ping pong ball has a radius of around 1 inch? Assumption: Assume that the helicopter is more circular than a rectangle. Hence use the formula of a circle in computing the area. Assume that the helicopter's radius is 5 feet a 6 feet person can't stand on the helicopter because they're tall for it hence rounding down. Assume that th"

    Shreejal L. - "Clarifying questions: Should I include the tail of the helicopter when computing the area for this question? Can I assume that the average ping pong ball has a radius of around 1 inch? Assumption: Assume that the helicopter is more circular than a rectangle. Hence use the formula of a circle in computing the area. Assume that the helicopter's radius is 5 feet a 6 feet person can't stand on the helicopter because they're tall for it hence rounding down. Assume that th"See full answer

    Product Manager
    Estimation
  • Google logoAsked at Google 
    2 answers

    "An effective PM should be clear about the vision and mission. Faciliate the team to achieve its goals by unblocking the obstacles. Smart enought to figure out Risks and should plan effectively to mitigate the risks. Good listener and communicator .Should be able to empower the team , appreciative ,positive minded and with empathy for everyone"

    D B. - "An effective PM should be clear about the vision and mission. Faciliate the team to achieve its goals by unblocking the obstacles. Smart enought to figure out Risks and should plan effectively to mitigate the risks. Good listener and communicator .Should be able to empower the team , appreciative ,positive minded and with empathy for everyone"See full answer

    Behavioral
  • Google logoAsked at Google 
    2 answers

    "Me: thanks for the question. Could you tell me what type of drone is it and what is the user segment? Interviewer: What you mean by type of drone? Me: Is it a premium drone with premium features like a camera or it's more on the cheaper side? Interviewer: It's a normal drone with basic features, a good camera but nothing professional and it has the Google brand. The users are amateur drone users. Me: Awesome, is there anything specific about this drone in relation to others? You mentioned th"

    Talles S. - "Me: thanks for the question. Could you tell me what type of drone is it and what is the user segment? Interviewer: What you mean by type of drone? Me: Is it a premium drone with premium features like a camera or it's more on the cheaper side? Interviewer: It's a normal drone with basic features, a good camera but nothing professional and it has the Google brand. The users are amateur drone users. Me: Awesome, is there anything specific about this drone in relation to others? You mentioned th"See full answer

    Product Strategy
  • Google logoAsked at Google 
    15 answers
    +10

    " function climbStairs(n) { // 4 iterations of Dynamic Programming solutions: // Step 1: Recursive: // if (n <= 2) return n // return climbStairs(n-1) + climbStairs(n-2) // Step 2: Top-down Memoization // const memo = {0:0, 1:1, 2:2} // function f(x) { // if (x in memo) return memo[x] // memo[x] = f(x-1) + f(x-2) // return memo[x] // } // return f(n) // Step 3: Bottom-up Tabulation // const tab = [0,1,2] // f"

    Matthew K. - " function climbStairs(n) { // 4 iterations of Dynamic Programming solutions: // Step 1: Recursive: // if (n <= 2) return n // return climbStairs(n-1) + climbStairs(n-2) // Step 2: Top-down Memoization // const memo = {0:0, 1:1, 2:2} // function f(x) { // if (x in memo) return memo[x] // memo[x] = f(x-1) + f(x-2) // return memo[x] // } // return f(n) // Step 3: Bottom-up Tabulation // const tab = [0,1,2] // f"See full answer

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

    "Clarifying Qs: What are we building the Google campus for on the moon? We are the Google X team and always want to move people forward and want to be the first private entity on the moon Are we trying to build for astronauts or our employees or someone else? This will be for employees Do we already have a location on the moon and we're expanding or will this be the first one ever? This is the first one ever. For us to answer this question, we'll want to discuss Google's mission, us"

    Angela - "Clarifying Qs: What are we building the Google campus for on the moon? We are the Google X team and always want to move people forward and want to be the first private entity on the moon Are we trying to build for astronauts or our employees or someone else? This will be for employees Do we already have a location on the moon and we're expanding or will this be the first one ever? This is the first one ever. For us to answer this question, we'll want to discuss Google's mission, us"See full answer

    Product Design
  • Google logoAsked at Google 
    3 answers

    "Clarifying Questions What is definition of blind - people who cannot see Is this also inclusive of partially blind - No Does this cater people who are blind naturally or got blind due to some illness or accident - Only natural Why do you want to build it - what is the intended goal Improve the smartphone experience Do we expect the users any kind of phone experience when we talk about this device - Yes, basic phone experience with accessibility features "

    Product V. - "Clarifying Questions What is definition of blind - people who cannot see Is this also inclusive of partially blind - No Does this cater people who are blind naturally or got blind due to some illness or accident - Only natural Why do you want to build it - what is the intended goal Improve the smartphone experience Do we expect the users any kind of phone experience when we talk about this device - Yes, basic phone experience with accessibility features "See full answer

    Product Manager
    Product Design
  • Google logoAsked at Google 
    2 answers

    "Clarifying questions What do you mean by app for gardening? E-commerce kind of app for buying selling or tutorial or something else? Up to me. What is the goal of this app? Getting users and increasing engagement Who are we? startup What is the time frame we are looking at for this? No constraints Where are we looking to implement this? Start with India. User segments Type: Commercial, Personal Plant Parent: New, medium, Old Profession: Student, Working Professional, Stay"

    Namrata L. - "Clarifying questions What do you mean by app for gardening? E-commerce kind of app for buying selling or tutorial or something else? Up to me. What is the goal of this app? Getting users and increasing engagement Who are we? startup What is the time frame we are looking at for this? No constraints Where are we looking to implement this? Start with India. User segments Type: Commercial, Personal Plant Parent: New, medium, Old Profession: Student, Working Professional, Stay"See full answer

    Product Manager
    Product Design
  • Google logoAsked at Google 
    1 answer

    "Assumption: This restaurant space already exists in Business campus. Hence assuming that necessary electrical, security and plumbing works are already completed. I will use the following approach Discovery: Understand the number of employees, their demographic profile (age/location/gender), food preferences, rush hours, and preferred mode of payment etc. This information can be gathered through an online survey. Planning: Finalize the staffing, restaurant layout, develop food catalog/"

    Saket S. - "Assumption: This restaurant space already exists in Business campus. Hence assuming that necessary electrical, security and plumbing works are already completed. I will use the following approach Discovery: Understand the number of employees, their demographic profile (age/location/gender), food preferences, rush hours, and preferred mode of payment etc. This information can be gathered through an online survey. Planning: Finalize the staffing, restaurant layout, develop food catalog/"See full answer

    Behavioral
    Program Sense
    +1 more
  • Google logoAsked at Google 
    4 answers

    "One weakness of mine is reaching stuff through higher shelves but I'm able to use a step ladder to address the situation."

    Amparo L. - "One weakness of mine is reaching stuff through higher shelves but I'm able to use a step ladder to address the situation."See full answer

    Frontend Engineer
    Behavioral
    +1 more
  • Google logoAsked at Google 
    3 answers

    "Amazon: Mission: to be Earth's most customer-centric company Insight: Quick delivery and Great Customer Care are the key value prep of AP. Vision: To be earth's most customer-centric company; to build a place where people can come to find and discover anything they might want to buy online. Strengths: Personalization Wide User Base + Wide Seller Base Own delivery fleet (planes, trucks etc) How they make Money: Sellers Commission "

    Ana A. - "Amazon: Mission: to be Earth's most customer-centric company Insight: Quick delivery and Great Customer Care are the key value prep of AP. Vision: To be earth's most customer-centric company; to build a place where people can come to find and discover anything they might want to buy online. Strengths: Personalization Wide User Base + Wide Seller Base Own delivery fleet (planes, trucks etc) How they make Money: Sellers Commission "See full answer

    Product Manager
    Product Strategy
  • Google logoAsked at Google 
    2 answers

    "i would follow engage/ listen/understand/collaborate/engage/resolve- approach to manage conflicts. I would explain each phase in a project where I face conflict and how I used above approach to resolve the conflict"

    A B. - "i would follow engage/ listen/understand/collaborate/engage/resolve- approach to manage conflicts. I would explain each phase in a project where I face conflict and how I used above approach to resolve the conflict"See full answer

    Product Designer
    Behavioral
    +1 more
  • Google logoAsked at Google 
    1 answer

    "Clarify the problem / make assumptions: What are we defining as misleading? For this problem, any video that contains information countering accepted scientific/research-driven results What is meant by fix? Does that entail removing said videos? For this problem, I want to see if we can minimize the amount of videos pulled from YouTube Intro to the product: YouTube is a video-sharing platform that was acquired by Google in 2006 YouTube's original mission statement:"

    slouchingtowardssv - "Clarify the problem / make assumptions: What are we defining as misleading? For this problem, any video that contains information countering accepted scientific/research-driven results What is meant by fix? Does that entail removing said videos? For this problem, I want to see if we can minimize the amount of videos pulled from YouTube Intro to the product: YouTube is a video-sharing platform that was acquired by Google in 2006 YouTube's original mission statement:"See full answer

    Analytical
    Execution
  • Google logoAsked at Google 
    2 answers

    "Clarifying Questions: US or globally? globally Consumer or business use? consumer Assumptions: Assuming we are interested in frequent users, let's say someone who uses Google Drive at least 5 times a year. Discluding anyone who has used Google Drive less than 4 times per year. Assuming Google Drive is a place to store, share, and collaborate on files and folders from your mobile device, tablet, or computer. Recap: We would like to estimate the number of users of Google Drive"

    Cameron P. - "Clarifying Questions: US or globally? globally Consumer or business use? consumer Assumptions: Assuming we are interested in frequent users, let's say someone who uses Google Drive at least 5 times a year. Discluding anyone who has used Google Drive less than 4 times per year. Assuming Google Drive is a place to store, share, and collaborate on files and folders from your mobile device, tablet, or computer. Recap: We would like to estimate the number of users of Google Drive"See full answer

    Estimation
  • Google logoAsked at Google 
    3 answers

    "Sales Performance Dashboard t for sales leaders to monitor product performance: Sales Performance Dashboard Top-Level Metrics (KPI Summary) Time Filter: [Day] [Week] [Month] [Quarter] [Custom Range] Total Sales Revenue Displays total revenue for the selected period. Units Sold Breakdown by product category and SKU. Average Deal Size Total revenue ÷ Number of deals closed. Conversion Rate _Leads to sales conversion ratio."

    Syed A. - "Sales Performance Dashboard t for sales leaders to monitor product performance: Sales Performance Dashboard Top-Level Metrics (KPI Summary) Time Filter: [Day] [Week] [Month] [Quarter] [Custom Range] Total Sales Revenue Displays total revenue for the selected period. Units Sold Breakdown by product category and SKU. Average Deal Size Total revenue ÷ Number of deals closed. Conversion Rate _Leads to sales conversion ratio."See full answer

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

    "My least favorite product is a desktop software solution called Marg, which is used frequently at our family business. Its an inventory, bookkeeping, and accounting software for small businesses in India and integrates with the official government tax portal. The general journey to accomplish any task, say adding a new product type, is very unintuitive and requires someone to be hands-on and familiar with the product to actually do this. Getting there is pure hit and trial. Like most desktop sof"

    Shankhadip M. - "My least favorite product is a desktop software solution called Marg, which is used frequently at our family business. Its an inventory, bookkeeping, and accounting software for small businesses in India and integrates with the official government tax portal. The general journey to accomplish any task, say adding a new product type, is very unintuitive and requires someone to be hands-on and familiar with the product to actually do this. Getting there is pure hit and trial. Like most desktop sof"See full answer

    Product Manager
    Product Design
Showing 361-380 of 926