| Title | Posted Date |
| What Are Nullable Types? | September 29, 2009 |
| What Are the Generic Delegates? | September 29, 2009 |
| What Are the Generic Methods of System.Array? | September 29, 2009 |
| How Do I Reflect Generic Types? | September 29, 2009 |
| How to use Win32 API from a .NET Framework program? | September 29, 2009 |
| C++ is similar to that of C in following ways ? | October 04, 2009 |
| When during the page processing cycle is ViewState available? | October 04, 2009 |
| What namespace does the Web page belong in the .NET Framework class hierarchy? | October 04, 2009 |
| Where do you store the information about the user's locale? | October 04, 2009 |
| Where do you add an event handler? | October 04, 2009 |
| What data types do the RangeValidator control support? | October 04, 2009 |
| What type of code (server or client) is found in a Code-Behind class? | October 04, 2009 |
| Can i add more than 1 web.config file in a single application? | October 05, 2009 |
| Is it possible to add multiple Machine.config file? | October 05, 2009 |
| Does SessionID change with every request in the asp.net 2.0 application? | October 07, 2009 |
| What's the Difference Between <%# i %> and <%= i %>? | October 07, 2009 |
| What is a private constructor? Where will you use it? | October 07, 2009 |
| Is it possible to create Cluster Index on Unique Key Column? | October 07, 2009 |
| Is the session Timeout attribute a sliding timeout value? | October 08, 2009 |
| What is the difference between Session.Abandon() and Session.Clear()? | October 08, 2009 |
| You are working with a DataSet and want to be able to display data, sorted different ways. How do you do so? | October 12, 2009 |
| Can we set priority (High, Medium, Low) of the mail sent via ASP.NET? | October 12, 2009 |
| To perform asynchronous data access, what must be added to the connection string? | October 12, 2009 |
| Can I use different programming languages in the same application? | October 12, 2009 |
| Which typically consumes more memory: application state or session state? | October 13, 2009 |
| Which might not work if a user has disabled cookies in his or her Web browser: application state or session state? | October 13, 2009 |
| What is View State Chunking? | October 13, 2009 |
| Is view state lost if a user refreshes a Web page? What if the user copies the URL and open it in other browser? | October 13, 2009 |
| A declaration in the form of public string this[int item] represents a
Attribute
Indexer
Property
Field | October 15, 2009 |
| What will be the output of the following program?.
class A {
public virtual void print() {
Console.WriteLine("A");
}
}
class B:A {
public override void print() {
Console.WriteLine("B");
}
}
class C:B {
public override void print() {
Console.WriteLine("C");
}
}
class D:C {
public override void print() {
Console.WriteLine("D");
}
}
static void Main(string[] args) {
D d=new D();
A a=d;
B b=d;
C c=d;
a.print();
b.print();
c.print();
d.print();
Console.ReadLine(); | October 15, 2009 |
| How can you sort the value of the array in descending order? | October 15, 2009 |
| Can multiple catch blocks be executed for a single try statement? | October 15, 2009 |
| When do you have to declare a class as abstract? | October 15, 2009 |
| What are the different ways a method can be overloaded? | October 15, 2009 |
| What debugging tools comes with the .NET Framewok SDK? | October 15, 2009 |
| Which typically consumes more memory: application state or session state? | October 15, 2009 |
| Which might not work if a user has disabled cookies in his or her Web browser: application state or session state? | October 15, 2009 |
| Which control requires the Web.sitemap file to display site map information? | October 15, 2009 |
| What is the name of the Web page property that you can query to determine that a Web page is being requested without data being submitted? | October 15, 2009 |
| Which method would you call to send an e-mail message and wait for the transmission to complete before proceeding? | October 15, 2009 |
| What is the name of the virtual page that you can request to view trace data when the trace data is not displayed on its corresponding Web page? | October 15, 2009 |
| What''s the difference between the Debug class and Trace class? | October 18, 2009 |
| What's the difference between the System.Array.CopyTo() and System.Array.Clone()? | October 18, 2009 |
| What's the .NET collection class that allows an element to be accessed using a unique key? | October 18, 2009 |
| Can you declare an override method to be static if the original method is not static? | October 18, 2009 |
| What connections does Microsoft SQL Server support? | October 18, 2009 |
| Between Windows Authentication and SQL Server Authentication, which one is trusted and which one is untrusted? | October 19, 2009 |
| Is it possible to update a connection string stored in the Web.config file programatically? If Yes, then how? | October 22, 2009 |
| Which Toold allwos you to manage and configure assemblies in the Global Assembly Cache, adjust code access security policy, and adjust remoting services | September 30, 2009 |
| How To Update Description Value for a Column in Table using SQL Command? | October 28, 2009 |