Upload Button Icon Add office photos

Microsoft Corporation

Compare button icon Compare button icon Compare
4.1

based on 1.6k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Microsoft Corporation SDE (Software Development Engineer) Interview Questions and Answers for Freshers

Updated 10 Jan 2022

2 interviews found

Sort by: Popular

5 Interview Rounds

Interview Questions

  • Q1. Find and element in a rotated array View Answers (1)
  • Q2. Given two linked lists both represent a number . Create a linked list that contains its sum View Answers (1)
  • Q3. You have to design a Text Editor like notepad . You are concerned about the following functionalities - insert, delete, and search.You can assume the other func...read more Add Answer
  • Q4. He asked me about the question given to me in the previous round i.e Text Editor . I gave him a brief explanation on my approach . He then gave me another quest...read more Add Answer
  • Q5. Given a binary search tree , print the path which has the sum equal to k and has minimum hops. i.e if there are multiple paths with the sum equal to k then prin...read more View Answers (1)

Interview Preparation Tips

Round: Test
Experience: The MCQs were based on C.C++,Java and some Operating System questions. Around 200+ from our college sat for this round.

Tips: Solve C C++ output related questions.
Difficulty level : Medium
Duration: 30 minutes
Total Questions: 15

Round: Test
Experience: After the first round around 100 (consisting of the internship students as well) students were shortlisted for the second round
Everyone got different sets of questions. The questions I got were :
Given two arrays were digits of one array represent a number,maximize the number by replacing it with elements of second array.
eg:
arr={3,1,4,5,6}
rep={1,9,5,2,3}

after replacement
arr={9,5,4,5,6}
one digit of rep can be used to replace only once.
For this almost everyone who got this question used a brute force method.But I had used a different approach .I constructed a max heap of rep array.And ran a loop checking if the max element of rep was greater than the element in arr and then replaced it in arr and deleted the same from the maxheap.

Given a matrix ,where each cell represents a value of strength.The value could be positive negative or zero. At each cell the strength value is added.You have to reach from point (0,0) to point (m-1,n-1) if at any point the strength becomes zero or negative then you cant proceed further.Find the minimum strength required before starting to reach the end of the matrix.
eg . {{ 1,-3,0},
{-2,1,-1}} Ans: 2 ( (2+1+(-2)+1+(-1)=1 path taken )
I gave a DP solution but was unable to pass a few test cases in this question.
Tips: Practice problems on Data Structures like Trees, Arrays , Heaps , Linked Lists ,etc
Duration: 90 minutes
Total Questions: 2

Round: Test
Experience: Around 30 students consisting of students from other colleges as well were called On-site. This was a written round.Everyone was given around 45 mins and 1 question.
Given the root to a binary tree, a value n and k.Find the sum of nodes at distance k from node with value n.
This is similar to this question on geeks ->-----/
I was able to do this quite quickly :D I even explained my answer to the HR and he asked me to write different types of test cases to exhaustively check if my code works on all of them.
After this round around 14 people were shortlisted.

Round: Technical Interview
Experience: These were fairly easy questions . I knew the solutions and explained it to the interviewer.He asked a few questions on them , seemed satisfied.Asked me if I had any questions for him . So I asked him about the different technologies that a new SDE would work on and things like that. I had a pretty good discussion with him he told me many things from his end too.
I made it to the next round then :D
Tips: Well one thing I realized after giving interviews was when they ask the candidate for any questions then you should always ask something , shows that you are interested.

Round: Technical Interview
Experience: He told me to take my time and give the solution. I gave him a solution of considering the text as a linked list of words . Where each node in the linked list contained the word string and an index .And for every node in the linked list I will have Trie structure. I used trie for efficient search.What I suggested was that I use the trie whenever the user enters a word and insert it into the trie and the leaf of that word will contain the index of that word plus the pointer to that node in the linked list . If suppose the trie already has the word then i increase the word count in the leaf and the leaf will contain a vector that has the list of indexes where the word has occurred and the list of pointers where the word is present in the list.I wrote the code and explained how it can handle all corner cases . We discussed the the solution and he asked me certain questions on different test cases . My approach handled them well. He seemed satisfied . He added to the question that the search query could contain words or phrases . So my use of indexes could handle the phrase search :) . I also suggested that instead of Trie data structure we could use a Ternary Search Tree as that would be more space efficient.
Tips: Practice Design questions too besides Data Structure problems

Round: Other Interview
Experience: This was a HR+Technical Interview

