Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For Employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      Google

      Engaged Employer

      About
      Reviews
      Pay & benefits
      Jobs
      Interviews
      Interviews
      Related searches: Google reviews | Google jobs | Google salaries | Google benefits | Google conversations
      Google interviewsGoogle Software Engineer interviewsGoogle interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Center
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy & Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent Posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls," and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalized job recommendations and updates by starting your searches.

      Software Engineer Interview

      Aug 26, 2014
      Anonymous Interview Candidate
      Tel Aviv-Yafo
      No offer
      Neutral experience
      Average interview

      Application

      I applied online. I interviewed at Google (Tel Aviv-Yafo)

      Interview

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

      Interview questions [1]

      Question 1

      How would you design Google Images?
      2 Answers
      26

      Other Software Engineer Interview Reviews for Google

      Software Engineer Interview

      May 4, 2014
      Anonymous employee
      Auburndale, FL
      Accepted offer
      Positive experience
      Difficult interview

      Application

      I applied through an employee referral. I interviewed at Google (Auburndale, FL) in Apr 2014

      Interview

      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

      Software Engineer Interview

      Jun 25, 2026
      Anonymous Interview Candidate
      London, England
      No offer
      Positive experience
      Easy interview

      Application

      I interviewed at Google (London, England)

      Interview

      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.

      Interview questions [1]

      Question 1

      What is your favourite programming language
      Answer question

      Software Engineer Interview

      Jun 23, 2026
      Anonymous Interview Candidate
      No offer
      Positive experience
      Difficult interview

      Application

      I interviewed at Google

      Interview

      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.

      Interview questions [1]

      Question 1

      Talk about how you resolve a conflict.
      Answer question