Skip to main content

How to Crack the Microsoft Interview?

   How to Crack the Microsoft Interview?


Dear Friends, I am a former employee of Microsoft and want to help youngsters and interested people, who are willing to join Microsoft India. When I was trying to join Microsoft that timed I struggled a lot and did not get any correct path and advice. I'll try to simplify things for you... 😊

You need to understand the Microsoft culture before doing anything.

  • Satya Nadella popularized the growth mindset in Microsoft workplace culture when he became CEO in 2014. He had repeatedly credited Dweck's "Mindset" as inspiration for Microsoft's culture change. Now the idea of a growth mindset has embedded itself in Microsoft's rhetoric.
  • A growth mindset emphasizes the way you relate your sense of self to a challenge. For example, if you apply a growth mindset when presented with a difficult problem, you don't see the problem and start thinking that you're failing because you don't immediately get it ("I'm not smart enough"). Instead, you start thinking that you're learning and I love a challenge.

How to do your preparations?

  • Learn Data Structure and Algorithms (Best site to visit geek for geeks)
  • Develop Software Architecture and Desing Skills 
  • You should be proficient in at least one programming languageC#, C/C++, Powershell, Javascript, Python, TCL
  • Expert in OOPs and Solid Principles
  • Understanding in Client Service Architecture
  • Mindset for willing to work in any situations(means nothing is impossible)

Interview Process:

Microsoft has three business division IDC, MSIT, Microsoft Consulting Services(MCS)/MSGD(Global Delivery)
The interview process may differ by business division, here will explain about the IDC/MSIT process

Interview Round can be varied for the position and Teams but generally, it goes up to Six Rounds. Here I am giving an example for the Software Engineers positions.

First Round: 

Pure technical round with Problem-solving interview questions, may you be asked to design a solution for a given problem. for example, Design unified custom caching functionality.

Second Round: 

round with Problem-solving interview questions, may you be asked to design a solution for a given problem. for example, present uber app architecture

Third Round: 

Technical questions and write an algorithm(sorting and string etc), may you be given in critical situations and you had/have to design a solution. for example "Find the square root of number up to given precision using binary search"

Fourth Round: 

Some technical questions, Some Managerial questions, About your Past work Experience and learnings

Fifth Round:

Generally Happens with Principle Managers/Business Head
They will tell you about their business group and opportunity, There could be few technical questions, They will check your confidence and what you are expecting from ongoing opportunity.

Sixth Round:

Salary discussions from HR

generally, Microsoft has its own pay standards so you will get beyond your expectations with a lot of perk and facilities with amazing Campus

Points to keep in mind while interviewing:


  • Make sure nothing is false in your resume
  • Whatever you have written in your resume, be prepared to answer it
  • If unfortunately you told something false to the interviewer so keep in mind may the next round interview can cross-verify it.

Where to Apply? 

Go ahead and visit the MS career website and apply it, here is a link for you.


All the best...please provide your comments if you feel that helped you!!!




Comments

Popular posts from this blog

Azure key vault with .net framework 4.8

Azure Key Vault  With .Net Framework 4.8 I was asked to migrate asp.net MVC 5 web application to Azure and I were looking for the key vault integrations and access all the secrete out from there. Azure Key Vault Config Builder Configuration builders for ASP.NET  are new in .NET Framework >=4.7.1 and .NET Core >=2.0 and allow for pulling settings from one or many sources. Config builders support a number of different sources like user secrets, environment variables and Azure Key Vault and also you can create your own config builder, to pull in configuration from your own configuration management system. Here I am going to demo Key Vault integrations with Asp.net MVC(download .net framework 4.8). You will find that it's magical, without code, changes how your app can read secretes from the key vault. Just you have to do the few configurations in your web config file. Prerequisite: Following resource are required to run/complete this demo · ...

How to Make a Custom URL Shortener Using C# and .Net Core 3.1

C# and .Net Core 3.1:  Make a Custom URL Shortener Since a Random URL needs to be random and the intent is to generate short URLs that do not span more than 7 - 15 characters, the real thing is to make these short URLs random in real life too and not just a string that is used in the URLs Here is a simple clean approach to develop custom solutions Prerequisite:  Following are used in the demo.  VS CODE/VISUAL STUDIO 2019 or any Create one .Net Core Console Applications Install-Package Microsoft.AspNetCore -Version 2.2.0 Add a class file named ShortLink.cs and put this code: here we are creating two extension methods. public   static   class   ShortLink {      public   static   string   GetUrlChunk ( this   long   key ) =>            WebEncoders . Base64UrlEncode ( BitConverter . GetBytes ( key ));      public   static   long   GetK...

Azure Logic Apps Send Email Using Send Grid Step by Step Example

Azure Logic Apps Send Email Using Send Grid Step by Step     Step 1- Create Send Grid Account Create a SendGrid Account  https://sendgrid.com/ Login and Generate Sendgrid Key and keep it safe that will be used further to send emails You can use Free service. it's enough for the demo purpose Step 2- Logic App Design Login to  https://portal.azure.com Go to Resources and Create Logic App Named "EmailDemo" Go To Newly Created Rosoure Named "EmailDemo" and Select a Trigger "Recurrence", You can choose according to your needs like HTTP, etc. Note* Without trigger you can not insert new steps or Actions Click on Change Connection and add Send Grid Key  Click on Create and Save Button on the Top. As we have recurrence so it will trigger according to our setup(every 3 months) so just for the test click on "RUN" button  Finally, you should get an email like below one: