• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 09:49
CEST 15:49
KST 22:49
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
BGE Stara Zagora 2025: Info & Preview16Code S RO12 Preview: GuMiho, Bunny, SHIN, ByuN3The Memories We Share - Facing the Final(?) GSL46Code S RO12 Preview: Cure, Zoun, Solar, Creator4[ASL19] Finals Preview: Daunting Task30
Community News
GSL Ro4 and Finals moved to Sunday June 15th10Weekly Cups (May 27-June 1): ByuN goes back-to-back0EWC 2025 Regional Qualifier Results26Code S RO12 Results + RO8 Groups (2025 Season 2)3Weekly Cups (May 19-25): Hindsight is 20/20?0
StarCraft 2
General
BGE Stara Zagora 2025: Info & Preview Jim claims he and Firefly were involved in match-fixing The Memories We Share - Facing the Final(?) GSL GSL Ro4 and Finals moved to Sunday June 15th Serious Question: Mech
Tourneys
Bellum Gens Elite: Stara Zagora 2025 $25,000+ WardiTV 2025 Series Sparkling Tuna Cup - Weekly Open Tournament SOOP Starcraft Global #21 $5,100+ SEL Season 2 Championship (SC: Evo)
Strategy
[G] Darkgrid Layout Simple Questions Simple Answers [G] PvT Cheese: 13 Gate Proxy Robo
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 476 Charnel House Mutation # 475 Hard Target Mutation # 474 Futile Resistance Mutation # 473 Cold is the Void
Brood War
General
FlaSh Witnesses SCV Pull Off the Impossible vs Shu Will foreigners ever be able to challenge Koreans? BW General Discussion BGH auto balance -> http://bghmmr.eu/ Battle.net is not working
Tourneys
[ASL19] Grand Finals [Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL20] GosuLeague RO16 - Tue & Wed 20:00+CET
Strategy
I am doing this better than progamers do. [G] How to get started on ladder as a new Z player
Other Games
General Games
Monster Hunter Wilds Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile Mechabellum
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
LiquidLegends to reintegrate into TL.net
Heroes of the Storm
Simple Questions, Simple Answers
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
Vanilla Mini Mafia TL Mafia Community Thread TL Mafia Plays: Diplomacy TL Mafia: Generative Agents Showdown Survivor II: The Amazon
Community
General
Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread European Politico-economics QA Mega-thread US Politics Mega-thread Canadian Politics Mega-thread
Fan Clubs
Maru Fan Club Serral Fan Club
Media & Entertainment
Korean Music Discussion [Manga] One Piece
Sports
2024 - 2025 Football Thread Formula 1 Discussion NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Cleaning My Mechanical Keyboard
TL Community
The Automated Ban List
Blogs
Heero Yuy & the Tax…
KrillinFromwales
Research study on team perfo…
TrAiDoS
I was completely wrong ab…
jameswatts
Need Your Help/Advice
Glider
Trip to the Zoo
micronesia
Poker
Nebuchad
Info SLEgma_12
SLEgma_12
Customize Sidebar...

Website Feedback

Closed Threads



Active: 18789 users

Microsoft Interview - I _had_ one!

Blogs > CecilSunkure
Post a Reply
1 2 3 4 Next All
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
Last Edited: 2013-03-13 07:58:10
March 13 2013 06:04 GMT
#1
Welp. I had a Microsoft interview to intern as a software developer.

It was weird. There was quite a bit of misinformation flying at me, and I was left with a rather disturbing feeling. First off I was interviewed by a project manager instead of a software engineer, which seemed weird right off the bat. I mean sure PMs are really cool people, but they don't code day to day in their job. I'm a programmer, and didn't expect this.

So here's how it went summarized (capitol I is the interviewer):
I: What year are you graduating?
Me: 2015.
Me in my head: What..? Does it matter? I'm interviewing as an intern. Am I disqualified now that you know I won't be able to be hired in a year?

