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

Clear (1)

Microsoft Corporation Front end Developer Interview Questions and Answers

Updated 11 May 2022

Microsoft Corporation Front end Developer Interview Experiences

1 interview found

Round 1 - Coding Test 

You will need to create a working web app in vanilla JS.
need to implement the following things.
1. Fetch data from given REST api
2. Display data in List. add some css to show different type of items.
3. Implement text filter and other types of filter.
All needs to be implemented in vanilla JS

Round 2 - Technical 

(1 Question)

  • Q1. Javascript concepts Web fundamentals Promise Pollyfill
Round 3 - Technical 

(1 Question)

  • Q1. System Design Round Design HLD/LLD for any game like chess/Snakes and ladder
  • Ans. 

    Designing HLD/LLD for a game like chess or Snakes and Ladders

    • Identify the game rules and mechanics

    • Determine the game board and pieces

    • Create a data model for the game state

    • Implement game logic and rules using algorithms

    • Design user interface and user experience

    • Consider scalability and performance

    • Test and debug the game thoroughly

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Hiring Manager round Asked to implement Dots and Square game

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well.
Brush up your javascript skills

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Mar 2023.

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 Resume tips
Round 2 - Coding Test 

Html, CSS, Javascript, Bootstrap, React Js, Node Js, GitHub, Git

Round 3 - HR 

(5 Questions)

  • Q1. Self Introduction
  • Q2. My self Velithurla Indra
  • Q3. I have completed my graduation Bsc computer science
  • Q4. My strength is self-motivated & skills aslo
  • Q5. My short term goal is to get a job in reputed company
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Coding test that is from html,CSS, javascript

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Sep 2023. There were 3 interview rounds.

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 Resume tips
Round 2 - HR 

(2 Questions)

  • Q1. What is your salary expectation?
  • Q2. What is the big challenge you had in your last job ?
Round 3 - Coding Test 

Two problems in JavaScript to solve

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare so good and do code practice regularly.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Apti questions weree asked

Round 2 - Coding Test 

Dsa questions asked by them

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well.

I was interviewed in Oct 2021.

Round 1 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round consisted of some standard questions related to HTML , CSS , JS and basic Frontend develeoper practices .

  • Q1. What are the features of HTML5?
  • Ans. 

    HTML5 is the latest version of the HTML standard with new features for web development.

    • Support for multimedia elements like <video> and <audio>

    • Canvas and SVG for graphics and animations

    • Improved form controls and validation

    • Offline storage capabilities with Local Storage and IndexedDB

    • Geolocation API for location-based services

  • Answered by AI
  • Q2. Can you explain the CSS Box Model?
  • Ans. 

    The CSS Box Model is a fundamental concept in CSS that defines the layout and spacing of elements on a webpage.

    • The Box Model consists of content, padding, border, and margin.

    • Content: The actual content of the box, such as text or images.

    • Padding: Space between the content and the border.

    • Border: The border surrounding the padding and content.

    • Margin: Space outside the border, separating the element from other elements.

    • Exa...

  • Answered by AI
  • Q3. What is prototype chaining in JavaScript?
  • Ans. 

    Prototype chaining in JavaScript is the mechanism by which objects inherit properties and methods from other objects.

    • In JavaScript, each object has a prototype property, which points to another object. When a property or method is accessed on an object, JavaScript will look for it in the object itself first, and then in its prototype chain.

    • If the property or method is not found in the object, JavaScript will continue t...

  • Answered by AI
  • Q4. What are media elements in HTML?
  • Ans. 

    Media elements in HTML are used to embed audio and video content on a webpage.

    • Media elements include <audio> and <video> tags in HTML.

    • They allow for the playback of audio and video files directly on a webpage.

    • Attributes like src, controls, autoplay, and loop can be used to customize the behavior of media elements.

    • Example: <video src='video.mp4' controls></video>

  • Answered by AI
Round 2 - Video Call 

(6 Questions)

Round duration - 70 Minutes
Round difficulty - Medium

