Interview Tips Interview Tips, Interview Questions and Answers

21Dec/090

What A Mid-Level .NET Developers Ought To Know

continue http://tipsinterview.com/2009/12/21/what-every-net-developers-ought-to-know/ 

    1. Describe the difference between Interface-oriented, Object-oriented and Aspect-oriented programming.
    2. Describe what an Interface is and how it’s different from a Class.
    3. What is Reflection?
    4. What is the difference between XML Web Services using ASMX and .NET Remoting using SOAP?
    5. Are the type system represented by XmlSchema and the CLS isomorphic?
    6. Conceptually, what is the difference between early-binding and late-binding?
    7. Is using Assembly.Load a static reference or dynamic reference?
    8. When would using Assembly.LoadFrom or Assembly.LoadFile be appropriate?
    9. What is an Asssembly Qualified Name? Is it a filename? How is it different?
    10. Is this valid? Assembly.Load("foo.dll");
    11. How is a strongly-named assembly different from one that isn’t strongly-named?
    12. Can DateTimes be null?
    13. What is the JIT? What is NGEN? What are limitations and benefits of each?
    14. How does the generational garbage collector in the .NET CLR manage object lifetime? What is non-deterministic finalization?
    15. What is the difference between Finalize() and Dispose()?
    16. How is the using() pattern useful? What is IDisposable? How does it support deterministic finalization?
    17. What does this useful command line do? tasklist /m "mscor*"
    18. What is the difference between in-proc and out-of-proc?
    19. What technology enables out-of-proc communication in .NET?
    20. When you’re running a component within ASP.NET, what process is it running within on Windows XP? Windows 2000? Windows 2003?