I: What is something you've worked on lately that was difficult yet interesting?
Me: Custom reflection in C++. Blah blah C++ doesn't have native reflection, so I blah blah wrote a lot of cool stuff.
I: Wait what? You used C++ introspection?
Me in my head: Does he not realize that C++ has no built-in (functioning) RTTI? Did I mention the RTTI native to C++ doesn't work? Did he just mis-hear me?
Me: C++ doesn't have native introspection, so I did it myself.
I: Why?
Me: Well it has these benefits... (pretty much I wrote some code that writes a lot of code for me, which is helpful for time budgets!).

I: Write a function that takes two numbers and returns which is larger. Each number is a string of characters with each character as a digit.
Me: <clears up ambiguities like what language this must be in, the format of each number, error handling etc. His responses seemed like he was just plain tired. I was his last interview after a marathon of many interviews for two days straight, and he seemed to be annoyed I was asking questions.>
Me: Write's the following function:
+ Show Spoiler +
// Returns -1 if lhs is larger, 0 if equavilant, and 1 if rhs is larger
// Assumes lhs and rhs are both strings with only decimal digits, e.g. "123" or "12005"
// Also assumes there are no preceding zeros like so: "0052"
int IntegerAsStringCompare( const char *lhs, const char *rhs )
{
int lhs_len = strlen( lhs );
int rhs_len = strlen( rhs );

// Early out with string lengths
if(lhs_len > rhs_len)
return -1;
else if(rhs_len > lhs_len)
return 1;

// Strings are equal length, compare each digit one by one
else
{
// lhs and rhs are equal length, so no need for comparison
// to have lhs && rhs
while(lhs)
{
if(*lhs > *rhs)
return -1;
else if(*rhs > *lhs)
return 1;
++lhs;
++rhs;
}

// Our numbers are equivalent
return 0;
}
}

I talked all about how to support additional number formats such as floats, hex, octal, etc. I talked about error handling as well. I only had a 25 minute interview, so I had to get something on paper and demonstrate I knew how to add onto it to make the entire thing robust in a short amount of time. I mean sure I could improve this function in a few ways, but I wrote it in hardly any time at all and specifically pointed out a lot of ways to improve it, if I had the time to.

I: So next question. You have an array of 17 integers, and each slot's value is it's indexed position. However one index is a duplicate. How do you find what the duplicate is?
Me: N^2 search with a boolean. A faster way would be to add each index's value up and subtract from the expected sum.
I: Okay good. What would you do if the array was very large and overflow would occur?
Me: Integer overflow?
I: Yes.
Me: Can I use an external data structure?
I: Sure.
Me: I could use an external data structure to handle insertions and respond when a duplicate entry is found, such as a modified version of a hash table.
Me: Another solution would be to use multiple integers to emulate a larger data range. In CS 100 we had to add two 16 bit integers with 8 bit values, and I could do the same thing here.
I: We're out of time!

Interview session ends. I believe I answered the questions fairly well, and I answered them nearly identically to some other interviewees that I know (and that I know are very competent programmers).

Now I was told before the interview that everyone being interviewed in the two days could move on and be hired. The person that told me this said they had very specific instructions that everyone could be hired. I was also told before the interview that I could receive the feedback the interviewer wrote down on notes during the interview.

I requested this feedback and was denied, and the denial said that me seeing that information was a break of company policy.

I was also denied an internship for this summer. The reason was that internship positions are very limited. I was also told (through an indirect source) that the main reason people were declined was due to a lack of technical capability. Technical capability? We write game engines from scratch. Is this an easy thing to do? Man students in other schools must be doing really cool things if what I'm doing is technically unadvanced. However I read articles and talk to other professor and am lead to believe that the programmers from my school are quite excellent. Am I just on the lower end of "quite excellent"? This just doesn't all add up.

Honestly I feel like I was declined because I'm a Sophomore. On top of this the interviewer actually seemed annoyed when I would ask initial questions to clear up ambiguity during one of the interview questions. The interviewer also didn't seem to know that C++ didn't have built in introspection (that is usable), unlike other languages such as C#. My interviewer was a Project Manager, and said he didn't hardly code in his day to day job.

I'm just plain confused and am left with a really awkward feeling about all this. Every single Sophomore was declined a position, and I _know_ a lot of these Sophomores are very good programmers. A couple Juniors were admitted. Some very strong Juniors were denied. What is going on here? In the words of my friend (who was just expressing frustration and confusion): "I should write a PRNG to admit or decline applicants... It would at least do a better job than what's currently going on."