The interviewer was quite experienced and very pleasant. He asked me how my previous rounds went.He was going through my performance review from the previous rounds. He took a glance though my CV and asked me about the projects I did. He saw that I had interned at IITB so he asked me a lot on that project. He also asked me some basic HR questions like Why should Microsoft hire you ? Where do you see yourself in the next 5 years ?.He was very impressed with my academic record and my AIEEE rank. Asked me how I handled my 12th board exams and entrances.He made it very comfortable and was almost chatting and getting to know about me.
Question 1:
Thankfully I was just going through this question just before this round :D . I suggested the solution using Trie and Min Heap.
Similar to -> -----/
Question 2 :
First I gave him the brute force approach . Similar to ->-----/
But I knew it wasnt using the fact that we have a Binary Search tree . So the interviewer gave me some hints - like what is main criteria of a BST . I immediately figured out that the minimum path will always be on the right side of the node because it has the larger value. I told him the solution he seemed satisfied.
He then asked if I has any questions for him . So I asked him about where I can improve myself , he said I didnt need any improvement I am doing very well and that I should jus keep doing what I am doing :D That certainly made my day :) I asked a couple more questions about Microsoft and then left.

Finally after a week the results came I received the mail that I had been shortlisted for a Full Time Position :D
Tips: Have a good grasp on Data Structures. Solve as many problems possible from Geeks4Geeks
Be confident in the interview . Have a smiling face and be adaptable to the question . The interviewer can anytime change or twist the question just to confuse you.
The interviewers are very helpful , if you feel stuck communicate with them ..explain your approach they will give you hints.
When the interviewer gives the question listen to it carefully do not immediately rush to writing the code .. ask him about the different criteria and restrictions pertaining to the question.
Check your code with all possible test cases and list them.
Lastly , even if you arent able to get the right solution then just explain your approach . Recruiters analyse how you tackle the problem not necessary that you have to have the accurate solution.


General Tips: Be confident in the interview . Have a smiling face and be adaptable to the question . The interviewer can anytime change or twist the question just to confuse you.
The interviewers are very helpful , if you feel stuck communicate with them ..explain your approach they will give you hints.
When the interviewer gives the question listen to it carefully do not immediately rush to writing the code .. ask him about the different criteria and restrictions pertaining to the question.
Lastly , hard work goes a long way ! Never loose hope. I got placed in Oracle Applications and Microsoft after being rejected by almost 6 companies :) And believe me those interviews also taught me a lot .
Learn from your failures and don't lose hope :)
Skills: Object Oriented Programming (OOP) Basics, Basic C/C++, C Programming, Algorithms And Data Structures
College Name: NIT Bhopal
Motivation: Microsoft is dream company for any Computer Science Engineer. And I am glad I got this opportunity.

Skills evaluated in this interview

SDE (Software Development Engineer) interview

user image E-Learning Bridge

posted on 3 Dec 2021

Interview questions from similar companies

2 Interview Rounds

1

Aptitude Test Round

Aptitude test was of medium level with some pseudo-code o/p questions

2

Coding Test Round

Sort array based on frequency,etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice as much as you can on leetcode medium

Software Engineer Interview Questions

Thomson Reuters user image Abhishek Varanasi

posted on 9 Oct 2024

Interview experience
4
 Good
Difficulty level
 -
Duration
 -
Result
 -

3 Interview Rounds

1

Technical Round (2 Questions)

  • Q1. Basic java fundamentals
  • Q2. Spring boot,sql
2

Technical Round (2 Questions)

  • Q1. Some technical questions from manager
  • Q2. Some challenges or scenario based questions
3

HR Round (2 Questions)

  • Q1. Salary discussion mostly
  • Q2. Benifts that they offer with TR

Software Developer Interview Questions

UKG user image Anonymous

posted on 13 Jun 2024

Interview experience
1
 Bad
Difficulty level
 Easy
Duration
 Less than 2 weeks
Result
 Not Selected

I applied via Naukri.com and was interviewed in May 2024.

1 Interview Round

1

Technical Round (3 Questions)

  • Q1. The interviewer is from testing panel how the testing panel can take a developer interview they don’t have any knowledge about java worst interviewer in my life...read more
  • Q2. What is encapsulation. Protected and default difference i have to explain her with example. Collection and hashmap i explain all the things in hashmap even the ...read more
  • Q3. She asked me about helm chart and aws.I did answer according to it. My interview was pretty well but very next day what i got to know from HR that my basic was ...read more

Interview Preparation Tips

Topics to prepare for UKG Software Developer interview:
  • Basic Java
  • Coding
