Developer applicants have rated the interview process at Microsoft with 4 out of 5 (where 5 is the highest level of difficulty) and assessed their interview experience as 50% positive. To compare, the company-average is 68.2% positive. This is according to Glassdoor user ratings.
Here are the most commonly searched roles for interview reports -
I applied online. I interviewed at Microsoft (Tel Aviv) in Mar 2026
Interview
First you have to complete a home assignment of two Leetcode questions in 90 minutes (can't remember them, but medium difficulty) .
After that, you're invited for an interview day (virtual, over Microsoft Teams)
In the first interview I was introduced to the team leader, the role I was going to be assigned to, and we talked about my previous experience and education, showcasing a project I was taking part in, and then we went on to do a simple Leetcode question.
The second interview was straight up two Leetcode questions and that's it.
All the interviewers were friendly, professional and made me feel like they wanted me to succeed, great experience overall.
Got a call one day later telling me I got accepted.
Interview questions [5]
Question 1
Introduce yourself, showcase a project you took part in.
What were the challenges? Which parts were you responsible for? and other project specific questions
You're given an NxM matrix consisting of '*' and '.' values. Return a new matrix of size NxM, such that each '.' is replaced with the number of its neighbors that are equal to '*' (minesweeper problem but easier)
Implement a FastArray:
Init(n): initializes the FastArray to be of size n
Set(i, v): Set the value at index "i" to the new value "v"
Get(i): Get the value at index "i"
SetAll(v): Set all the values to "v" (calling the Set method overrides this for the specific index it was called on)
All operations should be at O(1) time complexity
Implement a BST Iterator:
init(root): Initialize the BST Iterator with the root of the tree (TreeNode)
getNext(): Return the smallest value (which wasn't returned so far)
hasNext(): Return True if there are values you haven't returned yet, False otherwise
I applied through a staffing agency. I interviewed at Microsoft (Redmond, WA)
Interview
The interview consisted of 4 LeetCode style questions. The interviewers were very generous with the time and gave you several hints. I recommend reading up and studying basic graph and string parsing questions
I applied online. I interviewed at Microsoft (Redmond, WA) in Jan 2026
Interview
Did 1st round coding interview, followed by onsite which had 3 rounds. All 4 rounds consisted of a short intro followed by coding question, Mostly class design problems, Interviewers were positive and encouraging