Apparently everyone dislikes Microsoft's hiring process and it's in a very poor state of quality currently. I don't have a direct opinion about Microsoft's hiring process that I want to share, but I do know that the feeling I was left with wasn't one that I enjoyed. I've had other interviews before, but this one felt different in a bad way.

Pretty much how I felt a little while later:
+ Show Spoiler [HowIFelt] +
[image loading]


Even though I bring bad news, there is good news yet! I have some other leads to follow. Even though I had a bad experience things turned out quite well overall. I was actually working on solving something a company sent me as a pre-interview test just earlier today!

***
coopes
Profile Blog Joined November 2010
United States144 Posts
March 13 2013 06:12 GMT
#2
cool read. best of luck on your endeavors sir
Chairman Ray
Profile Blog Joined December 2009
United States11903 Posts
March 13 2013 06:30 GMT
#3
Sorry you didn't get an offer, but don't give up, there are plenty of other great companies out there. I remember when I went to interview, one of the interns that got hired was a PhD student, so as a sophomore, you really have the short end of the stick. What else did you do while you were in Seattle?
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
Last Edited: 2013-03-13 06:33:08
March 13 2013 06:32 GMT
#4
On March 13 2013 15:30 Chairman Ray wrote:
Sorry you didn't get an offer, but don't give up, there are plenty of other great companies out there. I remember when I went to interview, one of the interns that got hired was a PhD student, so as a sophomore, you really have the short end of the stick. What else did you do while you were in Seattle?

I live in Redmond! Hehe. Thanks for the kind words, I do appreciate it. So after the interview while in Seattle we all actually went to a nice place called Samurai Noodle in the International District. Love that place. I actually went last night as well! Ooooh I want to go again
MysteryMeat1
Profile Blog Joined June 2011
United States3291 Posts
Last Edited: 2013-03-13 06:38:43
March 13 2013 06:38 GMT
#5
On March 13 2013 15:32 CecilSunkure wrote:
Show nested quote +
On March 13 2013 15:30 Chairman Ray wrote:
Sorry you didn't get an offer, but don't give up, there are plenty of other great companies out there. I remember when I went to interview, one of the interns that got hired was a PhD student, so as a sophomore, you really have the short end of the stick. What else did you do while you were in Seattle?

I live in Redmond! Hehe. Thanks for the kind words, I do appreciate it. So after the interview while in Seattle we all actually went to a nice place called Samurai Noodle in the International District. Love that place. I actually went last night as well! Ooooh I want to go again


samurai noodles, tetsu max is soooo goood.

That picture is how i was after my logic finals. I was 2 for 3 today. Did hella good in bio and o-chem and totally tanked my logic class.

UGGGGGG

GL Cecil, I'm sure it will all work out.


Does your internship have to be in redmond or would seattle work as well?
"Cause ya know, Style before victory." -The greatest mafia player alive
Chairman Ray
Profile Blog Joined December 2009
United States11903 Posts
March 13 2013 06:38 GMT
#6
On March 13 2013 15:32 CecilSunkure wrote:
Show nested quote +
On March 13 2013 15:30 Chairman Ray wrote:
Sorry you didn't get an offer, but don't give up, there are plenty of other great companies out there. I remember when I went to interview, one of the interns that got hired was a PhD student, so as a sophomore, you really have the short end of the stick. What else did you do while you were in Seattle?

I live in Redmond! Hehe. Thanks for the kind words, I do appreciate it. So after the interview while in Seattle we all actually went to a nice place called Samurai Noodle in the International District. Love that place. I actually went last night as well! Ooooh I want to go again


You live in Redmond? Sweet! I'm house-hunting there right now and will move down in May. I'll see you there!
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
Last Edited: 2013-03-13 06:41:38
March 13 2013 06:39 GMT
#7
On March 13 2013 15:38 Chairman Ray wrote:
Show nested quote +
On March 13 2013 15:32 CecilSunkure wrote:
On March 13 2013 15:30 Chairman Ray wrote:
Sorry you didn't get an offer, but don't give up, there are plenty of other great companies out there. I remember when I went to interview, one of the interns that got hired was a PhD student, so as a sophomore, you really have the short end of the stick. What else did you do while you were in Seattle?

