I applied through other source. The process took 1 day. I interviewed at Microsoft (Redmond, WA) in Nov 2019
Interview
Interviewed for an SDE II position with the Microsoft Academic Graph team.
I will say outright an absolutely terrible interview experience for me. The team asked me some specific questions about how I would add features in Microsoft Academic Graph. After this, during the second hour, they asked me an architecture question which I did very well on. Then they asked me to write the code for a specific data structure, going conceptually through the characteristics of this particular data structure with me, after a while telling me to write it in pseudo-code. I felt like I did pretty well up until this point, though I had felt that I didn’t implement the data structure completely. (They later told me that I didn’t pass the interview because I didn’t write complete code in C++ for this data structure).
What bothered me about this interview process however was that during the lunch interview my interviewer asked me a lot of very personal questions that were completely unrelated to the job. I told her about how I used to take care of children, and she told me that I should go back to doing that instead of being a Software Engineer. Furthermore, during the lunch interview the interviewer only consumed a single banana, and threw the rest of her food away. I strongly felt that, due to the nature of the questions that she was asking, and her generally condescending attitude toward me this was some sort of racist dig toward me (I am an underrepresented minority).
Going through this experience and watching her eat the banana while making chiding jokes about how I shouldn’t be a Software Engineer was completely humiliating, unprofessional and made this interview ultimately a waste of my time. Because of this, I keep a strongly negative impression of Microsoft as a company. There was another interview after this, but it was with the same person, and I felt completely uncomfortable about the entire thing. After this I was a pencil as a “parting gift”.
If this was some kind of a joke I am definitely not amused. Out of CS graduates with Computer Science degrees, Microsoft tends to not hire women and underrepresented minorities, including women of color such as myself. Microsoft should do better, including hiring interviewers that are sensitive to their own bias and blind spots, and who definitely don’t openly make fun of people. Furthermore, If they wanted me to implement the code, which was far more than 8 lines (the GeeksforGeeks.com implementation of this data structure in C++ is no less than 50 lines of code for instance) then it would be good to specifically tell the candidate to implement that data structure in actual code, in order to guide them in the right direction as opposed to the wrong one, even if the requirements somehow can’t be made clear for specific reasons during the interview itself.
I applied through a recruiter. The process took 1 day. I interviewed at Microsoft (Bengaluru) in May 2019
Interview
Interview with Microsoft (office 365 Hyderabad team) at their Bengaluru office.
Hi, I am a backend developer with 8 years of hands-on experience. One of the HR person from Microsoft approached me to check if I am interested in an opportunity with them, I was told that there will be total four rounds on the same day, 3 rounds followed by hiring manager round.
All the interviewers gave me enough time to ask questions, except the HM. They have been polite and calm all the time. Overall it was a great experience.
I have been to all the rounds and within two days I got a standard rejection mail.
Interview questions [1]
Question 1
Round 1:
2 interviewers in the panel, one was asking questions other was making notes on his laptop
Asked about my past projects, as soon as I mentioned “NoSQL/Cassandra” he asked:
• What’s NoSQL?
• Why you chose it over RDBMS?
• What can NoSQL achieve that RDBMS can not?
• Write code to find max sum subarray in a given array.
• Given a sorted array of integers with size n, find if there exists a number that is repeated at least n/4 times, n is length of array. Time complexity should be less than O(n). Explain approach and write code.
Initially I was asked to code in any language but later they kept me from writing scala code and ask me to write in other language, I wrote in Java.
Round 2:
A senior guy from PowerPoint mobile app team interviewed me.
• Given a circular LinkedList which is sorted, Given a node of this LL and an integer, WAP to insert the item in the LL so that the LL remains sorted after insertion, handle all edge cases.
• One more question that I forgot.
Round 3:
A lady (very senior) from Excel online team interviewed me.
• Same questions about NoSQL as in round 1.
• Given a list of train schedules (arrival and departure time), find the minimum number of platforms required to run the trains. Write a program.
• Design a phone book. Follow up: how do you store and retrieve data in Trie data structure?
Lunch Break!
Round 4 (HM round):
Very senior guy working on a instant messenger product.
• How have your other rounds been?
• Asked about my past projects, as I mentioned “NoSQL/Cassandra” he asked the same questions as in round 1.
• OO design of an elevator. Write interfaces and implementation and logic. Some questions on testing.
• Why you want to leave your current job?
• Why Microsoft?
• He told me about how they decide which team to deploy a new joiner in?
I applied through a recruiter. The process took 1+ week. I interviewed at Microsoft (Hyderabad) in Mar 2019
Interview
This was for Office 365 team. Was invited to attend a whole day interview at their campus in Hyderabad. Went in at 9 AM, came out by 5 PM.
Was interviewed by 4 interviewers, all of them from office team only. Could sense they are all very knowledgeable and pretty senior.
Each of them was very courteous and took good amount of time analyzing my expertise on the specific area they were interviewing on.
First round was problem solving and the interviewer, a senior engineer, was very specific on the code written, the edge cases, the readability, and extensibility of the code. Would check how I would extend the code for a more generic problem. Some brushing up on design patterns would help here. Took around 45 minutes.
Second round was a mix of low level design, data structures and algorithms, and high level design. Interviewer was a mid level engineer, very friendly, and this round went more or less like a friendly discussion. Ended with a datastructure problem, where I was asked to write code on paper. Took about 1 hr.
Third round was mostly high level design. Took by an ex googler and principal engineer here, too brilliant! Dug very deep into the intricacies of designing the system for the given problem. This round actually sealed it for me that I need to join this team. took around 1 hr.
Fourth and final round was probably with the hiring manager. Again very technical interview, on various aspects ranging from ds, algo, low level design, high level design. He took more time than the others.
Interview questions [1]
Question 1
1. Implement queue using an array, in circular fashion (if end is reached, add to start of array if free)
2. Circular traversal of 2x2 matrix
3. Max continuous increasing sequence in a given Binary Tree
4. Designing a graph API
5. Designing API throttling.
6. Designing a multi-game, multi-player service using a single threaded machine.
7. Sort a big file of integers using limited memory