KyaPoocha.com

Huge Collection of Interview Questions


‘ASP.Net Interview Questions’ - KyaPoocha.com

What is the difference between login controls and Forms authentication? 

Login controls are an easy way to implement Forms authentication without having to write any code. For example, the Login control performs the same functions you... Read more »

What is Tracing in ASP.NET ? 

ASP.NET introduces new functionality that allows you to write debug statements, directly in your code, without having to remove them from your application when it... Read more »

How do we enable tracing ? 

Instead of enabling tracing for individual pages, you can enable it for your entire application. In that case, every page in your application displays trace information.... Read more »

What exactly happens when ASPX page is requested from Browser? 

At its core, the ASP.NET execution engine compiles the page into a class, which derives from the code behind class (which in turn derives directly or indirectly... Read more »

How do you deploy an ASP.NET application? 

You can deploy an ASP.NET Web application using any one of the following three deployment options.1.XCOPY Deployment 2.Using the Copy Project option in VS .NET 3.Deployment... Read more »

ASP.NET Configuration. 

ASP.NET Configuration The ASP.NET configuration system features an extensible infrastructure that enables you to define configuration settings at the time your ASP.NET... Read more »

What can be stored in Web.config file? 

There are number of important settings that can be stored in the configuration file. Here are some of the most frequently used configurations, stored conveniently... Read more »

Difference between Web.config and machine.config. 

web.config: Web.config file, as it sounds like is a configuration file for the Asp .net web application. An Asp .net application has one web.config file which keeps... Read more »

Where we can use DLL made in C#.Net ? 

Supporting .Net, bcoz DLL made in C#.Net semicompiled version. Its not a com object. It is used only in .Net Framework.As it is to be compiled at runtime to byte... Read more »

If A.equals(B) is true then A.getHashcode & B.getHashCode must always return same hash code. 

The answer is False because it is given that A.equals(B) returns true i.e. objects are equal and now its hashCode is asked which is always independent of the fact... Read more »

To Configure .Net for JIT activation what do you do? 

Actually JIT activation is required for COM+ components which can be done by setting JustInTimeActivation attribute to true (choice A). For .net applications / components... Read more »

How do you import Activex component in to .NET? 

An application called AXImp.exe shipped with .Net SDK is used. This application does something similar as Tlbimp.exe does for non graphical COM components. It creates... Read more »

What is the use of fixed statement? 

The fixed statement sets a pointer to a managed variable and “pins” that variable during the execution of statement. Without fixed, pointers to managed... Read more »

What is the order of destructors called in a polymorphism hierarchy? 

Destructors are called in reverse order of constructors. First destructor of most derived class is called followed by its parent’s destructor and so on till... Read more »

How can you sort the elements of the array in descending order? 

int[] arr = new int[3]; arr[0] = 4; arr[1] = 1; arr[2] = 5; Array.Sort(arr); Array.Reverse(arr);  Read more »

Page 5 of 22« First...«34567»...Last »