Passa al contenutoPassa al piè di pagina
  • Lavori
  • Aziende
  • Stipendi
  • Per le aziende

      Migliora la tua carriera

      Scopri le tue potenzialità di guadagno, trova lavori da sogno e condividi approfondimenti su lavoro e vita privata in forma anonima.

      employer cover photo
      employer logo
      employer logo

      Google

      Azienda coinvolta

      Chi siamo
      Recensioni
      Stipendi e benefit
      Lavori
      Colloqui
      Colloqui
      Ricerche correlate: Recensioni su Google | Offerte di lavoro di Google | Stipendi di Google | Benefit di Google
      Colloqui di GoogleColloqui per Software Engineer presso GoogleColloquio di Google


      Glassdoor

      • Chi siamo
      • Contattaci

      Aziende

      • Account Business gratuito
      • Spazio per le aziende
      • Blog per le aziende

      Informazioni

      • Aiuto
      • Linee guida
      • Condizioni d'uso
      • Privacy e scelte pubblicitarie
      • Non vendere né condividere le mie informazioni
      • Strumento per l'accettazione dei cookie

      Lavora con noi

      • Inserzionisti
      • Carriere
      Scarica l'app

      • Cerca:
      • Aziende
      • Lavori
      • Località

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" e il relativo logo sono marchi registrati di Glassdoor LLC.

      Aziende seguite

      Non lasciarti sfuggire opportunità e informazioni privilegiate seguendo le aziende dove vorresti lavorare.

      Ricerche di lavoro

      Ricevi suggerimenti e aggiornamenti personalizzati avviando le tue ricerche.

      Colloquio per Software Engineer

      26 ago 2014
      Candidato anonimo a colloquio
      Tel Aviv
      Nessuna offerta
      Esperienza neutra
      Colloquio nella media

      Candidatura

      Ho presentato la mia candidatura online. Ho sostenuto un colloquio presso Google (Tel Aviv)

      Colloquio

      I contacted Google through their website and applied for a software engineer in the Tel Aviv Office. There was an initial phone call with an HR recruiter (I think a day after I submitted my online application) - Just general questions about who I am and what I am looking for. After around 1 week I came to the on-site screening interview - 45 minutes of relatively simple graph questions - DFS/BFS stuff, and maybe a bit more complex questions regarding binary trees, but nothing too special. The interviewer told me I did well, but that I should be a bit more careful about the aesthetics of the code. 2 weeks later I came to my whole day interview session - There were 6 interviews - I would say 3 which were more algorithmic, 1 which was almost pure coding, and 2 which were "design". The design interviews I remember - 1) Design an online battlefield game - What would be the protocols between the server and the client, the algorithms and game flow to decide the state of the game, some basic networking (which I struggled with). 2) How would you design Google images? The premise was that I should be able to search regarding specific features, for example the blue content, or images that are in pages that contain specific keywords. This was a very open-ended question, we thought "together" about solutions, what will be the size of my data which maps words to images, where would I store the images, how many servers I would need, etc... I had no previous experience in large scale design - The interviewer said that it wasn't expected of me. I thought I did relatively well, but I guess they ARE looking for people with previous experience in large scale design, from the input I got later on. Algorithmic interviews I remember - 1) How would you design an efficient algorithm to find out in a sorted array which number appears the most times. I started from the simple solution, and continued to a more complex one ( with some hints along the way from the interviewer) that in summary does a binary search of the number of times the most frequent number appear - (think about it - I have an array of size N, if the most frequent number appears N/2 times, then I can infer this just from sampling the values at indexes (0,N/4,N/2,N*3/4,N). I thought I did well in that interview. 2) Write code that prints the Cartesian product (row by row for each combination) of a given list of lists (that contain integers). Since you don't know from beforehand how many lists there are, you obviously can't just hard-code lots of for loops. During the interview I gave two solutions - A recursive one, and after writing it out, they asked me to also write a non-recursive one - Which I did with a counter which maps each times to a different combination of values (with some mod mathematics). I think I also did well in that interview. There was a lunch break where it was obvious they simply told someone that today "you have to eat lunch with a candidate". It was a bit awkward at first, but it did give me a chance to interrogate him about how it is to work in Google. The food was extra yummy. After one week I got a response that I didn't pass the interview process. The guy stressed that I was "Close", that I did really good on 2 interviews and a bit less good on the other 4. Oh well. My preparation to the interview consisted of doing all the regular algorithmic/coding questions - I think that did prepare me well to the relevant interviews. But there was no real preparation to the more general "System Design" interviews - I think it's a bit more difficult to prepare for those, but I guess I still would have invested in that more time, retrospectively. Otherwise - I thought I did pretty well in the interview day - I guess that they can be REALLY picky about taking people who really did perfect in each and every interview. Just for reference I had an interview day at Facebook a few days later - I thought I did much better at the Google interview day, but ended getting an offer from Facebook and not Google. I guess also some luck doesn't hurt. The responsive of the hiring recruiter was always prompt. He was very nice, though at times it was a bit ridiculous - telling me again and again to call him If I have any problems, even if it's during the weekend or late at night. I mean it was nice to have a sponsor that "cares for me" during the process, but there's no need to push it...

      Domande di colloquio [1]

      Domanda 1

      How would you design Google Images?
      2 risposte
      26

      Altre recensioni di colloqui per Software Engineer presso Google

      Colloquio per Software Engineer

      4 mag 2014
      Dipendente anonimo
      Auburndale, FL
      Offerta accettata
      Esperienza positiva
      Colloquio difficile

      Candidatura

      Ho presentato la mia candidatura tramite segnalazione di un dipendente. Ho sostenuto un colloquio presso Google (Auburndale, FL) nel mese di apr 2014

      Colloquio

      Direct onsite because I interviewed in the past and did well that time. From the time I sent my resume to interview day: 2 weeks. From interview day to offer over the phone: 2 weeks. The syllabus for the interviews is very clear and simple: 1) Dynamic Programming 2) Super recursion (permutation, combination,...2^n, m^n, n!...etc. type of program. (NP hard, NP programs) 3) Probability related programs 4) Graphs: BFS/DFS are usually enough 5) All basic data structures from Arrays/Lists to circular queues, BSTs, Hash tables, B-Trees, and Red-Black trees, and all basic algorithms like sorting, binary search, median,... 6) Problem solving ability at a level similar to TopCoder Division 1, 250 points. If you can consistently solve these, then you are almost sure to get in with 2-weeks brush up. 7) Review all old interview questions in Glassdoor to get a feel. If you can solve 95% of them at home (including coding them up quickly and testing them out in a debugger + editor setup), you are in good shape. 8) Practice coding--write often and write a lot. If you can think of a solution, you should be able to code it easily...without much thought. 9) Very good to have for design interview: distributed systems knowledge and practical experience. 10) Good understanding of basic discrete math, computer architecture, basic math. 11) Coursera courses and assignments give a lot of what you need to know. 12) Note that all the above except the first 2 are useful in "real life" programming too! Interview 1: Graph related question and super recursion Interview 2: Design discussion involving a distributed system with writes/reads going on at different sites in parallel. Interview 3: Array and Tree related questions Interview 4: Designing a simple class to do something. Not hard, but not easy either. You need to know basic data structures very well to consider different designs and trade-offs. Interview 5: Dynamic programming, Computer architecture and low level perf. enhancement question which requires knowledge of Trees, binary search, etc. At the end, I wasn't tired and rather enjoyed the discussions. I think the key was long term preparation and time spent doing topcoder for several years (on and off as I enjoy solving the problems). Conclusion: "It's not the best who win the race; it's the best prepared who win it."
      2501

      Colloquio per Software Engineer

      25 giu 2026
      Candidato anonimo a colloquio
      Londra, Inghilterra
      Nessuna offerta
      Esperienza positiva
      Colloquio facile

      Candidatura

      Ho sostenuto un colloquio presso Google (Londra, Inghilterra)

      Colloquio

      Had an intro screening call. They were mostly interested in how well I could code in python and java. They did not give me a follow up interview. I enjoyed my experience.

      Domande di colloquio [1]

      Domanda 1

      What is your favourite programming language
      Rispondi alla domanda

      Colloquio per Software Engineer

      23 giu 2026
      Candidato anonimo a colloquio
      Nessuna offerta
      Esperienza positiva
      Colloquio difficile

      Candidatura

      Ho sostenuto un colloquio presso Google

      Colloquio

      2 rounds of interviews with the first round being a technical and a behaverial. The second round being two technicals. The format was straight forward and the interviewer was professional.

      Domande di colloquio [1]

      Domanda 1

      Talk about how you resolve a conflict.
      Rispondi alla domanda