The Microsoft SDE Interview

2011-04-20

This is the first of several interviews from fall of 2010 that I will document.

The Microsoft Software Development Engineer Interview is hard. While no interview process is perfect, they do a lot of things right in terms of setting a high bar, as well as showing off what the company has to offer. It is exactly what you'd expect from a world-class software company that has fairly high standards for engineers.

Background

Engineering candidates are always subjected to a phone screen before being flown in. However, I had an offer from Amazon.com and happened to be in the area, so I tried to set up an interview immediately to avoid having to fly out again. Microsoft initially refused, quoting their standard procedure, but then inexplicably reversed its position the next day.

In general, Microsoft arranges travel and a (very nice) hotel, and reimburses meals generously — up to $75 per day.

The Experience

The Microsoft campus resembles that of a university, with a few differences. Free soft drinks (and to a lesser degree, snacks) abound. Hybrid buses and Priuses shuttle employees around. Security is also very tight, although I never got the sense that it was overbearing as with government contractors.

The interview process itself is very well organized and structured. Candidate shuttles take you directly from building to building on demand. For the most part, everything went smoothly (except a snowstorm cancelled all cab service before I returned to my hotel, but that is not Microsoft's fault).

Interview the First

My first interview was in the office of a principal engineer lead. The question was to code an algorithm to draw a circle. Of course, the general equation is x2 + y2 = r2. My first attempt was to do the following: set x = -r, and then continually increment x until it was equal to r. At each step, use the equation to calculate the value of y given x, and then plot it. This gives a semi-circle. I observed that since a circle is symmetrical, I could simply draw the other half of the circle by reversing the y axis. However, this wasn't fast enough, so I was forced to rethink my algorithm. It turns out that a circle is also symmetrical along the y axis, so I only needed to calculate a single quadrant of the circle, and could simply mirror along the x and y axes. This was still not fast enough for my interviewer.

After a carefully placed hint, I realized that a quarter circle is actually symmetrical as well - so that only 1/8 of the circle needs to be calculated. The rest of the interview consisted of me refining the algorithm — namely, accounting for any gaps that might appear in my circle (which can be fixed by taking into the account the slope of the line that is being plotted and choosing to either use x or y as the given).

Interview the Second

My second interview was about sorting a large list of numbers in linear time. This was a fairly standard problem with the additional constraint of a very small amount of working memory: 4KB. The problem was further qualified: numbers can only be between 0 and 30,000, and no number appears more than once. Given these constraints, I was able to come up with a simple algorithm: first, allocate a large binary array where the index of the array corresponded to the existence of a number. Then, for each number in the unsorted list, I would set the corresponding array index to the 'on' position. Then returning the sorted results is simply a matter of traversing the array and finding the 'on' elements.

I was tasked with implementing this solution in workable code, and told that the smallest denomination available was a byte. So I created a byte array and used bit-shifting to calculate and set the bits correctly (with each element in the array representing 8 numbers). The final solution requires O(n+m) time, where n is the size of the unsorted list and m is the size of the dictionary (in this case, 30,000).

Then, in the spirit of progressively making a hard problem harder: I was told to sort the list with 2KB of memory. This means the range of all possible numbers cannot be enumerated in memory, since 30,000 bits requires just under 4KB to store. The solution to this required a bit of trickery: preprocess the unsorted list into two partitions: the first half to contain only numbers 0-14,999, and the second 15,000-30,000. This can be done in linear time (with respect to the list size) using two pointers on either end of the list: it is the same as the partition algorithm in quicksort where the pivot is the middle of the dictionary. Then process each sublist using the exact same algorithm I described above, paging in and out as needed to stay within 2KB of memory. This can be applied recursively to sort a list in 1KB of memory, etc.

Interview the Third

My third interview was over lunch. This one was more theoretical in nature, asking basic operating system fundamentals:

Q: What is the difference between a thread and a process?
A: A process is self-contained and gets its own virtual address space. A thread shares heap space with other threads in the same process, making communication easier and faster, and also conserving memory at the expense of isolation and stability.

Q: How would you communicate between threads?
A: One can communicate between threads using shared memory, or by using a mutex library such as pthreads that allows waiting and signaling on locks.

Q: How would you communicate between processes?
A: By opening a socket, using named pipes, or the filesystem.

Back in the office, I was tasked with describing some data structures and the appropriate use of them - for example, an array vs. a linked list. This is standard fare that should elicit a response detailing the various tradeoffs in time and space complexity in Big-O terms.

I was then asked to code a function to swap two nodes in a linked list. This is fairly straightforward. Then I was to expand on this to swap nodes in a doubly linked list. This actually requires modifying up to 6 different pointers. Obviously, a temp variable is needed as well. I struggled somewhat with this because it is very difficult to keep them all straight in your head.

I eventually managed it, but there are also a variety of corner cases that you will be expected to account for, such as when one of the nodes is at the beginning or end of the list, or if both parameters are references to the same node.

I was then asked to come up with a list of test cases for my function. This is fairly straightforward, although obviously creativity and some more bizarre edge cases would be a bonus. For example — if the two nodes being passed even belong to the same list. I think the point of this exercise, like many of the others, is to demonstrate a desire for clarity in the face of ambiguous problems. It is wise to ask clarifying questions regarding expected behavior and problem scope.

Interview the Fourth

This interview started with more discussion of data structures, mostly centered around trees and the complexity and usefulness of binary trees. I was asked to discuss how to calculate the height of a binary tree, test whether it was full or not, and find the depth of a given node.

The height calculation was especially important, because it leads into the main problem. My initial reaction was to simply store the height in the node as it was inserted. However, without such a data field or the option to add it, the second best solution is to do a count by recursively getting the depth of the parent node. This is obviously O(logn) in time, and the best we can do.

I was next asked to modify the node structure so that each node in a full binary tree would point to the node on its right. I was able to do this in linear time by using a breadth-first traversal and adding a pointer at each step of the way, except for when the height of the next node is different.

We had leftover time, so he asked a brain teaser: fix existing code with a single change to make it count from 0 to 10 instead of to infinity. I needed a hint but got it after some time.

Interview the Fifth

The fifth interview is the championship round. I was now given the choice to either pick the standard question, or the much harder one. Unable to restrain my curiosity, I opted for the harder problem. The interviewer then asks me if I have ever heard of the trie data structure. Slightly relieved, I replied in the affirmative, although I did not remember the exact details. He went on to briefly explain it.

Then, he asked me to code the class, including all the members and basic read/insert operations. I was able to do this fairly easily on the first attempt. I was then asked to discuss the various uses of the class, including its suitability for use in a dictionary spellchecker (Although I know Levenshtein, it was not until later that I realized they could be combined to also create spelling suggestions very efficiently).

The final question was fairly challenging: How would one compress a trie? I answered that it depended on the characteristics of the data that it contained. While he liked this observation, it was obviously not an answer he was satisfied with. After some prodding I observed that the bottom tries were likely to be very sparse, particularly in words that did not share many common substrings. I created an adaptive algorithm that would try to store the endings of words as strings, reserving the conversion to a trie only in the case where necessary.

At this point I was expecting him to unload the Final Question that would make me regret asking for the "hard" problem, but none came. That was the end of the interview.

Aftermath

Microsoft, not surprisingly, failed to follow up with me in the promised timeframe. A few days after the date had passed, the recruiter emailed me to set up a phone call, who informed me that I had an offer.

Replies

Max
2012-02-10

It looks like you described real bloody fight, but not an SDE interview.

I'm scared

csprajeeth
2012-08-13

Dude, this is by far the best interview account i have ever read :)

