CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    Join Date
    Dec 2005
    Posts
    180

    .NET Interview Questions

    I asked this in the C# area but maybe it better belongs here:

    Interview Questions.

    I thought it would be a good learning experience for people if I ask them and see how people would answer:

    #1 How do you troubleshoot a .NET application
    #2 How many heaps will be created for a .NET application
    #3 What is involved in recompiling .NET Codes.

  2. #2
    Join Date
    Mar 2002
    Location
    St. Petersburg, Florida, USA
    Posts
    12,125

    Re: .NET Interview Questions

    Quote Originally Posted by Complete
    I asked this in the C# area but maybe it better belongs here:

    Interview Questions.

    I thought it would be a good learning experience for people if I ask them and see how people would answer:

    #1 How do you troubleshoot a .NET application
    #2 How many heaps will be created for a .NET application
    #3 What is involved in recompiling .NET Codes.
    1) Using a Debugger
    2) 5 per AppDomain.
    3) Using a compiler.
    TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!)
    2008, 2009,2010
    In theory, there is no difference between theory and practice; in practice there is.

    * Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions
    * How NOT to post a question here
    * Of course you read this carefully before you posted
    * Need homework help? Read this first

  3. #3
    Join Date
    May 2007
    Posts
    1,546

    Re: .NET Interview Questions

    Quote Originally Posted by Complete
    #1 How do you troubleshoot a .NET application
    Console, GUI, ASP.NET? I'd go with "the same way you'd debug a native application".

    #2 How many heaps will be created for a .NET application
    This is actually a stupid question. It depends on what GC you're using. MS.NET has 3 kinds (i believe). Desktop, Server and Concurrent. Mono has 2 kinds, Boehm and a new generational one which is in the works.

    The total amount of heaps allocated by MS.NET will be completely different to the total heaps allocated by Mono (including managed and unmanaged). Hell, .NET 3.0 could have completely changed the whole GC thing as compared to .NET 2.0, so in order to answer that question you'd also have to know which version of the framework you're talking about.

    #3 What is involved in recompiling .NET Codes.
    Recompiling? What do you mean exactly? Do you mean JITing, or do you mean the initial compilation process to create the assembly?
    Last edited by Mutant_Fruit; May 25th, 2007 at 08:43 PM. Reason: Changed my mind - Question 2 is stupid

  4. #4
    Join Date
    Mar 2002
    Location
    St. Petersburg, Florida, USA
    Posts
    12,125

    Re: .NET Interview Questions

    Quote Originally Posted by Mutant_Fruit
    Depends on what you mean by heap. If you mean *managed* heaps then you have 1 standard heap and 1 large object heap per logical proc. i.e. a 4 processor machine would have 8 "heaps".
    Depends on how how your define the generational heap. The Microsoft convention is to consider each generation a seperate heap. So 3 managed + 1 LOH + 1 native heap. All times the number of AppDomains! [not processors], considering a process can have many app domains, there is no fixed number per process..
    TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!)
    2008, 2009,2010
    In theory, there is no difference between theory and practice; in practice there is.

    * Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions
    * How NOT to post a question here
    * Of course you read this carefully before you posted
    * Need homework help? Read this first

  5. #5
    Join Date
    May 2007
    Posts
    1,546

    Re: .NET Interview Questions

    Quote Originally Posted by TheCPUWizard
    The Microsoft convention is to consider each generation a seperate heap. So 3 managed + 1 LOH + 1 native heap. All times the number of AppDomains! [not processors]
    That changes if you're using the server GC I edited my response above to reflect that.

  6. #6
    Join Date
    Apr 2005
    Posts
    2

    Re: .NET Interview Questions

    Here is a good collection of .Net 3.0 Interview Questions and Answers

    http://www.oopsconcepts.com/Net+3+In...ns+and+Answers

  7. #7
    Join Date
    Mar 2002
    Location
    St. Petersburg, Florida, USA
    Posts
    12,125

    Re: .NET Interview Questions

    Quote Originally Posted by elifeinchrist
    Here is a good collection of .Net 3.0 Interview Questions and Answers

    http://www.oopsconcepts.com/Net+3+In...ns+and+Answers
    Most of the "answers" there are so generic as to be completely useless....
    TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!)
    2008, 2009,2010
    In theory, there is no difference between theory and practice; in practice there is.

    * Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions
    * How NOT to post a question here
    * Of course you read this carefully before you posted
    * Need homework help? Read this first

  8. #8
    Join Date
    Aug 2010
    Posts
    2

    Re: .NET Interview Questions

    Quote Originally Posted by TheCPUWizard View Post
    Most of the "answers" there are so generic as to be completely useless....

    Hi,

    I agreed with you. Any way, your ideal make me thinking about some thing for my project.

    Pls try to keep posting.Tks and best regards

  9. #9
    Join Date
    Aug 2010
    Posts
    2

    Re: .NET Interview Questions

    Quote Originally Posted by vegetablevn View Post
    Hi,

    I agreed with you. Any way, your ideal make me thinking about some thing for my project.

    Pls try to keep posting.Tks and best regards
    Apart from that, this link below may be useful: Good interview questions

  10. #10
    Join Date
    Mar 2011
    Posts
    2

    Re: .NET Interview Questions

    Hi

    You can find this info by using search box in the top of website with some keywords related before posting questions.

  11. #11
    Join Date
    Mar 2011
    Posts
    2

    Re: .NET Interview Questions

    Hi

    I read some opinions in this topic. I do not agree above ideal. We can find out some articles at about.com by using Google search.

    If you want to get more materials that related to this topic, you can visit: http://typicalinterviewquestions.info/

    Best regards.

  12. #12
    Join Date
    Jul 2011
    Posts
    3

    Re: .NET Interview Questions

    Hi

    This topic help me a lot in developing my project. I will contribute more when I finished it.

  13. #13
    Join Date
    Aug 2011
    Posts
    1

    Re: .NET Interview Questions

    I have written a book and created an app (Android now, iPhone soon) that is from the *other* side of things -- to help developers prepare for a technical interview. You might get some ideas. It's over 200 questions with full answers and explanations.

    http://developerjobresource.com

  14. #14
    Join Date
    Aug 2011
    Posts
    3

    Re: .NET Interview Questions

    Below Basic .NET and ASP.NET interview questions:
    1. Explain the .NET architecture.
    2. How many languages .NET is supporting now?
    3. How is .NET able to support multiple languages?
    4. How ASP .NET different from ASP?
    5. Resource Files: How to use the resource files, how to know which language to use?
    6. What is smart navigation?
    7. What is view state?
    8. Explain the life cycle of an ASP .NET page.
    9. How do you validate the controls in an ASP .NET page?
    10. Can the validation be done in the server side? Or this can be done only in the Client side? -
    11. How to manage pagination in a page? What is ADO .NET and what is difference between ADO and ADO.NET?
    I'll send the following in my next post
    Tough ASP.NET interview questions
    Interview questions for C# developers
    C# developer interview questions
    .NET deployment questions
    I have intention to keep my promise in my next post. However, I'm too busy, Tough ASP.NET interview questions, Interview questions for C# developers, C# developer interview questions, .NET deployment questions can be found at:
    http://interviewquestionstoask.info
    http://typicalinterviewquestions.info
    http://jobinterviewquestions.biz/
    Good luck in your interview!
    Last edited by Ella Pacey; September 12th, 2011 at 03:16 AM.

  15. #15
    Join Date
    Jul 2011
    Posts
    7

    Re: .NET Interview Questions

    Hi,

    Thanks very much for this comment. It help me to think about my ideals.

    Tks again and pls keep posting.

    If you want to get more materials that related to this topic, you can visit: http://interviewquestionsandanswers.biz/

    Best regards.
    Last edited by hambim336; September 10th, 2011 at 07:44 AM. Reason: Update

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured