Skip to main content

Waymo Data Engineer Interview Questions

Review this list of Waymo Data Engineer interview questions and answers verified by hiring managers and candidates.
  • Waymo logoAsked at Waymo 
    2 answers
    Video answer for 'Find the container with the maximum volume of water.'

    "int getMaxWater(vector& nums) { int n = nums.size(); int mx = INT_MIN; int i=0, j=n-1; while(i<j) { int water = (j - i) * min(nums[i], nums[j]); mx = max(mx, water); if(nums[i] < nums[j]){ i++; } else { j--; } } return mx; } `"

    Richard W. - "int getMaxWater(vector& nums) { int n = nums.size(); int mx = INT_MIN; int i=0, j=n-1; while(i<j) { int water = (j - i) * min(nums[i], nums[j]); mx = max(mx, water); if(nums[i] < nums[j]){ i++; } else { j--; } } return mx; } `"See full answer

    Data Engineer
    Data Structures & Algorithms
    +3 more
  • Waymo logoAsked at Waymo 
    6 answers
    +3

    "Conflict is a GREAT opportunity to really demonstrate that you care about someone and, through effective conflict resolution, build stronger authentic relationships with the people you work with. When faced with conflict, I prioritize understanding all perspectives involved. I start by actively listening to the other parties: asking clarifying questions to pinpoint the source of the conflict, reflecting back what I'm hearing to make sure I understand them correctly, and ultimately identify"

    Zakery K. - "Conflict is a GREAT opportunity to really demonstrate that you care about someone and, through effective conflict resolution, build stronger authentic relationships with the people you work with. When faced with conflict, I prioritize understanding all perspectives involved. I start by actively listening to the other parties: asking clarifying questions to pinpoint the source of the conflict, reflecting back what I'm hearing to make sure I understand them correctly, and ultimately identify"See full answer

    Data Engineer
    Behavioral
    +3 more
  • Waymo logoAsked at Waymo 
    6 answers
    +3

    "I’ve been a student worker at Renaissance, I’ve worked on inventory by counting out the supplies they have and then recording it on their sheet. I’ve worked at the Schaumburg Township Library as a student intern, I’ve worked on inventory with supplies. I’ve also worked at Assurance as a student intern, I’ve worked on checking hotels and making sure the person who is going to use the office during the day and also restock the supplies."

    Amparo L. - "I’ve been a student worker at Renaissance, I’ve worked on inventory by counting out the supplies they have and then recording it on their sheet. I’ve worked at the Schaumburg Township Library as a student intern, I’ve worked on inventory with supplies. I’ve also worked at Assurance as a student intern, I’ve worked on checking hotels and making sure the person who is going to use the office during the day and also restock the supplies."See full answer

    Data Engineer
    Behavioral
    +3 more
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

Showing 1-3 of 3