I live in Redmond! Hehe. Thanks for the kind words, I do appreciate it. So after the interview while in Seattle we all actually went to a nice place called Samurai Noodle in the International District. Love that place. I actually went last night as well! Ooooh I want to go again


You live in Redmond? Sweet! I'm house-hunting there right now and will move down in May. I'll see you there!

Cool we can go out for lunch sometime

On March 13 2013 15:38 MysteryMeat1 wrote:
GL Cecil, I'm sure it will all work out.

Does your internship have to be in redmond or would seattle work as well?

Oh I'm okay with working somewhere else in the US. The Seattle area is ideal of course, since it's cheaper than moving (I'd have to pay two monthly rents if I moved). Like right now I'm working on a written test for a place in California! Don't want to say specifically where just yet though
MysteryMeat1
Profile Blog Joined June 2011
United States3291 Posts
Last Edited: 2013-03-13 06:43:18
March 13 2013 06:42 GMT
#8
On March 13 2013 15:39 CecilSunkure wrote:
Show nested quote +
On March 13 2013 15:38 Chairman Ray wrote:
On March 13 2013 15:32 CecilSunkure wrote:
On March 13 2013 15:30 Chairman Ray wrote:
Sorry you didn't get an offer, but don't give up, there are plenty of other great companies out there. I remember when I went to interview, one of the interns that got hired was a PhD student, so as a sophomore, you really have the short end of the stick. What else did you do while you were in Seattle?

I live in Redmond! Hehe. Thanks for the kind words, I do appreciate it. So after the interview while in Seattle we all actually went to a nice place called Samurai Noodle in the International District. Love that place. I actually went last night as well! Ooooh I want to go again


You live in Redmond? Sweet! I'm house-hunting there right now and will move down in May. I'll see you there!

Cool we can go out for lunch sometime

Show nested quote +
On March 13 2013 15:38 MysteryMeat1 wrote:
GL Cecil, I'm sure it will all work out.

Does your internship have to be in redmond or would seattle work as well?

Oh I'm okay with working somewhere else in the US. The Seattle area is ideal of course, since it's cheaper than moving (I'd have to pay two monthly rents if I moved). Like right now I'm working on a written test for a place in California! Don't want to say specifically where just yet though



I was just wondering, because my dad's best friend works at UW hospital as a programmer for coding and stuff. He says theres usually quite a few internships. I'll see him on Friday if you want me to ask about specifications and requirements for getting an internship.
"Cause ya know, Style before victory." -The greatest mafia player alive
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
March 13 2013 06:45 GMT
#9
On March 13 2013 15:42 MysteryMeat1 wrote:
Show nested quote +
On March 13 2013 15:39 CecilSunkure wrote:
On March 13 2013 15:38 Chairman Ray wrote:
On March 13 2013 15:32 CecilSunkure wrote:
On March 13 2013 15:30 Chairman Ray wrote:
Sorry you didn't get an offer, but don't give up, there are plenty of other great companies out there. I remember when I went to interview, one of the interns that got hired was a PhD student, so as a sophomore, you really have the short end of the stick. What else did you do while you were in Seattle?

I live in Redmond! Hehe. Thanks for the kind words, I do appreciate it. So after the interview while in Seattle we all actually went to a nice place called Samurai Noodle in the International District. Love that place. I actually went last night as well! Ooooh I want to go again


You live in Redmond? Sweet! I'm house-hunting there right now and will move down in May. I'll see you there!

Cool we can go out for lunch sometime

On March 13 2013 15:38 MysteryMeat1 wrote:
GL Cecil, I'm sure it will all work out.

Does your internship have to be in redmond or would seattle work as well?

Oh I'm okay with working somewhere else in the US. The Seattle area is ideal of course, since it's cheaper than moving (I'd have to pay two monthly rents if I moved). Like right now I'm working on a written test for a place in California! Don't want to say specifically where just yet though



I was just wondering, because my dad's best friend works at UW hospital as a programmer for coding and stuff. He says theres usually quite a few internships. I'll see him on Friday if you want me to ask about specifications and requirements for getting an internship.

Oh yeah totally! It can't hurt so sure why not. Thanks a lot!
MysteryMeat1
Profile Blog Joined June 2011
United States3291 Posts
March 13 2013 06:47 GMT
#10
On March 13 2013 15:45 CecilSunkure wrote:
Show nested quote +
On March 13 2013 15:42 MysteryMeat1 wrote:
On March 13 2013 15:39 CecilSunkure wrote:
On March 13 2013 15:38 Chairman Ray wrote:
On March 13 2013 15:32 CecilSunkure wrote:
On March 13 2013 15:30 Chairman Ray wrote:
Sorry you didn't get an offer, but don't give up, there are plenty of other great companies out there. I remember when I went to interview, one of the interns that got hired was a PhD student, so as a sophomore, you really have the short end of the stick. What else did you do while you were in Seattle?

I live in Redmond! Hehe. Thanks for the kind words, I do appreciate it. So after the interview while in Seattle we all actually went to a nice place called Samurai Noodle in the International District. Love that place. I actually went last night as well! Ooooh I want to go again


You live in Redmond? Sweet! I'm house-hunting there right now and will move down in May. I'll see you there!

Cool we can go out for lunch sometime

On March 13 2013 15:38 MysteryMeat1 wrote:
GL Cecil, I'm sure it will all work out.

Does your internship have to be in redmond or would seattle work as well?

Oh I'm okay with working somewhere else in the US. The Seattle area is ideal of course, since it's cheaper than moving (I'd have to pay two monthly rents if I moved). Like right now I'm working on a written test for a place in California! Don't want to say specifically where just yet though



I was just wondering, because my dad's best friend works at UW hospital as a programmer for coding and stuff. He says theres usually quite a few internships. I'll see him on Friday if you want me to ask about specifications and requirements for getting an internship.

Oh yeah totally! It can't hurt so sure why not. Thanks a lot!


before I talk to him, what languages can you program?
"Cause ya know, Style before victory." -The greatest mafia player alive
SiCkO_
Profile Joined September 2010
United States481 Posts
March 13 2013 07:10 GMT
#11
sounds pretty terrible, where are you at school cecil?
SKT Toss line Fighting! | Bisu, BeSt, By.Sun! |
udgnim
Profile Blog Joined April 2009
United States8024 Posts
March 13 2013 07:23 GMT
#12
bad interview experience, but sounds like you yourself did not perform poorly in the interview

just view it as a new experience and think of how you might have approached/responded to a question differently

you're going to have interviewers that stay pretty neutral in their demeanor, ones that will respond to how in-depth/interested you can answer questions, and ones that don't really want to interview because they'd rather focus their time elsewhere but must because it's part of their job responsibility

did you have only 1 interview that lasted 30 minutes? that seems pretty lacking.
E-Sports is competitive video gaming with a spectator fan base. Do not take the word "Sports" literally.
Cambium
Profile Blog Joined June 2004
United States16368 Posts
Last Edited: 2013-03-13 07:28:42
March 13 2013 07:27 GMT
#13
I couldn't help but feel you were looking down on your interviewer just because he's a PM. Just because he didn't know a specific thing in C++ (see *), it does not mean he's not technical. Even if he wasn't technical, he didn't need to be, as he could be evaluating your soft skills like your abilities to communicate clearly.

The fact that they are willing to interview you means they are willing to hire you. When he asked, 'when are you graduating', it was probably just a simple comment meant to break the ice, but instead, you took it as a reason to not hire you.

I think you need to change your attitude. Try finding faults in yourself rather than the company or the interviewers.

I know plenty of people who have received internship and full time offers from MSFT, myself included, and the process is definitely, by and large, fair.

(*)
I don't know what you mean by

Me in my head: Does he not realize that C++ has no built-in (functioning) RTTI? Did I mention the RTTI native to C++ doesn't work? Did he just mis-hear me?

Me: C++ doesn't have native introspection, so I did it myself.

How does RTTI native to C++ not work? The term 'RTTI' was coined by the C++ Standards. It doesn't go very far in implementing reflection, but it does what it is supposed to do: Run-Time Type Information.

C++ does have native introspection, it's called type introspection.

Going from your interviewer's train of thought, it would probably leverage RTTI, which will provide the basis for you to build your reflection framework. You would probably derive all your classes from a base class like Object in Java, and that class would provide methods like 'GetProperty', 'GetMethod', 'GetBaseClass', etc.
When you want something, all the universe conspires in helping you to achieve it.
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
Last Edited: 2013-03-13 07:45:27
March 13 2013 07:37 GMT
#14
On March 13 2013 16:27 Cambium wrote:
I couldn't help but feel you were looking down on your interviewer just because he's a PM. Just because he didn't know a specific thing in C++ (see *), it does not mean he's not technical. Even if he wasn't technical, he didn't need to be, as he could be evaluating your soft skills like your abilities to communicate clearly.

The fact that they are willing to interview you means they are willing to hire you. When he asked, 'when are you graduating', it was probably just a simple comment meant to break the ice, but instead, you took it as a reason to not hire you.

I think you need to change your attitude. Try finding faults in yourself rather than the company or the interviewers.

I know plenty of people who have received internship and full time offers from MSFT, myself included, and the process is definitely, by and large, fair.

(*)
I don't know what you mean by
Show nested quote +

Me in my head: Does he not realize that C++ has no built-in (functioning) RTTI? Did I mention the RTTI native to C++ doesn't work? Did he just mis-hear me?

Me: C++ doesn't have native introspection, so I did it myself.

How does RTTI native to C++ not work? The term 'RTTI' was coined by the C++ Standards. It doesn't go very far in implementing reflection, but it does what it is supposed to do: Run-Time Type Information.

C++ does have native introspection, it's called type introspection.

Going from your interviewer's train of thought, it would probably leverage RTTI, which will provide the basis for you to build your reflection framework. You would probably derive all your classes from a base class like Object in Java, and that class would provide methods like 'GetProperty', 'GetMethod', 'GetBaseClass', etc.

Well, I understand I sound pretty negative. Thanks a lot for the words, I appreciate hearing what others think. I'll do some more reflecting on what I myself could do to improve for my next interview.

I definitely did not think anything negative of the company right after the interview. I just felt like something was off. After reflecting and talking with my superiors I realized a lot more about the interview. It's especially strange because I've heard of some previous interviews earlier in the year from friends of mine, and they did very well (hired). There's a lot of mixed information flying around, and it's especially disheartening when the information company employees directly gave me was contradicting in multiple different instances.

The native type introspection doesn't really work, and is very compiler dependent. Some output is just plain broken. An attempt was made for C++ RTTI, but honestly everyone I know of just disables C++ RTTI in their builds and uses a custom system for type reflection.

On March 13 2013 16:23 udgnim wrote:
did you have only 1 interview that lasted 30 minutes? that seems pretty lacking.

It was 25 minutes
Cambium
Profile Blog Joined June 2004
United States16368 Posts
March 13 2013 07:43 GMT
#15
On March 13 2013 16:37 CecilSunkure wrote:
Show nested quote +
On March 13 2013 16:27 Cambium wrote:
I couldn't help but feel you were looking down on your interviewer just because he's a PM. Just because he didn't know a specific thing in C++ (see *), it does not mean he's not technical. Even if he wasn't technical, he didn't need to be, as he could be evaluating your soft skills like your abilities to communicate clearly.

The fact that they are willing to interview you means they are willing to hire you. When he asked, 'when are you graduating', it was probably just a simple comment meant to break the ice, but instead, you took it as a reason to not hire you.

I think you need to change your attitude. Try finding faults in yourself rather than the company or the interviewers.

I know plenty of people who have received internship and full time offers from MSFT, myself included, and the process is definitely, by and large, fair.

(*)
I don't know what you mean by

Me in my head: Does he not realize that C++ has no built-in (functioning) RTTI? Did I mention the RTTI native to C++ doesn't work? Did he just mis-hear me?

Me: C++ doesn't have native introspection, so I did it myself.

How does RTTI native to C++ not work? The term 'RTTI' was coined by the C++ Standards. It doesn't go very far in implementing reflection, but it does what it is supposed to do: Run-Time Type Information.

C++ does have native introspection, it's called type introspection.

Going from your interviewer's train of thought, it would probably leverage RTTI, which will provide the basis for you to build your reflection framework. You would probably derive all your classes from a base class like Object in Java, and that class would provide methods like 'GetProperty', 'GetMethod', 'GetBaseClass', etc.

Well, I understand I sound pretty negative. Thanks a lot for the words, I appreciate hearing what others think. I'll do some more reflecting on what I myself could do to improve for my next interview.

I definitely did not think anything negative of the company right after the interview. I just felt like something was off. After reflecting and talking with my superiors I realized a lot more about the interview. It's especially strange because I've heard of some previous interviews earlier in the year from friends of mine, and they did very well (hired). There's a lot of mixed information flying around, and it's especially disheartening when the information company employees directly gave me was contradicting in multiple different instances.

The native type introspection doesn't really work, and is very compiler dependent. Some output is just plain broken. An attempt was made for C++ RTTI, but honestly everyone I know of just disables C++ RTTI in their builds and uses a custom system for type reflection.



On a change of subject

How did you implement your reflection? Doing it through RTTI is definitely not ideal, did you do it via templates?
When you want something, all the universe conspires in helping you to achieve it.
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
Last Edited: 2013-03-13 07:51:04
March 13 2013 07:48 GMT
#16
Yeah! You can actually see most of what I have currently here. I use template metaprogramming for basically everything. There are some missing features I'll be adding this summer in my spare time: + Show Spoiler [FeatureList] +
-Lua reference and value type (only have reference)
-Serialization versioning
-Inheritance meta
-Manual force linking for all meta objects
-Auto pointer meta reg
-Not require default constructor
-MetaData bitfield support
-Archetype compression for level files
-Refactor meta with properties
-Meta type conversion cleanup
-Property gettor/settor with Reflection
-Run-time editting of enumerations
-Enumeration values linked to other enumeration tables
-VariantFunction currently does: jump call jump call, can be optimized to push call with template magic. Minimizes VariantFunction memory footprint too.
Aerisky
Profile Blog Joined May 2012
United States12129 Posts
March 13 2013 07:55 GMT
#17
Whoa, I've read some of your past blogs and awww it's a shame they didn't decide to take you on. I don't code myself, but you REALLY look like you know what you're doing lol, I'm sure that in the long run you'll be snapped up. Pretty interesting story and whoa, all that technical information is daunting yet looks pretty cool
Jim while Johnny had had had had had had had; had had had had the better effect on the teacher.
trashman
Profile Blog Joined June 2011
United States113 Posts
March 13 2013 07:58 GMT
#18
Sorry to hear it didn't work out for you. For what it's worth, you're probably right that you didn't get hired because you were a sophomore. I talked to a Microsoft recruiter at my university's CS career fair maybe 6 weeks ago and he said that essentially they had already filled most of the slots for their internship program for sophomores and were really only looking for juniors and really, truly exceptional sophomores. Not that that doesn't make getting turned down feel any less shitty, but...
Kick at the rock, Sam Johnson, break your bones: / But cloudy, cloudy is the stuff of stones.
fight_or_flight
Profile Blog Joined June 2007
United States3988 Posts
March 13 2013 08:07 GMT
#19
I've heard bad things about working for microsoft. They expect many hours, weekend work, etc. It depends on the group though. Everyone is competitively ranked with their peers. So there's this situation were you've got a lot of really smart people trying to figure out how to make themselves look good and others look bad.

Just what I've heard.
Do you really want chat rooms?
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
March 13 2013 08:40 GMT
#20
All the nontrivial stuff in C++ is done using template metaprogramming, how is that even a question?

Without having looked deeply into your documentation, it sounds like you have to register metadata about all your classes manually. So it won't work with classes that you didn't develop yourself, and obviously also has the issue of having to maintain 2 pieces of code when you want to modify a class? Doesn't seem like it would be easily avoidable, but still it's not exactly most convenient. I guess the only option to avoid redundant information would be to think of a method to have the reflection system produce the class itself while at the same time reading the metadata from a class metaspecification... or something like that. That's a lot of meta though.


In any case; the world doesn't always make sense. In fact it rarely does. Just try again.
If you have a good reason to disagree with the above, please tell me. Thank you.
1 2 3 4 Next All
Please log in or register to reply.
Live Events Refresh
Bellum Gens Elite
12:00
Stara Zagora 2025 Day 1
Harstem vs NitixLIVE!
Reynor vs FuturE
TriGGeR vs SKillous
Ryung vs Gerald
Zoun vs Krystianer
Serral vs Lambo
ShoWTimE vs YoungYakov
Bellum Gens Elite1241
ComeBackTV 547
TaKeTV 286
IndyStarCraft 232
Rex202
3DClanTV 130
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Bellum Gens Elite1241
IndyStarCraft 232
Rex 202
ProTech93
StarCraft: Brood War
Calm 9207
Bisu 3368
Shuttle 2452
Horang2 1459
Soulkey 450
Hyuk 371
Mini 351
Stork 336
Jaedong 321
ggaemo 313
[ Show more ]
ZerO 307
Snow 301
Zeus 271
Last 271
Light 253
Pusan 224
Rush 156
hero 146
Dewaltoss 121
Leta 80
JYJ76
Hyun 76
Sharp 62
ToSsGirL 39
sSak 36
sas.Sziky 35
Mong 28
HiyA 26
Backho 24
Movie 20
ajuk12(nOOB) 20
Free 19
GoRush 12
SilentControl 12
Shine 11
Noble 7
Terrorterran 6
Hm[arnc] 5
Dota 2
Gorgc4708
qojqva3122
XcaliburYe476
BabyKnight41
Counter-Strike
olofmeister2479
Super Smash Bros
Mew2King80
Heroes of the Storm
XaKoH 123
Other Games
singsing2224
B2W.Neo1134
DeMusliM474
Happy346
hiko338
crisheroes239
ArmadaUGS146
Lowko119
QueenE26
Has18
ZerO(Twitch)18
KnowMe10
Organizations
Dota 2
PGL Dota 2 - Main Stream2912
PGL Dota 2 - Secondary Stream7
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Nemesis4062
• Jankos1974
• TFBlade149
Upcoming Events
OSC
2h 11m
The PondCast
20h 11m
Bellum Gens Elite
21h 11m
WardiTV Invitational
21h 11m
Replay Cast
1d 10h
OSC
1d 10h
Bellum Gens Elite
1d 21h
WardiTV Invitational
2 days
Replay Cast
2 days
CranKy Ducklings
2 days
[ Show More ]
SC Evo League
2 days
Bellum Gens Elite
2 days
Fire Grow Cup
3 days
CSO Contender
3 days
Replay Cast
3 days
SOOP
3 days
SHIN vs GuMiho
Sparkling Tuna Cup
3 days
AllThingsProtoss
3 days
Fire Grow Cup
4 days
Replay Cast
4 days
Replay Cast
5 days
Replay Cast
5 days
WardiTV Invitational
5 days
GSL Code S
6 days
Rogue vs GuMiho
Maru vs Solar
Liquipedia Results

Completed

CSL Season 17: Qualifier 1
DreamHack Dallas 2025
Heroes 10 EU

Ongoing

JPL Season 2
BSL 2v2 Season 3
BSL Season 20
KCM Race Survival 2025 Season 2
NPSL S3
Rose Open S1
CSL Season 17: Qualifier 2
2025 GSL S2
Bellum Gens Elite Stara Zagora 2025
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25
ECL Season 49: Europe
BLAST Rivals Spring 2025
MESA Nomadic Masters
CCT Season 2 Global Finals
IEM Melbourne 2025
YaLLa Compass Qatar 2025
PGL Bucharest 2025
BLAST Open Spring 2025

Upcoming

CSL 17: 2025 SUMMER
Copa Latinoamericana 4
CSLPRO Last Chance 2025
CSLAN 2025
K-Championship
SEL Season 2 Championship
Esports World Cup 2025
HSC XXVII
Championship of Russia 2025
Murky Cup #2
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.