DOTNET Interview Questions part-2



1.  What’s a delegate?
A delegate object encapsulates a reference to a method. In C++ they were referred to as function pointers.

2.  What’s a multicast delegate?
It’s a delegate that points to and eventually fires off several methods.

3.  How’s the DLL Hell problem solved in .NET?
Assembly versioning allows the application to specify not only the library it needs to run (which was available under Win32), but also the version of the assembly.

4.  What are the ways to deploy an assembly? 
    An MSI installer, a CAB archive, and XCOPY command.

5.  What’s a satellite assembly?
When you write a multilingual or multi-cultural application in .NET, and want to distribute the core application separately from the localized modules, the localized assemblies that modify the core application are called satellite assemblies.

6.  What namespaces are necessary to create a localized application?
System.Globalization, System.Resources.


7.  What’s the difference between // comments, /* */ comments and /// comments?
Single-line, multi-line and XML documentation comments.


8.  How do you generate documentation from the C# file commented properly with a command-line compiler?
Compile it with a /doc switch.


9.  What’s the difference between <c> and <code> XML documentation tag?
Single line code example and multiple-line code example.

10.Is XML case-sensitive?
Yes, so <Student> and <student> are different elements.