This was a preety intense round revolving mainly around the core concepts of JavaScript and React . I was confident about my skills in JavaScript and React as I already had some projects in JS and React and I also completed the Guided Path of JS and React in CodeStudio which boosted my preparation and helped me crack these Frontend Interviews.

  • Q1. 

    Swap Two Numbers Problem Statement

    Given two integers a and b, your task is to swap these numbers and output the swapped values.

    Input:

    The first line contains a single integer 't', representing the num...
  • Ans. 

    Swap two numbers 'a' and 'b' and output the swapped values.

    • Create a temporary variable to store one of the numbers before swapping

    • Assign the value of 'a' to 'b' and the temporary variable to 'a'

    • Output the swapped values as 'b' followed by 'a'

  • Answered by AI
  • Q2. 

    Sort Array Problem Statement

    Given an array consisting of 'N' positive integers where each integer is either 0, 1, or 2, your task is to sort the given array in non-decreasing order.

    Input:

    Each input st...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in non-decreasing order.

    • Use a counting sort algorithm to count the occurrences of 0s, 1s, and 2s in the array.

    • Then reconstruct the array by placing the counted elements in order.

    • Time complexity of the counting sort algorithm is O(N).

  • Answered by AI
  • Q3. Can you explain promises and their three states?
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises have three states: pending, fulfilled, and rejected.

    • Pending: initial state, neither fulfilled nor rejected.

    • Fulfilled: operation completed successfully.

    • Rejected: operation failed.

    • Promises can be chained using .then() to handle success and failure.

    • Example: const promise = new Promise((resolve, reject) => { ... })

  • Answered by AI
  • Q4. What are callbacks in JavaScript?
  • Ans. 

    Callbacks in JavaScript are functions passed as arguments to other functions, to be executed later.

    • Callbacks are commonly used in asynchronous operations, such as event handling or AJAX requests.

    • They allow for more flexible and dynamic programming, by defining behavior that should happen after a certain event or task is completed.

    • Example: setTimeout function in JavaScript takes a callback function as an argument to be

  • Answered by AI
  • Q5. What is the Same-origin policy?
  • Ans. 

    Same-origin policy is a security measure in web browsers that restricts how a document or script loaded from one origin can interact with a resource from another origin.

    • It prevents a web page from making requests to a different domain than the one it was loaded from.

    • It helps protect user data and prevent malicious attacks like cross-site scripting (XSS).

    • Cross-origin resource sharing (CORS) headers can be used to relax

  • Answered by AI
  • Q6. Can you explain the lifecycle of components in React?
  • Ans. 

    Components in React go through various stages like mounting, updating, and unmounting.

    • Components are created and inserted into the DOM during the mounting phase.

    • During the updating phase, components can re-render due to changes in props or state.

    • Components are removed from the DOM during the unmounting phase.

    • Lifecycle methods like componentDidMount, componentDidUpdate, and componentWillUnmount are used to perform actio

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

This was a typical HR round with some standard Behavioral questions like my interests, weaknesses, strengths, family background, are you willing to relocate or travel , why Amdocs, CEO of Amdocs etc.

  • Q1. Why do you want to work at Amdocs?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAAmdocs interview preparation:Topics to prepare for the interview - HTML , CSS , JavaScript , React , NodeJS , Basic Data Structures and AlgorithmsTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Do at-least 2 good projects and you must know every bit of them.
Tip 2 : Understand the fundamentals of JavaScript as they are asked very often.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
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 Resume tips
Round 2 - Aptitude Test 

A Medium Range hard questions will be asked and we need to solve with in the given time

Round 3 - Coding Test 

Asked 3 questions of hard we need to use any one of the given language to solve the questions

Round 4 - HR 

(4 Questions)

  • Q1. Be Confident and Have Deep understanding About The Job Which You Applied
  • Q2. Are You Willing To relocate
  • Q3. How You Will Manage The Work Load Pressure
  • Ans. 

    I manage work load pressure by prioritizing tasks, setting realistic deadlines, and taking breaks to avoid burnout.

    • Prioritize tasks based on deadlines and importance

    • Break down tasks into smaller, manageable chunks

    • Set realistic deadlines and communicate with team members if needed

    • Take short breaks to avoid burnout and maintain productivity

  • Answered by AI
  • Q4. How Will You solve An Issue If You Don;t know
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Introduce yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't worry
Round 1 - Coding Test 
Round 2 - Technical 

(2 Questions)

  • Q1. They asked about current project.
  • Q2. They have given some problem to write javascript code.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and javascript concepts.
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Js basics like var, let and const
  • Q2. Angular basic questions
Contribute & help others!
anonymous
You can choose to be anonymous

Microsoft Corporation Interview FAQs

How many rounds are there in Microsoft Corporation Front end Developer interview?
Microsoft Corporation interview process usually has 4 rounds. The most common rounds in the Microsoft Corporation interview process are Technical and Coding Test.
How to prepare for Microsoft Corporation Front end Developer 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 ASP.Net MVC, Angularjs, C#, CSS and Html5.
What are the top questions asked in Microsoft Corporation Front end Developer interview?

Some of the top questions asked at the Microsoft Corporation Front end Developer interview -

  1. System Design Round Design HLD/LLD for any game like chess/Snakes and lad...read more
  2. Javascript concepts Web fundamentals Promise Pollyf...read more
  3. Hiring Manager round Asked to implement Dots and Square g...read more

Recently Viewed

INTERVIEWS

Microsoft Corporation

No Interviews

INTERVIEWS

MedPlus

No Interviews

INTERVIEWS

BMC Software

No Interviews

INTERVIEWS

GeeksForGeeks

No Interviews

INTERVIEWS

GeeksForGeeks

No Interviews

INTERVIEWS

Yamaha Motor

No Interviews

INTERVIEWS

BrowserStack

No Interviews

INTERVIEWS

Cult.fit

No Interviews

SALARIES

Growfit

SALARIES

Yamaha Motor

Tell us how to improve this page.

Microsoft Corporation Front end Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Microsoft Corporation Front end Developer Salary
based on 17 salaries
₹9.9 L/yr - ₹24.5 L/yr
130% more than the average Front end Developer Salary in India
View more details

Microsoft Corporation Front end Developer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
1.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
762 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
600 salaries
unlock blur

₹0 L/yr - ₹0 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