Dot Net Interview Questions


Q#1. What is .Net framework?

Ans. It is a platform for building various applications on windows. It has a list of inbuilt functionalities in the form of class, library, and APIs which are used to build, deploy and run web services and different applications. It supports different languages such as C#, VB .Net, Cobol, Perl, etc.


Q#2. What's the use of Response.Output.Write()?

Ans. We can write formatted output using Response.Output.Write().


Q#3. What are the important components of .Net?

Ans. The components of .Net are Common language run-time, .Net Class library, Application domain, Common Type System, .Net framework, Profiling, etc. However, the two important components are Class library and Common Language Runtime.


Q#4. From which base class all Web Forms are inherited?

Ans. Page class.


Q#5. What is CTS?

Ans. CTS stands for Common Type System. It has a set of rules which state how a data type should be declared, defined and used in the program. It describes the data types that are to be used in the application.


Q#6. Which validator control you use if you need to make sure the values in two different controls matched?

Ans. Compare Validator control.


Q#7. What is meant by Managed and Unmanaged code?

Ans.The code that is managed by the CLR is called Managed code. This code runs inside the CLR. Hence, it is necessary to install the .Net framework in order to execute the managed code. CLR manages the memory through garbage collection and also uses the other features like CAS and CTS for efficient management of the code.