What is Partial Classes in Asp.Net 2.0?
It allows a clean separation of business logic and the user interface
Partial classes mean that your class definition can be split into multiple physical files.
Only need to create half of the code
There is no such term as partial class in asp.net 2.0
What is a Virtual Functions in class?
A virtual function is a member function of the base class and which is redefined by the derived class.
The virtual functions are resolved at the run time.
Virtual functions is not part of asp.net 2.0
Why should you avoid the excessive use of ViewState in Asp.Net web page?
Hackers can see the data
ViewState increases the size of page and results in slow loading of page at browser.
Its not safe for all browsers.
What is Encapsulation?
Encapsulation is the ability to hide the internal workings of an object's behavior and its data.
The code is public to all objects
All of above
What is polymorphism in Object Oriented Programming (OOPS) Languages?
There are two types of polymorphism one is compile time polymorphism and the other is run time polymorphism
In simple terms, polymorphism lets you treat derived class members just like their parent class' members.
What is Visual Studio.NET?
Visual Studio.NET is comprehensive development tool for creating .NET applications.
It allows you to create websites
Visual Studio.NET can help creating new database and tables