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 new 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?
