Skip to main content

Google Interview Questions

Review this list of 918 Google interview questions and answers verified by hiring managers and candidates.
  • +2

    "Clarification questions: Does this include Street view photos, which includes (roads & highways, underwater & insider building and walking street view photos) ? No, for this question we will only look at photos taken via satellites. Google earth photographs the entire earth including land and oceans ? Yes Components of the equation (Square mile covering land x Number of photos per sq mile x Size of each photo x cost) + (Square mile covering ocean x Number of photos per"

    Niaz - "Clarification questions: Does this include Street view photos, which includes (roads & highways, underwater & insider building and walking street view photos) ? No, for this question we will only look at photos taken via satellites. Google earth photographs the entire earth including land and oceans ? Yes Components of the equation (Square mile covering land x Number of photos per sq mile x Size of each photo x cost) + (Square mile covering ocean x Number of photos per"See full answer

    Estimation
  • "def encode(root): if not root: return [] def dfs(node): if not node: return res.append(node.val) res.append(len(node,children)) for child_node in node.children: dfs(child_node) res = [] dfs(root) return res def decode(arr): if not arr: return None n = len(arr) i = 0 def dfs(val, children_count): if children_count == 0: return Node(val) cur_node = Node(val) cur_node.children = [] for j in range(children_count): nonlocal i i += 2 cur_node.children.append(dfs(arr[i], arr[i"

    Ying T. - "def encode(root): if not root: return [] def dfs(node): if not node: return res.append(node.val) res.append(len(node,children)) for child_node in node.children: dfs(child_node) res = [] dfs(root) return res def decode(arr): if not arr: return None n = len(arr) i = 0 def dfs(val, children_count): if children_count == 0: return Node(val) cur_node = Node(val) cur_node.children = [] for j in range(children_count): nonlocal i i += 2 cur_node.children.append(dfs(arr[i], arr[i"See full answer

    Software Engineer
    Coding
  • 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 more
  • Google logoAsked at Google 

    "Assumptions / Questions: tech inclinations: AI induced Painpoints: helps me get up early, but no cues for my morning rituals. Goal: Comprehensive morning exp and not limited to just getting up but also aiding in the morining rituals. Get up early and fresh, set the tone for the day. User Segment/cat: Biz: parents Schools. Geo: India? Prod: students: >= 12, 13-18. School, Boarding school kids. Solution: Workflows like clock: Aesthically apealling and more engag"

    Atharv S. - "Assumptions / Questions: tech inclinations: AI induced Painpoints: helps me get up early, but no cues for my morning rituals. Goal: Comprehensive morning exp and not limited to just getting up but also aiding in the morining rituals. Get up early and fresh, set the tone for the day. User Segment/cat: Biz: parents Schools. Geo: India? Prod: students: >= 12, 13-18. School, Boarding school kids. Solution: Workflows like clock: Aesthically apealling and more engag"See full answer

    Product Manager
    Product Design
  • Google logoAsked at Google 

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

  • 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
  • Google logoAsked at Google 

    "Explained in STAR format one of the project situation where I had to collect data points by deploying a minimum viable product due to unclear business requirements/dynamic nature of business. Emphasized on exact data points and how they strategically used to iteratively deploy improved version of product."

    Vijay P. - "Explained in STAR format one of the project situation where I had to collect data points by deploying a minimum viable product due to unclear business requirements/dynamic nature of business. Emphasized on exact data points and how they strategically used to iteratively deploy improved version of product."See full answer

    Technical Program Manager
    Behavioral
    +3 more
  • "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
    Behavioral
    +2 more
  • Google logoAsked at Google 
    +7

    " from typing import List, Optional class TreeNode: def init(self, value: int = 0, left: Optional['TreeNode'] = None, right: Optional['TreeNode'] = None): self.value = value self.left = left self.right = right def build_tree(preorder: List[int], inorder: List[int]) -> Optional[TreeNode]: map = {val : idx for idx,val in enumerate(inorder)} root_idx = 0 def dfs(left,right): if left > right: return nonloc"

    Abinash S. - " from typing import List, Optional class TreeNode: def init(self, value: int = 0, left: Optional['TreeNode'] = None, right: Optional['TreeNode'] = None): self.value = value self.left = left self.right = right def build_tree(preorder: List[int], inorder: List[int]) -> Optional[TreeNode]: map = {val : idx for idx,val in enumerate(inorder)} root_idx = 0 def dfs(left,right): if left > right: return nonloc"See full answer

    Software Engineer
    Data Structures & Algorithms
    +2 more
  • "what is NUC? "

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

    Technical
  • Google logoAsked at Google 

    "As a YouTube PM, there are several factors that I would consider when evaluating the idea of developing a tool for content creators to generate ideas with scripts automatically added. First, I would assess the potential demand for such a tool among YouTube content creators. This would involve researching the needs and challenges of content creators, as well as gathering feedback from content creators on the value and usefulness of the tool. This would help me understand whether there is a strong"

    Anonymous Flamingo - "As a YouTube PM, there are several factors that I would consider when evaluating the idea of developing a tool for content creators to generate ideas with scripts automatically added. First, I would assess the potential demand for such a tool among YouTube content creators. This would involve researching the needs and challenges of content creators, as well as gathering feedback from content creators on the value and usefulness of the tool. This would help me understand whether there is a strong"See full answer

    Product Manager
    Behavioral
    +1 more
  • Google logoAsked at Google 

    "I was a student worker at Gordon's Food Service, Schaumburg, My tasks were vacuuming onion peels, checking expiration dates, cleaning the break room, cleaning the shelves from the Ailes, Stocking stuff on shelves, sweeping the backroom, mopping, Refilling bottles with cleaning supplies and cleaning the fridge glass."

    Amparo L. - "I was a student worker at Gordon's Food Service, Schaumburg, My tasks were vacuuming onion peels, checking expiration dates, cleaning the break room, cleaning the shelves from the Ailes, Stocking stuff on shelves, sweeping the backroom, mopping, Refilling bottles with cleaning supplies and cleaning the fridge glass."See full answer

    Software Engineer
    Behavioral
  • 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
  • +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 
    +6

    " from typing import List def least_interval(tasks: List[str], n: int) -> int: elemCounts = {} for i in range(len(tasks)): elemCounts[tasks[i]] = elemCounts.get(tasks[i], 0) + 1 maxCount = max(elemCounts.values()) maxCountTasks = 0 for freq in elemCounts.values(): if freq == maxCount: maxCountTasks += 1 part_count = maxCount - 1 part_length = n - (maxCountTasks - 1) emptyslots = partcount * part_length available_task"

    Saba W. - " from typing import List def least_interval(tasks: List[str], n: int) -> int: elemCounts = {} for i in range(len(tasks)): elemCounts[tasks[i]] = elemCounts.get(tasks[i], 0) + 1 maxCount = max(elemCounts.values()) maxCountTasks = 0 for freq in elemCounts.values(): if freq == maxCount: maxCountTasks += 1 part_count = maxCount - 1 part_length = n - (maxCountTasks - 1) emptyslots = partcount * part_length available_task"See full answer

    Machine Learning Engineer
    Data Structures & Algorithms
    +2 more
  • Google logoAsked at Google 
    Product Manager
    Product Design
  • "First, I would operationalize the term "slip" by asking: What’s slipping — delivery, scope, quality, or decision-making? Second, I would ask the following questions that help me shape the possible causes for the "slip": What is important for us in this project delivery: time/quality/scope? What is the priory of this project? Is it urgent? Do we have a strict customer or other stakeholder commitment? Is it a big project that involves multiple teams or is only one team involved"

    Anastasiia V. - "First, I would operationalize the term "slip" by asking: What’s slipping — delivery, scope, quality, or decision-making? Second, I would ask the following questions that help me shape the possible causes for the "slip": What is important for us in this project delivery: time/quality/scope? What is the priory of this project? Is it urgent? Do we have a strict customer or other stakeholder commitment? Is it a big project that involves multiple teams or is only one team involved"See full answer

    Product Manager
    Behavioral
  • Google logoAsked at Google 

    "Refer https://www.linkedin.com/pulse/good-product-managers-great-shreyas-doshi/"

    Ash I. - "Refer https://www.linkedin.com/pulse/good-product-managers-great-shreyas-doshi/"See full answer

    Product Manager
    Behavioral
  • Google logoAsked at Google 

    "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
Showing 381-400 of 918