December 2011
30 posts
MVC,MVP and MVVM Visual Architectural evolution →
MVC,MVP and MVVM Visual Architectural evolution
6 common use of Template Design pattern: - Design... →
In this article we will try to understand 6 important uses of template design patterns.
5 tags
SQL Server interview questions: - Elaborate...
This is the most expected asked SQL Server interview questions during the interview by the interviewer.
Publisher is the one who owns the database and is the main source for data. Publisher identifies what data should be distributed across.
Distributor is a bridge between publisher and subscriber. Distributor gathers all the published data and holds it until it sends it across to all subscriber....
6 tags
SQL Server interview questions: -Explain the...
This is one of the most favorite SQL Server interview questions asked by the interviewer during the interview.
We have tried to keep answer as simple as we can. So starts the answer as, basically there are three major relationship models: -
One-to-one
Figure: - One-to-One relationship ER diagram
One-to-many
In this many records in one table corresponds...
7 tags
.NET interview questions: - Elaborate the result...
See the following snap code
class Class1
{
Class2 o = new Class2();
}
class Class2
{
Class1 o = new Class1();
}
Answer:
Both the classes are creating objects of each other due which the object will pile up in the memory and lead to “StackOverFlowException”. Below is the error image which is displayed once the memory is overused.
See the following video on regular expressions...
2 tags
Knowledge Sharing Session: - On concept of OOPS... →
7 tags
.NET/ASP.NET interview questions: - When to...
This is one of quiet often asked .NET/ASP.NET interview questions so prepare accordingly to answer it to the interviewer.
Many of the developers make a blind choice of choosing data grid directly, but that is not the right way.
Data grid provides ability to allow the end-user to sort, page, and edit its data. However, it comes at a cost of speed. Second, the display format is simple that is in...
3 tags
ASP.NET interview questions: - How does ASP.NET...
Start answering this ASP.NET interview questions as follows: -
In traditional ASP if you are told to create a login page and do authentication you have to do hell lot of custom coding. Now in ASP.NET that has made easy by introducing Forms authentication. So let us see in detail what form authentication is.
Forms authentication uses a ticket cookie to see that user is authenticated or not. That...