VB.Net Interview Questions and Answers - 5

Question: 21

What is Code Access Security (CAS)?

CAS is the part of the .NET security model that determines whether or not a piece of code is allowed to run and what resources it can use when it is running.

For example, it is CAS that will prevent a .NET web applet from formatting your hard disk.

Question: 22

What namespaces are necessary to create a localized application?

System.Globalization and

System.Resources

Question: 23

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.

Question: 24

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.

Question: 25

What are the two activation modes for .NET Remoting?

Singleton

Singlecall

Related Questions