Monthly Archives: May 2012

c# interview questions :- What is the difference between foreground and background threads ?

Background threads (Daemon threads) close once your application closes (i.e. the main thread). If you have spawned as foreground thread then until all the Foreground threads do not complete the application cannot close. See the following video on Lambda expressions … Continue reading

Posted in .NET and C# training, background threads, C# interview questions, Csharp interview questions, foreground, programming interview questions | Tagged , , , , , | Leave a comment

UML Training: – How will you explain many types of diagrams in UML(Unified Modeling Language)?

There are nine types of diagrams in UML:- Use case diagram: They describe “WHAT” of a system rather than “HOW” the system does it. They are used to identify the primary elements and processes that form the system. The primary … Continue reading

Posted in .NET and C# training, .Net Interview Questions, background threads, c# and .NETinterviews, Csharp interview questions, programming interview questions, UML Training | Tagged , , , , , , , | Leave a comment

C# Training: – What are various types of IIS isolation levels?

IIS has three level of isolation:- LOW (IIS process):- In this main IIS, process, and ASP.NET application run in same process. So if any one crashes the other is also affected. Example let us say (well this is not possible) … Continue reading

Posted in .NET and C# training, .Net Interview Questions, ASP.NET, C# interview questions, Csharp interview questions, IIS isolation levels, programming interview questions | Tagged , , , , , | Leave a comment

ASP.Net Interview questions: – Elaborate differences between ‘Server.Transfer’ and ‘response.Redirect’?

Following are the major differences between them:- ‘Response. Redirect’ sends message to the browser saying it to move to some different page, while server. Transfer does not send any message to the browser but rather redirects the user directly from … Continue reading

Posted in .NET and C# training, ASP.NET, Asp.Net Interview Questions, Csharp interview questions, programming interview questions, Redirect, response, Transfer | Tagged , , , , , , , | 1 Comment