vote up 5 vote down star
1

An interviewer argued me "Genrics are not completely Genrics",

He provided the example (Parameters int k,int d are not generic)

public static void PrintThis<T>(T a, T b, T c, int k,int d)
{

}

He asked me if i prove still it is generics , i will be allowed to take up the next round. I did not know what he is expecting from me,and what he really means by showing such example.

Guide me how to smartly face such a strange interview ?.

Thanks in advance.

flag
5  
Yet another dumbass interview question, designed only to measure your ability to suppress laughter. – Robert Harvey Oct 22 at 22:54
I'm not sure this is an answerable question without knowing what answer the interviewer was looking for. We can all guess, but we would most likely all be wrong without a lot more information. – Lee Oct 22 at 22:54
Maybe a piece of info was lost in translation, because as asked I don't understand this question. – Snarfblam Oct 22 at 22:59
Well k and d could be some form of counter, like print this k times, with d Type T's per line. If k and d where of Type T, it would be hard to use them as counters :) – PostMan Oct 22 at 23:02
2  
If that guy was going to become your boss, then good thing you failed the interview... – Ludovic Oct 22 at 23:05
show 2 more comments

9 Answers

vote up 12 vote down

Some people are insane. You should smile and nod.

link|flag
4  
Aw, c'mon. You're getting rep for this?? – Robert Harvey Oct 22 at 22:54
1  
As Larry Niven once wrote, "Never throw ** at the man with the laser." – Lee Oct 22 at 22:56
Didn't Welbog say that? stackoverflow.com/users/52443/welbog – Robert Harvey Oct 22 at 22:58
this could be thumb down if wrote by the wrong people – Itay Oct 22 at 23:30
My interview was not ended with that ,he asked why can't we have a generic constructor.I told well then you will shutdown your business.(I hope he will read this post). – udana Oct 22 at 23:31
show 1 more comment
vote up 4 vote down

The fact that k and d are always int doesn't make the method any less generic, it just means that these parameters are always int regardless of the type of a, b & c.

link|flag
vote up 4 vote down

day... dreaming... at... computer....

"Did you give him the question?"

"Yes"

"Did he tell you it was BS?"

"No"

"Did you find him on StackOverflow asking how to answer the question?"

"Yes"

"Good, now we know. Get the next guy in here"

"Bwah... ha... ha..." repeat...

link|flag
vote up 3 vote down

Maybe he meant that a, b, and c must be of the same type, but that's stupid.

link|flag
If this is the case, then simply answer that the method signature can be: public static void TestMethod<T1, T2, T3>(T1 a, T2 b, T3 c, int k, int d) – jasonh Oct 22 at 23:07
vote up 3 vote down

Assuming that the interview question is a real one, I googled "Generics are not" + c#, and got these:

  • Generics are not C++ templates
  • generics are not just compiler magic
  • Generics are not covariant
  • Generics are not only a construct of the C# language; generics are defined with the CLR.
  • Generics are not limited to function definitions
  • Generics are not just used for collections
  • Generics are not limited to classes
  • C# does a kind of erasure but it's not as severe as Java's, and the reason is because generics are not a C#-specific feature, but rather a feature that must work across .NET, which supports multiple languages.

I got no matches at all for "Generics are not completely generic" or "Generics are not always generic".

So there. Have fun.

link|flag
What fun ? He asked one more question why can't constructor be Generic ? What is the darwback over there ?. How to face such a guy?.Hmm Recession plays well. – udana Oct 22 at 23:21
Enjoy Enjoy Everybody enjoy well.I will forget all if i attend such interview. – udana Oct 22 at 23:22
Um, you left that little piece of information out of your question!...You might want to add it. – Robert Harvey Oct 22 at 23:40
vote up 1 vote down

All a generic is is a parameterized type. I don't know what your interviewer is getting at. Does he claim that the method is not fully generic because not all of the method parameters have a generic type?

You are not required to use the same parameter type for all parameters, nor do all of the parameter types have to be generic.

link|flag
vote up 0 vote down

As far as I'm concerned, this is a generic method, by virtue of the fact that it has a type parameter. That not all parameters are of the generic type doesn't matter.

link|flag
vote up 0 vote down

He asked me if i prove still it is generics , i will be allowed to take up the next round. I did not know what he is expecting from me,and what he really means by showing such example.

It sounds like this interviewer is looking for the answers given here - if your phrasing of his question captures his intent, then he's not arguing that generics aren't generic, he's asking whether you can intelligently discuss the "genericity" of the specified method.

As several others have noted, this is a generic method by virtue of the fact that it allows the user to specify a visible attribute of the function (in this case, the type of the first 3 parameters) at a later time. The fact that k and d are non-generic parameters would seem to simply be a red herring.

Being able to state that answer would more or less prove that you don't have a skewed notion of what "generic" means - in this case, a call-time specialization of a generic function.

link|flag
vote up 0 vote down

@Udana, could it be that the interviewer was trying to guage your response by asking you a question that has no meaning ?

I once had an interview in which the test question asked "what is the default margin size of a winform". I answered "I dont know and dont care, since i can set any value i want in the constructor"

At the end of the interview, the interviewer told me that the question was a trick to see who would guess and who would be honest when they didn't know something.

link|flag

Your Answer

Get an OpenID
or

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