How did you secure an internship with Google Mountain View being from India?
-
-
Answer:
I didn't intern at Google MTV, but I know a bit about securing an internship there. Its a fairly standard process (works the same way for Facebook): First upload your resume here: http://www.google.com/jobs/application/application_student?action=add&job=Software+Engineering+Intern%2C+Summer+2013+-+North+America. If you're good (a combination of good grades and projects should do), you'll be contacted by a recruiter, who may schedule a non-technical interview first. You'll have to go through at least 2 rounds of technical phone interviews. For these, you should brush up your algorithms and data structures. If your major is Computer Science, revise your Operating Systems and Computer Networks notes. Solve lots of puzzles on TopCoder; the interviewer will definitely ask you to write code. Do well in the 2 interviews to get an offer. Getting a VISA should be a breeze. Good luck!
Anuj Kalia at Quora Visit the source
Other answers
Let me start by reducing the question to "How did you secure an internship with Google?". The rest of the question didn't add any specific information to the context so can be safely discarded. As far as I have heard from my contacts and as from my experience; where are you on earth doesn't matter and the only attribute that matters about which Google office you are applying to is whether or not there is a position available there. I had applied for Software Developer Intern positions with Google North America around first week of September 2012. A couple of weeks later when Google India came to IIT Bombay campus for their Internship Selection procedure; I also applied for a position in Google India as I was highly unsure if I would make it to Google US. But soon I received a reply from Google India that I already had an internship application "in process" at Google US; so they would not be able to consider me. Although the Google Internship application page allowed me to fill more than one positions at multiple office locations in the application; I still don't know why Google India refused to open another application for me. Phase 1: Resume Shortlisting Anyways, so after I filled in the online application form; I received the first mail from my recruiter by mid-September that my resume looks good to them! I forgot to mention; I had applied for Winter Internship instead of Summer Internship. It was not a mistake; but I had deliberately applied for the position unaware of the time-span of the programme. My recruiter informed me that the Winter Internship period would be 10 - 12 weeks. But IIT Bombay allowed only about 4 weeks of vacation. I requested her to get me in touch with a recruiter for Summer Internship as my resume was already shortlisted and the Summer Internship application process had just began. She was helpful and a week later I was in to the next phase of the Summer Internship application process. Phase 2: Technical Interviews The recruiter sent me a couple of forms that I had to fill in and submit before the technical interviews. One of them was a non-disclosure agreement. The other was some general stuff like educational qualifications and past projects. Then two consecutive technical interviews were scheduled within the next couple of weeks. The interviews were each of 45 - 60 mins duration with may be a 5 - 10 mins break in between. The interviewers typically ask both algorithm-intensive questions and some basic coding problems. But unlike in most other technical interviews; Google interviewers didn't ask me to write code in any particular language. Just writing pseudo-code was enough in almost all the problems they asked me. And they ask some really interesting real life challenges to test application skills. After the technical interviews, the recruiter informed me that she would contact me in about 2 weeks after Google reviews my information. Though she took about 3 weeks, she finally had good news for me :-) Phase 3: Project Matching My recruiter called me up to discuss regarding the next steps in the process. She said that I had to fill some more forms, this time they were much longer. The idea was to portray you skills and your interests as accurately as possible so that the hosts would be able to identify you as a potential candidate for their projects. I had to rate on scale of 5, both my proficiency and my interest in working on a particular area of Computer Science. Preferences for location of Google offices was also to be mentioned in these forms. I had filled in MTV, MTV, LA. My recruiter warned me that making it this far didn't not mean they could find a project that aligns with my skills and interests. So, there was not guarantee that I would be selected for a project. Then there was a long hibernation period. I didn't hear from my recruiter till about 1 and half months. Then she said there was a host from Google LA who wanted to talk to me about her project. But at that time I had to decline the interview because I was leaving for Japan. Again after an agonizing wait of about 1 month, she informed me about two hosts in MTV who wanted to interview me. I was quite excited and soon she scheduled both interviews. Both the project matching interviews were non-technical and were of 30 mins duration. The interviewer explains his/her project for about 10 - 15 mins. And for the remaining time, he/she asks about past experiences, projects, course work, interests and may be a couple of questions related to his/her project. Unfortunately I was not selected in either of those. I had to wait again.. But now opportunities were more frequent; about 1 interview every 2 weeks. After 3 more interviews, now I've finally received an offer from a host in Infrastructure and Testing project. Google's intern selection process is quite long (4 - 6 months) and painfully slow. So, start early and have patience :-) The questions in technical interviews would be nothing extra-ordinarily tough. Keep calm and think. Most questions asked to me were fundamental programming or algorithmic questions. Tech Interview 1 Average Calculation Given a list of integers, write a function calculate their average. Calculate running average after each integer. Find (and fix) possible boundary cases that might cause exceptions. Hint: Easy question. Mention problems with overflows and handle them. Remember to divide floating points not integers! If you accept an array into the function, do remember to check if it's NULL. Given a string matrix containing the information of running flights (columns like source, destination, arrival time, departure time ...), use any tools known to you to .. Extract the info of all flights from source X to destination Y. Extract a summary info of how many flights leave from each source and how many flights arrive at each destination. Justify your choice for the specific tool / language you would use. Hint: I used awk because it's available on any *nix system, is blazing fast and can be invoked right from the shell without compilation or blah. Gray codes: My interviewer asked me if I had heard about gray codes. He said, he was planning to ask me to code it. But was quite satisfied with my explanation and skipped over to next question. Hint: http://en.wikipedia.org/wiki/Gray_code. I have a huge set of files that we want to sync between two workstations (A, B). Suppose I know which workstation I was last logged into (A). But I cannot figure out which files I have changed because somehow all time stamps are lost! So now I have a few modified files and many old files on A and B still has the old copies of all files. I do not want to transfer all files from A to B blindly because that would consume a lot of network bandwidth. Is there any way I could do this more efficiently? Are there any possible exceptions that might occur if I do it like <answer to above question>? How would I try to fix these exceptions or how would I minimize them at least? Hint: Compute hash (checksum) of the files on both systems in parallel. Transfer only the checksums from one system to another (mention the assumptions on checksum size and how much bandwidth would be consumed in transfer). Finally mention a good estimate for what size of checksum you should go for (and any popular checksums that you can readily use: CRC/MD5/SHA) Tech Interview 2 Complexities What's the best sorting algorithm known to you? What's its time complexity? Why did you chose to speak about this particular sort? Do you think sorting can be performed with better time complexity than that? Why / Why not? Suppose we make a variant of merge sort (that would no more sort anything) like this: partition the list into 3 parts instead of 2. And then choose any 2 parts of these 3 and recursively apply our algorithm. What would it's time complexity be? Can you briefly outline a proof? Hint: Sorting cannot be done in better than (n log n). Read about the "Ω(n log n) Barrier": http://stackoverflow.com/questions/7155285/what-are-the-rules-for-the-n-log-n-barrier-for-sorting-algorithms. Complexity of the modified algo is O(n). Bit reverse Given a long string (array of characters), reverse the bits in the entire string. The first bit of the first character would be the last bit of the last character in the new string. Write pseudo-code and explain it's working on a small example Find any possible exceptions that might exist and how you could fix them? Can you think of ways to make your algorithm faster? Hint: Create a map from char to char and don't reverse each char. A New File System You are given the responsibility of developing a new file system for your company. Your supervisor is a non-technical person and so you cannot ask any technical questions to him. Instead, you would have to ask him non-technical questions that you expect he can answer; and then decide yourself the technical parameters based on his answers. What technical factors should you consider before starting to develop the FS? What decisions do you have to take and how would you extract the necessary features to be present in the FS, from the non-tech supervisor? Hint: What would the FS store specifically? Graphs/Images/Arbitrary files/...? Do we need version control? Concurrency control? etc .. Open ended question :-)
Saswat Padhi
In my case, before my first internship, I was referred by a Googler. Then, a recruiter asked me to send them my CV and transcripts. After grades and skills analysis, I've done 2 phone interviews and got approved. At the beginning of the interviews process, they ask what are the candidate's location preferences (I chose Mountain View (MTV), San Francisco and NYC). Finally, they found a team for me in MTV and arranged my J-1 visa.
Anonymous
Related Q & A:
- How To Apply For Winter Internship Chemical Engineering India?Best solution by Quora
- How can I secure my web page?Best solution by Information Security
- How to embed a Google Business view in a website?Best solution by quora.com
- How do I secure my SaaS startup?Best solution by Information Security
- How to google street view houses?Best solution by ChaCha
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.