Dot Net Interview Questions – Set 16

What is the difference between a component and a control? A Component does not draw itself on the form and can be placed below the form area. A control draws itself on the form and can be placed inside the form area. Also, all controls are components, but not all components are controls. What is … Read more

Dot Net Interview Questions – Set 15

What is the difference between Server.Transfer and Response.Redirect? These are used to redirect a user from one web page to the other one. The Response.Redirect method requests a new URL and specifies the new URL. The Server.Transfer method terminates the execution of the current page and starts the execution of a new page. What are … Read more

Dot Net Interview Questions – Set 14

What is .NET? .NET is a framework for software development. It is just like other software development framework like (J2EE). It provides runtime capabilities and a rich set of pre-built functionality in the form of class library and API’s. This .NET framework is an environment to build, deploy and run web services and other applications. … Read more

Dot Net Interview Questions – Set 13

What is MVC? MVC is an architectural model for building the .Net applications. It stands for Model View Controller. It is easy to use and offers full control over the HTML. What is HTTPhandler? HttpHandler is a low level request and response API which is made to service incoming Http request. Every incoming Http request … Read more

Dot Net Interview Questions – Set 12

When break is used inside two nested for loops, control comes out of which loop, the inner or the outer for loop? (I.e. does it break from all the present loops?) It breaks from the inner loop only. What is Marshaling? Marshaling is the process of transforming types in the managed and unmanaged code. Which … Read more