Compartilhar via


C# Trivia Quiz Part B - Answers

Some nice answers in the comments to the quiz . I'll touch on some of them. Probably.

I think I'll put all the remaining questions into a jumbo part 3.

Language Details

1) Java has a >>> operator. C# doesn't. Why?

Java needs that weird operator because it doesn't have unsigned types, but C# does.

2) When can a readonly field be assigned to?

Readonly fields can be assigned with initializers or in the appropriate constructor (static or instance, depending on the the field flavor).

C# and the Runtime

3) What does [FieldOffset(12)] do?

When placed on a field in a structure, it says that when marshalling the structure (ie creating an unmanaged version), this field should be offset 12 bytes from the beginning of the structure. It's most typically used when you have to deal with nasty C/C++ unions.

C# and other languages

4) Perl and C# are alike because...

They both have foreach.

Maurits noted that they both have regexes and anonymous subroutines (closures/delegates). Strictly speaking, regexes aren't part of C# but rather are part of the BCL, and I didn't think of the delegates one, so both of those answers are wrong.

Real Trivia

5) How many people were in the Visual C# Product Unit when C# was first disclosed?

JamesCurran got the right answer for the entirely wrong reason. He advocated C# usage going back to the early 1990s, and while there were some discussions around that back then, they didn't use the C# name, and didn't get disclosed. But he did get the right answer - at least, the overly pedantic answer, which was the one that I was planning on using.

The answer is zero, for the simple reason that everybody working on the team was part of the C++ team at the time, and the C# product unit didn't come around until (IIRC) sometime that fall.

The real answer to the question, "how many people worked full-time on the first version on C# before that?", is 15 +- 2. Ish.

6) Explain the history of the 'hort' data type, and how it relates to C#...

I had intended to include the nice story here, but alert reader Mark Steward found where I had talked about it before. So go read the "story" section of that post.

Power Users

7) What do the following people have in common, and how are each of them related to C#?
James Newkirk
Peter Solich
Lutz Roeder

I was surprised that nobody got this one. There are two possible answers. The right one is that each of them have been deeply involved with a very useful C# utility:

James Newkirk - NUnit

Peter Solich - CLR Profiler

Lutz Roeder - .NET Reflector

So, if you ever see these guys, thank them.

Peter also lent a considerable amount of expertise to the C# language design process during his tenure on the design team.

Ancient History

8) In his "Introduction to C#" talk at the first .NET PDC, Joe Nalewabau started his talk off by saying that his manager would upgrade him to first class on his trip back home if all his demos worked. Was this the truth, or was it a clever presentation device?

No and Yes. Yes and No.

Take your pick.

In a spendidly inspired bit of presentation wizardry, Joe came out on stage and hooked the audience on his story. All of us in that hall wanted his demos to work. Masterful.

And completely fabricated.

But... His manager was also there in the hall, and agreed to upgrade him on the trip back for doing such a great presentation.

9) In this presentation, Joe made a joke about the PDC speaker shirts. What sport did his joke refer to?

Bowling.

Speaker shirts are one of the anti-perks of speaking at a conference. You get a shirt (or, if you're lucky, two shirts) to get you through 4 or 5 days at a conference, and you get to be noticebly poorly-dressed and sweaty (for they are often polyester) for that entire time. I've gotten perhaps 35 or 40 shirts from the talks that I've done, and I currently own 3 or 4 of them.

But those PDC shirts set a new standard.

Comments

  • Anonymous
    April 20, 2006
    When you have links to other posts in your blog please have some mercy on us mortal readers, who use RSS aggregators to read your feed, & use absolute paths. Everytime I click on a link to some other post on your blog, I get a 404 in Bloglines (for e.g. the quiz link on this post).


    S
  • Anonymous
    April 20, 2006
    In that post, there is "explore new vistas" text. Is this first public disclosure of the future name of Longhorn?
  • Anonymous
    April 20, 2006
    As a .NET developer you need to know about Lutz and Reflector (never seen a person not filled with joy discovering it). Found out about NUnit and James Newkirk using google. Never heard of Peter Solich before and CLR Profiler. When you google for his name this blog post shows up. Sorry, that one is not obvious.
  • Anonymous
    April 21, 2006
    Sachin,

    I don't understand what you're saying. All of my links are direct links. Are you seeing something different in the RSS feed?

    an,

    My standard for the quiz - which I will admit to violating on a whim - is that the information had to be publicly available. That is not the same thing as "reachable through a google search"...
  • Anonymous
    April 21, 2006
    Eric, with regard to what Sachin said.  If you look at the htnl source for this blog entry the quick link has an HREF="/ericgu/archive/2006/04/14/576679.asp".  That's not absolute.
  • Anonymous
    April 21, 2006
    Just like Peter said, the links on your blogs are not absolutes (i.e. don't have http://blogs.msdn.com prefix) & hence if you click on any of these "internal" links in a RSS aggregator (I use bloglines) it tries to fetch that page from bloglines (http://bloglines.com/ericgu/archive/2006/04/14/576679.aspx for e.g.) resulting in a 404.

    HTH,
    S
  • Anonymous
    April 27, 2006
    Thanks for reminding me of the fun we had, the horrible bowling shirts not withstanding.  And for the record, I did pay for Joe to fly back first class and it was worth every penny.

  • Anonymous
    April 28, 2006
    How did the C++ team come out with something as plain and uninteresting as C#? 8-)

    I'm joking of course, and find C# to be a very productive language for practical purposes (perhaps most of that is down to the BCL), but it has none of the little curiosities that keep one on his toes or make them ponder the meaning of life.

    Actually, I've always thought of C# as the scripting language which acidentally got compiled because it had static typing.
  • Anonymous
    May 08, 2006
    > 2) When can a readonly field be assigned to?
    >
    > Readonly fields can be assigned with initializers
    > or in the appropriate constructor (static or
    > instance, depending on the the field flavor).

    And in the debugger. Powerful for traces, including in the BCL I believe.