
.NET interview questions: - Explain the steps to make Windows API calls in .NET?
- By Shiv Prasad Koirala
- Sep 2nd, 2011
- 4412
- 0
Windows API calls are not COM based and they are invoked through Platform Invoke Services.

ASP.NET interview questions: - Write the ways of doing Tracing in ASP.NET?
- By Shiv Prasad Koirala
- Aug 30th, 2011
- 4510
- 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.

SQL Server interview questions: -Types of replication supported by SQL SERVER?
- By Shiv Prasad Koirala
- Aug 27th, 2011
- 5102
- 0
There are three types of replication supported by SQL SERVER:-

C# and .Net Interview Question:- Explain InnerClass and Procedure to use them?
- By Shiv Prasad Koirala
- Aug 25th, 2011
- 4502
- 0
A class which is declared inside the body of another class is called as InnerClass.

.Net Interview Question:-Explain the procedure to declare Interfaces as private?
- By Shiv Prasad Koirala
- Aug 24th, 2011
- 7590
- 0
Sometimes I am surprised with some questions which come up during .NET interview and this one is one of them. I really do not understand why people ask such questions and how useful it is practically.

.Net Interview Question:- Adding your window application icon to the task bar ?
- By Shiv Prasad Koirala
- Aug 21st, 2011
- 9932
- 0
This is not one of the .NET typical interview question but as a developer you would be interested in knowing that how to add your windows application icon in to the task bar.

.NET interview questions: - Prove that anonymous Types better than Tuples.
- By Shiv Prasad Koirala
- Aug 18th, 2011
- 8894
- 0
Anonymous Types help us to create an object without declaring its data type and also help us to create properties with good meaningful names

.NET interview questions: - Different types anonymous and their practical use?
- By Shiv Prasad Koirala
- Aug 17th, 2011
- 3839
- 0
Anonymous Types help us to create an object without declaring its data type and also help us to create properties with good meaningful names

.NET interview questions: - Method of parsing values from string.
- By Shiv Prasad Koirala
- Aug 16th, 2011
- 3914
- 0
This is one of the most interesting topics asked by the interviewers to check how you can handle/solve this complicated situation in much easier ways.

C# and .NET interview question: - Define Named and Optional Arguments?
- By Shiv Prasad Koirala
- Aug 11th, 2011
- 39302
- 1
Visual C# 2010 introduces two interesting features called as Named and Optional Arguments.