DEV Community

Discussion on: What is the worst question you have ever been asked in a job interview?

Collapse
 
ovinokurov profile image
Oleg Vinokurov

"What kind of car you drive?" They saw me in the video camera when I arrived. Year, model, color, etc.

Correct answer:
class Car
{
string color = "gray";

static void Main(string[] args)
{
Car myObj = new Car();
Console.WriteLine(myObj.color);
}
}

Collapse
 
aza profile image
Aza

oh, so you actually had to guess that they want to code as an answer.

Collapse
 
ovinokurov profile image
Oleg Vinokurov

I guess so, but that was my answer. I didn't get a job ;)