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

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   GetKeyFromUrl ( this   string   urlChunk ) =>            BitConverter . ToInt64 ( WebEncoders . Base64UrlDecode ( urlChunk )); } Here is the Calling Sampl

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 ·         A

AWS FREE ASP.NET CORE (.NET 6.0) HOSTING WITH FREE SSL

  FREE ASP.NET CORE (.NET 6.0) Hosting on AWS (Amazon Web Services) Today I was able to host my asp.net 6.0  + ANGULAR 14 application  on AWS Free  Initial Setup of your AWS Account and your Computer Get ready with your asp.net core 3.1 /.net 6 application Install  "AWS toolkit for visual studio 2022" as  visual studio extensions :  it will be required to deploy smoothly from Visual Studio 2022 itself, your life will be easy. Let's finish the AWS account setup  Get signed up with: its free but it will be required a valid credit card or debit card, they will charge nothing for the free services for 1 year * https://portal.aws.amazon.com/billing/signup#/start/email AWS console  for services and offering http://console.aws.amazon.com/ Create a user in AWS Console:  IAM With the help of AWS Identity and Access Management (IAM), you can control who or what has access to the services and resources offered by AWS, centrally manage fine-grained permissions, and adjust permission