1. How is 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.
2. What are the ways to deploy an assembly?
An MSI installer, a CAB archive, and XCOPY command.
3. What is 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.
4. What namespaces are necessary to create a localized application?
System.Globalization and System.Resources.
5. What is the smallest unit of execution in .NET?
An Assembly.
Tag : .NET, VB.NET, C#, VS 2005 (.NET 2.x), VS 2008 (.NET 3.x), VS 2010 (.NET 4.x)