Ir al contenidoIr al pie de página
  • Empleos
  • Empresas
  • Sueldos
  • Para empleadores

      Impulsa tu carrera profesional

      Averigua cuánto podrías ganar, encuentra el empleo perfecto y comparte información sobre tu vida laboral y personal de forma anónima.

      employer cover photo
      employer logo
      employer logo

      Google

      Empleador activo

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de Google | Empleos en Google | Sueldos en Google | Prestaciones en Google
      Entrevistas en GoogleEntrevistas para el cargo de Software Engineer en GoogleEntrevista en Google


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empleadores

      • Cuenta de empleador gratuita
      • Centro de empleador

      Información

      • Ayuda
      • Pautas
      • Condiciones de uso
      • Privacidad y opciones de anuncios
      • No vender ni compartir mi información
      • Herramienta de autorización de cookies

      Trabaja con nosotros

      • Anunciantes
      • Oportunidades laborales
      Descargar aplicación

      • Buscar por:
      • Empresas
      • Empleos
      • Ubicaciones

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor", "Worklife Pro", "Bowls" y sus logotipos son marcas comerciales registradas de Glassdoor LLC.

      Empresas seguidas

      Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información desde adentro.

      Búsquedas de empleo

      Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.

      Entrevista para Software Engineer

      26 ago 2014
      Candidato de entrevista anónimo
      Tel Aviv
      Sin ofertas
      Experiencia neutra
      Entrevista promedio

      Solicitud

      Me postulé en línea. Acudí a una entrevista en Google (Tel Aviv)

      Entrevista

      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...

      Preguntas de entrevista [1]

      Pregunta 1

      How would you design Google Images?
      2 respuestas
      26

      Otras evaluaciones sobre las entrevistas para el cargo de Software Engineer en Google

      Entrevista para Software Engineer

      4 may 2014
      Empleado anónimo
      Auburndale, FL
      Oferta aceptada
      Experiencia positiva
      Entrevista difícil

      Solicitud

      Me postulé a través de una recomendación de un empleado. Acudí a una entrevista en Google (Auburndale, FL) en abr 2014

      Entrevista

      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

      Entrevista para Software Engineer

      25 jun 2026
      Candidato de entrevista anónimo
      Londres, Inglaterra
      Sin ofertas
      Experiencia positiva
      Entrevista fácil

      Solicitud

      Acudí a una entrevista en Google (Londres, Inglaterra)

      Entrevista

      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.

      Preguntas de entrevista [1]

      Pregunta 1

      What is your favourite programming language
      Responder pregunta

      Entrevista para Software Engineer

      24 jun 2026
      Candidato de entrevista anónimo
      Sin ofertas
      Experiencia neutra
      Entrevista promedio

      Solicitud

      Acudí a una entrevista en Google

      Entrevista

      There was a technical screen within their coding platform, followed by a first-round technical interview, followed by a first-round behavioral interview, followed by second-round interviews, both technical and behavioral interviews.

      Preguntas de entrevista [1]

      Pregunta 1

      What was your role on a technical project you've worked on?
      Responder pregunta