Interview Questions

Describe the advantages of writing a managed code application instead of unmanaged one. What’s involved in certain piece of code being managed?

.NET Database ,COM interop,and .NET deployment questions and answers


(Continued from previous question...)

Describe the advantages of writing a managed code application instead of unmanaged one. What’s involved in certain piece of code being managed?

The advantages include automatic garbage collection, memory management, support for versioning and security. These advantages are provided through .NET FCL and CLR, while with the unmanaged code similar capabilities had to be implemented through third-party libraries or as a part of the application itself.

(Continued on next question...)

Other Interview Questions