KyaPoocha.com

Huge Collection of Interview Questions


Archive for April, 2006

Describe java’s security model. 

Java’s security model is one of the most interesting and unique aspects of the language. For the most part it’s broken into two pieces: the user adjustable... Read more »

Where would you use an iHTTPModule, and what are the limitations of anyapproach you might take in implementing one? 

One of ASP.NET’s most useful features is the extensibility of the HTTP pipeline, the path that data takes between client and server. You can use them to extend... Read more »

Describe the difference between inline and code behind 

which is best in a loosely coupled solution? ASP.NET supports two modes of page development: Page logic code that is written inside blocks within an .aspx file... Read more »

Can you configure a .NET Remoting object via XML file? 

Yes, via machine.config and application level .config file (or web.config in ASP.NET). Application-level XML settings take precedence over machine.config.  Read more »

How do I change the permission set for a code group? 

Use caspol. If you are the machine administrator, you can operate at the ‘machine’ level - which means not only that the changes you make become the... Read more »

How to set the debug mode? 

Debug Mode for ASP.NET applications - To set ASP.NET appplication in debugging mode, edit the application’s web.config and assign the “debug” attribute... Read more »

What platforms does the .NET Framework run on? 

The runtime supports Windows XP, Windows 2000, NT4 SP6a and Windows ME/98. Windows 95 is not supported. Some parts of the framework do not work on all platforms... Read more »

How do you handle data concurrency in .NET ? 

One of the key features of the ADO.NET DataSet is that it can be a self-contained and disconnected data store. It can contain the schema and data from several rowsets... Read more »

What is WSDL? 

WSDL is the Web Service Description Language, and it is implemented as a specific XML vocabulary. While it’s very much more complex than what can be described... Read more »

What does AspCompat=”true” mean and when should I use it? 

AspCompat is an aid in migrating ASP pages to ASPX pages. It defaults to false but should be set to true in any ASPX file that creates apartment-threaded COM objects–that... Read more »

What is Web Gardening? How would using it affect a design? 

The Web Garden Model: The Web garden model is configurable through the section of the machine.config file. Notice that the section is the only configuration section... Read more »

Can we handle the error and redirect to some pages using web.config? 

Yes, we can do this, but to handle errors, we must know the error codes; only then we can take the user to a proper error message page, else it may confuse the user. CustomErrors... Read more »

What is ViewState? How is it encoded? Is it encrypted? Who uses ViewState? 

ViewState is the mechanism ASP.NET uses to keep track of server control state values that don’t otherwise post back as part of the HTTP form. ViewState Maintains... Read more »

When you’re running a component within ASP.NET, what process is it running within on Windows XP? Windows 2000? Windows 2003? 

On Windows 2003 (IIS 6.0) running in native mode, the component is running within the w3wp.exe process associated with the application pool which has been configured... Read more »

Difference between asp and asp.net?. 

“ASP (Active Server Pages) and ASP.NET are both server side technologies for building web sites and web applications, ASP.NET is Managed compiled code - asp... Read more »

Page 1 of 212»