Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

C# Interview Questions and Answers

Ques 11. What’s a delegate?

A delegate object encapsulates a reference to a method. In C++ they were referred to as function pointers.

Is it helpful? Add Comment View Comments
 

Ques 12. What’s a multicast delegate?

It’s a delegate that points to and eventually fires off several methods.

Is it helpful? Add Comment View Comments
 

Ques 13. 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.

Is it helpful? Add Comment View Comments
 

Ques 14. What are the ways to deploy an assembly?

An MSI installer, a CAB archive, and XCOPY command.

Is it helpful? Add Comment View Comments
 

Ques 15. 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.

Is it helpful? Add Comment View Comments
 

Most helpful rated by users:

©2024 WithoutBook