.NET interview questions: - Can we implement dynamic polymorphism?
- By Shiv Prasad Koirala
- Sep 16th, 2011
- 756
- 0
This is the .NET interview questions which you come across many a times. So following is the answer to it with explanation.
.NET interview questions: - Uses of checked and unchecked keyword in C#?
- By Shiv Prasad Koirala
- Sep 13th, 2011
- 1374
- 0
The checked keyword is used to explicitly enable overflow checking for integral-type arithmetic operations and conversions.
.NET interview questions: - Define hashtable collections?
- By Shiv Prasad Koirala
- Sep 12th, 2011
- 1403
- 0
In arraylist or array if we have to access any data we need to use the internal index id generated by the array list collection. For instance the below code snippet shows how the internal id is used to fetch data from array list.
C# and .NET interview questions: - How does Constant differ from ReadOnly in C#?
- By Shiv Prasad Koirala
- Sep 10th, 2011
- 851
- 0
The const keyword is used to modify a declaration of a field or local variable. It specifies that the value of the field or the local variable cannot be modified.
WCF interview questions: - How does WCF differ from Web services?
- By Shiv Prasad Koirala
- Sep 8th, 2011
- 4489
- 0
WCF services can be hosted in multiple protocols like http, TCP etc. Web services can only be hosted on Http protocol.
.NET interview questions: - Delay signing in .NET?
- By Shiv Prasad Koirala
- Sep 5th, 2011
- 607
- 0
The whole point about strong names is to ensure that the clients (UI, External components etc) who is consuming the DLL knows that the DLL was published from a valid source
.NET interview questions: -Elaborate differentiation delegate and an event?
- By Shiv Prasad Koirala
- Sep 4th, 2011
- 1192
- 0
This is one of the important and most asked.NET interview questions. Delegate is basically an abstract strong pointer to a function or method while events are higher level of encapsulation over delegates.
ASP.NET interview questions: - Write the ways of doing Tracing in ASP.NET?
- By Shiv Prasad Koirala
- Aug 30th, 2011
- 630
- 0
Tracing: - Tracing is a way to monitor the execution of your ASP.NET application. You can record exception details and program flow in a way that doesn't affect the program's output.

