Open In App

Microsoft IDC Internship Experience | On-Campus 2021

Last Updated : 17 Aug, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Microsoft was the very first company to visit our campus. All CS, IT, ETC students with 7.5CGPA till 4th sem with no current backlogs were eligible for the profile.

Round 1(Online Coding Test): The first round was comprised of 2 coding questions, held on the Codility platform, total time given 90mins.

  1. The main idea of the question was, In an array, some outcomes of dice rolls will be given and some outcomes are not there. A Mean value was given for all the outcomes ( including which are not in the given array) and the number of outcomes not present in that array is also given. So we had to find out any combination for those missing outcomes of dice such that all the above condition satisfies properly. If no such combination is possible, just return an empty array.

    Example

    arr = [ 1, 2, 3, 3 ],  Mean = 2, 
    Number not present in array = 2
    so a possible combination of outcomes
    not present in the array may be [ 2, 1 ]
  2. There was a story around the question but the main idea was a string was given consisting of 3 characters only, “a”, “b”, and “?”. We had to replace the “?” with either “a” or “b” such that no 3 contiguous characters become the same, i.e there won’t be any substring “aaa” or “bbb”.
     

Total 38 students were shortlisted in this round.

Round 2(Technical Interview): It was a technical interview, I had a very friendly interaction with the interviewer. After a few word exchange, he asked my what is my favorite data structure, I told him I am familiar with all the data structures. Then he gave me a question on string.

  1. The main idea was we have to decrypt a string, like 2(a)3(b) will be written as “aabbb”, 1(a)2(1(c)2(d)) will be written as “acddcdd”. He first asked me to explain the logic on Notepad, I explained my logic with Stack, he was pretty happy with the logic and told me to code it. 

It was a one hour interview and at the end, he asked my if I had any question for him.

I was selected for subsequent rounds of interviews.

Round 3 (Technical Interview): It was also a technical round, I was given two questions.

  • In this question, There was a given text and a given pattern. I had to find all the indexes (starting index of the substring) where any substring of the text is the anagram of the pattern. It was a sliding window problem and initially, I gave my brute force solution, later he asked me to optimize it, although I could not do it very well because I became a bit nervous at that moment. He realized that and gave me another question.
  • In a file system, 1 billion lines were written, I had to find out the K most repeating lines in that file. I gave my solution with hashmaps and heap data structure, he was pretty impressed with that solution and asked me if I could find any edge cases there.

It was also a one-hour interview and I got selected for the next HR round.

Round 4(Technical + HR Interview): The interview started with a very common question, “Tell me about yourself”. Then he asked me about my college, my hobbies, and my projects.

  • I had 4 projects on my resume and he asked me to explain anyone. I explained one of my projects with all the details like what I’ve learned from the project, what were the difficulties that I faced. He was impressed with that and moved to a technical question.
  • The main idea was about building a child game, where a kid will input randoms characters and we have to say if it is possible to generate any valid word by rearranging those letters in the input. A valid word list was also given. I told my solution with sorting and hashmaps. He was impressed with the solution, and further modified the problem and asked me to check for all the subsequence of the input also. I was approaching with brute force and asked me to optimize it. I couldn’t do that very well at that moment and after a few discussions, the interview was ended.

After 4-5 Hours, results were declared.

Verdict: SELECTED

My Advice

  • Know the basics of every Data structure, and have a great understanding of time and space complexity.
  • Always provide the brute force solution first, even if you know the optimized solution, as it reflects the way you approach a problem and also implies that you are well aware of time and space complexity.
  • Always Interact with the interviewer, whatever you are thinking, think out loud.
  • Sometimes interviewer may want to see how do you start a problem, if no test case is provided, always ask for at least 2 test cases and discuss all the corner cases.
  • Just be what you actually are, don’t try to be over-smart during an interview, and be humble.
  • Don’t copy projects from your seniors, just put those that you have actually done because there will be a lot of cross-questions.
  • The interviewer will always ask at the end of the interview that “Do you have any question for me ?” and NEVER give “NO” as an answer to this question, if you ask questions it implies you are interested in the company.
  • Be confident during an interview and have a little smile on your face.
     

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads