vote up 31 vote down star
30

We have a list of the best interview questions people have been asked and the worst interview question you've been asked but what question do you believe sorts the chaff from the wheat?

One you've been asked, one you've asked or one you wish the co-worker from hell had been asked. There's no magic bullet but is there one question you think helps the process?

flag

33 Answers

prev 1 2
vote up 36 vote down

"What's your Stack Overflow reputation?"

link|flag
12  
Bad answer: What's a Stack Overflow? – Damien May 21 at 8:31
2  
I'd accept any answer that involved having visited SO. By now, to not have at least heard of the site shows a lack of involvement in any programming forum/community. – Ether Oct 4 at 18:23
show 3 more comments
vote up 2 vote down

No interview should only include technical questions/answers, but for developers in this day and age, you do really need to ask questions to make sure that they can back up the knowledge they claim on their resume... WAY too many people bending the truth these days not to do it.

It depends on the technology, but a few off the top of my head:

  • C#: Drill them on the "new" keyword, in the polymorphic sense.
  • ASP.Net: Ask about the page lifecycle events - at what point ViewState is loaded into a page, when events fire for controls on the page, including dynamic controls
  • SQL: Describe the differences between inner/full outer/left outer/cross joins, and when you would use each

For example, assuming they knew that C# had a different use for "new":

public class parent
{
    public void myFunction() { }
}

public class child : parent
{
    public void myFunction() { }
}

Given the above code, will it compile (yes, with a warning)? How do you clear the warning (add the "new" modifier to the child function definition)? When would the parent's version of the function be called vs. when the child code would be called?

link|flag
show 3 more comments
vote up 3 vote down

How many tables are needed for a many-to-many relationship in SQL? Or another way to say this is. Create a schema on paper for a many-to-many relationship between Students and their Courses.

If the applicant just looks at a diagram that shows --- they will think this is all that needs to be done. When the obvious answer is 3 tables.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.