Interview preparation tips for other job seekers - Don’t expect anything from UKG even after u did very well in your interview.Pathetic experience worst interviewer.I wish there should be some ukg review portal so that i can share the interviewer feedback as well.
Interview experience
3
 Average
Difficulty level
 -
Duration
 -
Result
 -

2 Interview Rounds

1

Coding Test Round

Karat Interview for next filtering the candidate

2

One-on-one Round (2 Questions)

  • Q1. Design Snake Game (Nokia based)
  • Q2. Ballot based voter

Skills evaluated in this interview

Interview experience
5
 Excellent
Difficulty level
 -
Duration
 -
Result
 -

3 Interview Rounds

1

Aptitude Test Round

It was about 45mins aptitude test .

2

Technical Round (1 Question)

  • Q1. I was asked about the double Linked list, stack ,Queue.
3

Technical Round (1 Question)

  • Q1. Logical questions

Software Developer Interview Questions

SAP user image Anonymous

posted on 21 May 2024

Interview experience
5
 Excellent
Difficulty level
 Moderate
Duration
 Less than 2 weeks
Result
 Not Selected

I applied via campus placement at Indian Institute of Technology (IIT), Kanpur and was interviewed in Nov 2023.

2 Interview Rounds

1

Coding Test Round

2 problems, 60 minutes. You have to pass both to get interview.

2

One-on-one Round (3 Questions)

  • Q1. Leetcode medium-hard
  • Q2. Maximum area rectangle of 1s in a binary matrix
  • Q3. K-reverse a linked list

Skills evaluated in this interview

Interview experience
5
 Excellent
Difficulty level
 -
Duration
 -
Result
 -

1 Interview Round

1

Technical Round (1 Question)

  • Q1. Oops concepts , collection frameworks basic questions on core Java .
Interview experience
1
 Bad
Difficulty level
 -
Duration
 -
Result
 -

I applied via Referral

3 Interview Rounds

1

Resume Shortlist Round

Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
2

Aptitude Test Round

First round is a hectic 3 hr aptitude + java snippets test, hirepro based.

3

One-on-one Round (1 Question)

  • Q1. Not Applicable for me

Interview Preparation Tips

Interview preparation tips for other job seekers - I had miserable experience with this company, I wasted 3 hr for aptitude round and 2 weeks of preparation for interview. I was shortlisted for interview round and informed that interview would be held after a week, but later I received that positions filled, you are in waitlist. By this, I understand how dumb this company is(Hyderabad location). Any company would select the best from a pool of applicants. But this company selects you in first come first serve. This is sheer absurdity. Don't waste your precious time for this company, note that I am talking about Hyderabad campus.

Microsoft Corporation Interview FAQs

How many rounds are there in Microsoft Corporation SDE (Software Development Engineer) interview for freshers?
Microsoft Corporation interview process for freshers usually has 2 rounds. The most common rounds in the Microsoft Corporation interview process for freshers are Resume Shortlist and Technical.
What are the top questions asked in Microsoft Corporation SDE (Software Development Engineer) interview for freshers?

Some of the top questions asked at the Microsoft Corporation SDE (Software Development Engineer) interview for freshers -

  1. Given a binary search tree , print the path which has the sum equal to k and ha...read more
  2. Given two linked lists both represent a number . Create a linked list that cont...read more
  3. Find and element in a rotated ar...read more

Tell us how to improve this page.

Microsoft Corporation SDE (Software Development Engineer) Salary
based on 493 salaries
₹18 L/yr - ₹70 L/yr
33% more than the average SDE (Software Development Engineer) Salary in India
View more details

Microsoft Corporation SDE (Software Development Engineer) Reviews and Ratings

based on 11 reviews

4.0/5

Rating in categories

4.1

Skill development

3.6

Work-Life balance

3.5

Salary & Benefits

3.6

Job Security

4.0

Company culture

3.6

Promotions/Appraisal

4.0

Work Satisfaction

Explore 11 Reviews and Ratings
Software Engineer
1.8k salaries
unlock blur

₹13 L/yr - ₹50 L/yr

Senior Software Engineer
979 salaries
unlock blur

₹25 L/yr - ₹95 L/yr

Software Engineer2
948 salaries
unlock blur

₹20 L/yr - ₹70 L/yr

Support Engineer
596 salaries
unlock blur

₹7 L/yr - ₹30 L/yr

Consultant
587 salaries
unlock blur

₹12.9 L/yr - ₹39 L/yr

Explore more salaries
Compare Microsoft Corporation with

Google

4.4
Compare

Amazon

4.1
Compare

Deloitte

3.8
Compare

TCS

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview