Forum Replies Created

Viewing 15 posts - 3,136 through 3,150 (of 3,220 total)

  • RE: FizzBuzz

    ...are we allowed to say spanked?

  • RE: FizzBuzz

    Jeff Moden (2/23/2010)


    You're right, Gary... it might make a good article called "Winning the Interview with Code" or somesuch.

    OK. Perhaps two articles. The one you suggest should highlight that the...

  • RE: FizzBuzz

    Jeff,

    I have followed this thread from the start and I have read the article of yours you recommended. I was hoping to work out what solution you are eluding to....

  • RE: FizzBuzz

    Jeff Moden (2/22/2010)


    reidres (2/22/2010)


    Jeff,

    I don't want people on my team optimizing for trivial things, and the constraints of the project define those things. Speed may not be essential, or...

  • RE: FizzBuzz

    Ivanna Noh (2/22/2010)


    scalable, maintainable and robust...not in the original spec!

    if that was a contract i'd be looking for additional payment for variations :w00t:

    This was meant as a quick coding...

  • RE: FizzBuzz

    Jeff Moden (2/22/2010)


    Ivanna Noh (2/22/2010)


    it won't scale much, but that wasn't part of the original spec

    🙂

    Writing scalable code should be an "implied" requirement for all Developers. 😉

    ...didn't see maintainable nor...

  • RE: FizzBuzz

    dennis.oconnor (2/22/2010)


    It boggles my mind to see how far I have to go to be competent in T-SQL. I read these columns for enlightenment but so much of it is...

  • RE: FizzBuzz

    So many fails...fizbuz? BizzBuzz?

    No attention to the specification...don't worry gents, I'll hold the door for you 😛

  • RE: FizzBuzz

    Steve Jones - Editor (2/22/2010)


    Gary Varga (2/22/2010)


    ...well that last candidate wasted my time!!!

    C'mon, I'm sure you'd end the interview after

    DECLARE curNumbers CURSOR

    How long could that take?

    Steve,

    I must have posted here...

  • RE: FizzBuzz

    GSquared (2/22/2010)


    Just to annoy Jeff, here's my "ultimate version":

    SET NOCOUNT ON;

    DECLARE @Table1 TABLE (

    ID int IDENTITY PRIMARY KEY,

    Number int);

    DECLARE @Number INT;

    SELECT @Number = 1;

    WHILE @Number <= 100

    BEGIN

    INSERT INTO @Table1 (Number)

    SELECT...

  • RE: FizzBuzz

    I think that Jason is right. I must confess that I need to complete my "thought shift". Having worked with many IT professionals that struggled with Object Orientation I can...

  • RE: FizzBuzz

    Jeff is spot on regarding supplying an answer. This is like googling for results. Sure, after much debate maybe it would be worthwhile Jeff showing some of us a solution...

  • RE: FizzBuzz

    Richard is absolutely correct.

    Although I'd like to see a tribunal oversee a heated debate on coding standards - I'd be killing myself!!!

    Seriously though, it is an important issue that can...

  • RE: FizzBuzz

    I first heard of this test when I was asked to do this in C# for a contract development role a few years ago. I was given a laptop with...

  • RE: The Average Joe

    Aw...you guys!!!

Viewing 15 posts - 3,136 through 3,150 (of 3,220 total)