sonia
2013-01-25

hi congrats ,
i want to ask u a question ..i m appearing for microsoft interviews next week ..but i m already having an offer from oracle for oracle cloud services ..so should i tell microsoft about this offer or not ??because microsoft is my dream company and if selected i ll definitely join ms ..but i jst had this confusion whether i shud inform them or not ??pls suggest something ..

Peter Cai
2013-02-03

You should mention it if given the opportunity, but my guess is it won't materially change your interviewer's opinion about you (speaking personally and not on behalf of Microsoft).

cnguyen
2013-02-09

Hi,
I was wondering why you chose MS over Amazon?

Peter Cai
2013-02-13

From having evaluated both offer packages personally:

1. Substantially better benefits (health, wellness, employee stock purchase plan, 401k matching, perks), and slightly better overall compensation since the 2011 companywide salary bump and stock-for-cash change. If you do your math and play your cards smart, you can increase your cash income an additional 5-10% risk-free by taking full advantage of ESPP and 401k.
2. Extremely generous relocation package - makes up for not getting a hiring bonus (I hear one can be negotiated now, I didn't get one).
3. Stock vesting is substantially faster (for Amzn, stock vesting is all backloaded so the last 80% or so vests in years 3 and 4). At Msft the vesting is 25% every year.
4. I get my own office.
5. No on-call rotations. This is changing for some teams that do services.

Drawbacks:
1. Amazon stock goes up and to the right more. Microsoft pays a dividend, but it's not very significant and annual stock grants are paltry.
2. Amazon is usually better with the hiring bonus (it is prorated for 365 days after it is awarded).
3. Amazon is a more agile, smaller company (depends on team, some Microsoft teams have adopted agile but they have a hard time shaking 30 year old habits). There is potential for faster promotion within the company than at Microsoft overall (according to several reliable sources, again this is a function of your team and your manager as well as your individual performance and culture fit).

Tossups:
C++/C# vs Java. C# is a vastly superior language but Java is Java.

john
2014-02-28

Hi,
I done with microsoft onsite interview for SAP position, Interviews went well but no response even after 3.5 weeks, sent 3 mails to the recruiter but no response, any idea what would be the situation? Am I going get offer or not? do I need to wait for some more time or proceed with other offers?

Peter Cai
2014-03-01

Hi John,

Unfortunately I would guess you have a response in the negative. In exceptional cases you may have an offer, but just slipped through the cracks because the recruiter went on vacation, left the company (happens more often than you'd think), or was transferred and dropped the ball on closing your loop. But in that case you would generally expect the team you are joining to realize communication was broken and reach out to you directly. Since that isn't the case I would conclude your interview most likely did not end with an offer.

Ivan
2015-05-02

Hi, I want to interview at Microsoft, and was wondering if you could give me a referral or a tip by which I can get an opportunity to interview there.

Peter Cai
2015-05-03

Ivan - You don't need a referral to apply and it won't help, just submit your application online and they will reach out for a phone interview.

VeeDash
2015-10-31

Hi Peter great account of your interview!! I was wondering if you dont mind explaining. "So I created a byte array and used bit-shifting to calculate and set the bits correctly (with each element in the array representing 8 numbers)." in your first interview. I am able to see how a bit array of 30000 can represent values in an unsorted array.
How can the same be done with a byte array using bit shifting?

Peter Cai
2015-12-05

If the smallest unit you can use is a byte, but you really need bit granularity, you can simulate 8 bit arrays with a single byte. You just have to have a method of translating back and forth between your array “index” and the actual bit in the byte you want to manipulate. I've since long forgotten how I solved this problem in detail, but I may have been referring to simply calculating how to flip a particular bit in an array of bytes, and not to an actual bitwise shift operation.

Sreejith
2017-04-28

Hi Peter,trec
Hope you are doing good.

Just wanted to know what this translates into for a SDE position: 1.) 2 phone screens

Called in for onsite interview in Seattle office
2.) First onsite interview (technical) around 70 mins
3.) Second onsite interview (technical+behavioral+past experience etc…..) 60 mins
4.) Lunch with the same person who took my second interview (40 mins). I dont know if this was part of interview process or not. No technical questions. Still guessing what this was all about. Talked about Seattle and NY etc….I am from NY.
5.) Next interview (technical+past experience) 60 mins
6.) Next interview (technical +behavioral) 80 mins…..


Its only 4 days since the interview. So I cannot press them for the result also. The last person told me manages the team, but did not tell me whether he is the hiring manager or not. But I cannot affirm also that he is the hiring manager because during phone screen , another manager interviewed me. Does this mean its a fail ?

Jean
2019-03-08

I have an onsite coming up for an engineering lead position. Any insights as to what to expect?