Zum Inhalt springenZur Fußzeile springen
  • Jobs
  • Unternehmen
  • Gehälter
  • Für Arbeitgeber

      Deine Karriere auf Höhenflug

      Erfahre, was du verdienen könntest, ergattere deinen Traumjob und tausche dich anonym über dein Berufs- und Privatleben aus.

      employer cover photo
      employer logo
      employer logo

      Google

      Aktiver Arbeitgeber

      Info
      Bewertungen
      Vergütung & Zusatzleistungen
      Jobs
      Interviews
      Interviews
      Ähnliche Suchanfragen: Bewertungen für Google | Jobs bei Google | Gehälter bei Google | Zusatzleistungen bei Google
      Vorstellungsgespräche bei GoogleTest Engineer – Vorstellungsgespräche bei GoogleVorstellungsgespräche bei Google


      Glassdoor

      • Über uns
      • Auszeichnungen
      • Blog
      • Kontakt
      • Ratgeber

      Arbeitgeber

      • Gratis Arbeitgeberkonto
      • Arbeitgeberbereich
      • Blog für Arbeitgeber

      Informationen

      • Hilfe
      • Richtlinien
      • Nutzungsbedingungen
      • Datenschutz & Anzeigenoptionen
      • Meine Daten nicht verkaufen oder weitergeben
      • Cookie-Zustimmungs-Tool

      Partner werden

      • Werbeanbieter
      App herunterladen

      • Suchen nach:
      • Unternehmen
      • Jobs
      • Standorte

      Copyright © 2008-2026. Indeed, Inc. „Glassdoor”, „Worklife Pro”, „Bowls” und das Logo sind eingetragene Warenzeichen von Indeed, Inc.

      Beobachtete Unternehmen

      Verschaffe dir einen Vorsprung bei Chancen und Insider-Tipps, indem du deinem Traumunternehmen folgst.

      Jobsuchen

      Erhalte personalisierte Jobempfehlungen und Updates, indem du Suchanfragen startest.

      Vorstellungsgespräch für eine Beschäftigung als Test Engineer

      18. Aug. 2011
      Anonymer Bewerber im Vorstellungsgespräch
      New York, NY
      Kein Angebot
      Neutrale Erfahrung
      Durchschnittl. Gespräch

      Bewerbung

      Ich habe mich online beworben. Vorstellungsgespräch absolviert im Juni 2011 bei Google (New York, NY)

      Vorstellungsgespräch

      They provided a list of items to study. I had 2 1 hour whiteboard interviews with two engineers. I described my resume and solved some algorithm on the whiteboard. The first interviewer was the Manager and he was more intersted in how I would fit with the team and my interest in the different projects. His technical questions were few but he did ask how to test some functions. The other guy was a SDET and his questions were all technical and I spent most of the interview writing code.

      Fragen im Vorstellungsgespräch [2]

      Frage 1

      Find the max and second largest max in an array of integers. What is run time? How to test function?
      4 Antworten

      Frage 2

      Describe how to test the Google search bar.
      1 Antwort
      7

      Weitere Bewertungen zu Vorstellungsgesprächen als Test Engineer bei Google

      Vorstellungsgespräch für eine Beschäftigung als Test Engineer

      15. März 2026
      Anonymer Bewerber im Vorstellungsgespräch
      Sunnyvale, CA
      Kein Angebot
      Neutrale Erfahrung
      Durchschnittl. Gespräch

      Bewerbung

      Vorstellungsgespräch absolviert bei Google (Sunnyvale, CA)

      Vorstellungsgespräch

      Online assessment only, I didn’t clear it so I couldn’t progress further. In previous HR call some technical questions were asked along with visa, salary and location preference et were asked

      Fragen im Vorstellungsgespräch [1]

      Frage 1

      Leetcode medium questions - 2
      Frage beantworten

      Vorstellungsgespräch für eine Beschäftigung als Test Engineer

      6. Sep. 2025
      Anonymer Bewerber im Vorstellungsgespräch
      Kein Angebot
      Positive Erfahrung
      Schweres Gespräch

      Bewerbung

      Ich habe mich online beworben. Der Vorgang dauerte 2 Monate. Vorstellungsgespräch absolviert bei Google

      Vorstellungsgespräch

      They have all data structure questions: Google tech dev guide is good enough for the preparation. I cleared all the coding rounds but failed the theoretical technical. Here are 2 questions that I managed to copy. Interview is on google doc instead of an editor. You share your camera and screen while typing in the doc and they have the doc opened at the same time.

      Fragen im Vorstellungsgespräch [1]

      Frage 1

      ACTUAL INTERVIEW QUESTIONS and my solution # Question: # Print all possible sequences of 1s and 2s that sum up to the given number N. def print_sequence(N): def backtrack(remaining,sequence): if remaining==0: print(sequence) return if remaining<0: return sequence.append(1) baacktrack(remaining-1,sequence) sequence.pop() sequence.append(2) backtrack(remaining-2,sequence) sequence.pop() backtrack(N,[]) print_sequences(3) [1,1,1] [1,2] [2,1] print_sequences(1) [1] print_sequences(0) [] N=0 Expected : "[[]] #an empty sequence def test_three(self): self.assertCountEqual(get_sequence(3),[[1,1,1],[1,2].[2.,1]]]) # Test cases: # TC1: N = 3 # TC2: N = 1 # TC3: N = 0 # Complexity: # O(2^N) = Time complexity O(N)= space complexity # Question: # Given a list of timestamp ranges, each range represents a user using a Google service. Write a function that returns all users using the Google services at specific query timestamp. # Example # A range can be represented as: [starting, ending], e.g., [1, 3] or [0, 10] and so on. # For instance, given a list of ranges: # # [0, 5] # [6, 8] # [2, 9] # [4, 10] # [3, 5] # Return: 3 # [0, 5], [2, 9], [3, 5] def count_active_users(range,timestamp): count=0 for r in ranges: if r[0]<=timestamp and timestamp<=r[1]: count=count+1 return count # timestamp - array def preprocess_range(ranges): events={} for start,end in ranges: if start not in events: events[start]=0 events[start]=events[start]+1 endp1=end+1 if endp1 not in events: events[endp1]=0 events[endp1]=events-end[p1]-1 sorted_times=sorted(events.keys()) count=[] current=0 for t in sorted_times: current+=events[t] counts.append(current) return sorted_times, counts def query_active_users(sorted_times,counts,timestamp): idx=bisect.bisect_right(sorted_times,timestamp)-1 if idx<0: return 0 else: return count[idx] range= [0, 5], [6, 8], [2, 9], [4, 10], [3, 5] sorted_times,counts=preprocess_ranges(range) print(query_active_users(sorted_times,counts,11)) [0,5].[2,9],[3,5],[4,10],[6,8] def test_active_users(): range= [[0, 5], [6, 8], [2, 9], [4, 10], [3, 5]] sorted_times,counts=preprocess_ranges(range) asssert query_active_users(sorted_times,counts,6)==3 assert query_active_users(sorted_times,counts,0)==1 assert query-active_users(sorted_times,counts,3)==0 #overlapping ranges=[[1,10],[2,9],[3,8],[4,7]] sorted_times,counts=preprocess_ranges(range) assert query_active_users(sorted_times,counts,1)==1 assert query_active_users(sorted_times,counts,11)==0 # Complexity Time complexity= O(N log N) for sorting events Space Complexity=O(N) for storing event data
      Frage beantworten

      Vorstellungsgespräch für eine Beschäftigung als Test Engineer

      3. Sep. 2025
      Mitarbeiter (anonym)
      Taipeh
      Angebot angenommen
      Positive Erfahrung
      Durchschnittl. Gespräch

      Bewerbung

      Ich habe mich über einen Personalvermittler beworben. Der Vorgang dauerte 3 Wochen. Vorstellungsgespräch absolviert im Aug. 2025 bei Google (Taipeh)

      Vorstellungsgespräch

      I recently had an interview for a Test Engineer position, and the process included several parts. First, I started with a self-introduction, briefly talking about my background, projects, and relevant experience. Next, I was given two coding problems. The first one was a LeetCode Easy problem about finding a path in a graph. The second was a LeetCode Medium problem, also about graph paths but more complex, involving probabilities and requiring a more optimized approach. In the end, I had the chance to ask the interviewer some questions about the role and team, which helped me better understand their work. Overall, it was a great experience, and I learned a lot from the process.

      Fragen im Vorstellungsgespräch [1]

      Frage 1

      The first one was a LeetCode Easy problem about finding a path in a
      Frage beantworten
      1