Upload Button Icon Add office photos

Microsoft Corporation

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Microsoft Corporation Intern Interview Questions, Process, and Tips

Updated 16 Dec 2024

Top Microsoft Corporation Intern Interview Questions and Answers

  • Q1. Reverse the order of words in a given sentence(an array of characters)
  • Q2. How are you fetching data through api in your project.And how machine learning is working in your project
  • Q3. Given N people of an M*M grid, find the point that requires the least total distance by all people to meet at that point.
View all 15 questions

Microsoft Corporation Intern Interview Experiences

20 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 26 Sep 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 hour test contains 2 coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Delete a node from Singly and doubly linked list
  • Ans. 

    To delete a node from a singly or doubly linked list, update the pointers of the previous and next nodes.

    • For a singly linked list, update the next pointer of the previous node to skip the node to be deleted.

    • For a doubly linked list, update the next pointer of the previous node and the previous pointer of the next node to skip the node to be deleted.

  • Answered by AI
  • Q2. Validate an email using regex pattern
  • Ans. 

    Use regex pattern to validate an email address

    • Use regex pattern /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/

    • Ensure email has valid format with username, @ symbol, domain, and top-level domain

    • Test regex pattern against different email addresses for validation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand the concepts thoroughly.

Skills evaluated in this interview

Intern Interview Questions & Answers

user image Anonymous

posted on 3 Dec 2024

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

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

SIMPLE and easy which was mcqs based. easy

Round 2 - Coding Test 

Two 2 leet code question based on array and strings

Interview Preparation Tips

Interview preparation tips for other job seekers - nice

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. Case. There is a housing society “The wasteful society”, you coll ... read more
Q2. Which programming language you are comfortable with?
asked in Deloitte
Q3. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q4. Huffman Coding Challenge Given an array ARR of integers containin ... read more
asked in Accenture
Q5. A marketing strategy case. Client is a perfume seller in Jaipur. ... read more

Intern Interview Questions & Answers

user image Anonymous

posted on 3 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Leet code array
  • Q2. Leet code queue

Intern Interview Questions & Answers

user image Manvi Gupta

posted on 21 Nov 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Dp and graph was the area of focus

Microsoft Corporation interview questions for designations

 Summer Intern

 (3)

 SDE Intern

 (4)

 Software Intern

 (1)

 Software Developer Intern

 (24)

 Software Engineer Intern

 (5)

 Summer Intern Analyst

 (1)

 Software Engineer Intern Trainee

 (2)

 Associate Software Engineering Intern

 (1)

Intern Interview Questions & Answers

user image Anonymous

posted on 11 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. LinkedIn list middle element
  • Q2. Tree traversals

Get interview-ready with Top Microsoft Corporation Interview Questions

Intern Interview Questions & Answers

user image Anisha Singh

posted on 16 Dec 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

There were two medium level leetcode questions.

Round 2 - Aptitude Test 

There were two questions. one leetcode medium and one hard

Intern Interview Questions & Answers

user image Anonymous

posted on 6 Jun 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

60 mins coding test with 2 questions (leet code easy-medium)

Round 2 - Technical 

(2 Questions)

  • Q1. BFS implementation on a tree
  • Ans. 

    BFS (Breadth First Search) is a traversal algorithm used to visit all nodes of a tree level by level.

    • Start by visiting the root node, then visit all its children before moving on to the next level

    • Use a queue data structure to keep track of nodes to visit next

    • Repeat the process until all nodes have been visited

  • Answered by AI
  • Q2. Find the depth of the tree
  • Ans. 

    The depth of a tree is the length of the longest path from the root node to a leaf node.

    • The depth of a tree can be calculated by traversing the tree and keeping track of the depth at each node.

    • The depth of a tree with only one node (the root) is 0.

    • For example, in a binary tree, the depth of the tree is the maximum depth of the left and right subtrees plus 1.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Microsoft Corporation Intern interview:
  • DSA
  • DAA

Skills evaluated in this interview

Intern Interview Questions & Answers

user image Anonymous

posted on 12 Oct 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
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
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about a time when you had to work on a challenging project with a tight deadline.
  • Q2. Describe a situation in which you had to resolve a conflict with a colleague.

Intern Interview Questions & Answers

user image Anonymous

posted on 6 Oct 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement

Round 1 - Coding Test 

Coding related basic questions

Round 2 - project 

(2 Questions)

  • Q1. Project on ai-ml
  • Ans. 

    AI-ML project involves using artificial intelligence and machine learning algorithms to analyze data and make predictions.

    • Collecting and cleaning data for training the AI model

    • Choosing the appropriate machine learning algorithm for the task

    • Evaluating the performance of the model using metrics like accuracy and precision

    • Implementing the model in a real-world application

    • Continuously improving the model through feedback a

  • Answered by AI
  • Q2. Coding questions
Round 3 - One-on-one 

(1 Question)

  • Q1. String question

Skills evaluated in this interview

Intern Interview Questions & Answers

user image Anonymous

posted on 4 Oct 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Two medium leetcode question
Round 3 - Coding Test 

One medium leetcode question and design question

Interview Preparation Tips

Interview preparation tips for other job seekers - Do leetcode and some design questions

Microsoft Corporation Interview FAQs

How many rounds are there in Microsoft Corporation Intern interview?
Microsoft Corporation interview process usually has 2-3 rounds. The most common rounds in the Microsoft Corporation interview process are Coding Test, Technical and Resume Shortlist.
How to prepare for Microsoft Corporation Intern interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Microsoft Corporation. The most common topics and skills that interviewers at Microsoft Corporation expect are microsoft, Internship, Machine Learning, Computer Vision and Data Mining.
What are the top questions asked in Microsoft Corporation Intern interview?

Some of the top questions asked at the Microsoft Corporation Intern interview -

  1. How are you fetching data through api in your project.And how machine learning ...read more
  2. remove duplicates in unsorted linked l...read more
  3. find intersection point of two linked l...read more

Tell us how to improve this page.

Microsoft Corporation Intern Interview Process

based on 18 interviews

2 Interview rounds

  • Resume Shortlist Round
  • Coding Test Round
View more

Intern Interview Questions from Similar Companies

Google Intern Interview Questions
4.4
 • 22 Interviews
Intel Intern Interview Questions
4.2
 • 14 Interviews
IBM Intern Interview Questions
4.0
 • 13 Interviews
Oracle Intern Interview Questions
3.7
 • 6 Interviews
Dell Intern Interview Questions
4.0
 • 5 Interviews
SAP Intern Interview Questions
4.2
 • 4 Interviews
Zoho Intern Interview Questions
4.3
 • 4 Interviews
Adobe Intern Interview Questions
3.9
 • 3 Interviews
Cisco Intern Interview Questions
4.1
 • 2 Interviews
View all
Microsoft Corporation Intern Salary
based on 21 salaries
₹0.8 L/yr - ₹5.4 L/yr
48% more than the average Intern Salary in India
View more details

Microsoft Corporation Intern Reviews and Ratings

based on 21 reviews

4.8/5

Rating in categories

4.7

Skill development

4.7

Work-life balance

4.8

Salary

4.6

Job security

4.6

Company culture

4.8

Promotions

4.5

Work satisfaction

Explore 21 Reviews and Ratings
Software Engineer
1.9k salaries
unlock blur

₹13 L/yr - ₹50 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹25 L/yr - ₹85 L/yr

Software Engineer2
1k salaries
unlock blur

₹20 L/yr - ₹72 L/yr

Consultant
599 salaries
unlock blur

₹13 L/yr - ₹36.7 L/yr

Support Engineer
578 salaries
unlock blur

₹7.7 L/yr - ₹30 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
Did you find this page helpful?
Yes No
write
Share an Interview