List of Questions Asked in Dot Net Interview What is dot net? Dot net is a software framework developed by Microsoft Corporation . It is pronounced .NET. It runs on Microsoft’s Windows Operating Systems. What are the uses of .NET Framework applications? .NET Framework used to developers for develop, run and deploy the following applications: Console Windows form WPF Web applications Web Services Windows Services WCF service-oriented applications WF workflow-enabled applications What is an IL? IL means Intermediate Language. It is also known as MSIL (Microsoft Intermediate Language) or CIL (Common Intermediate Language). Source code is complied to IL and then converted to machine code at the point where the software installed or at run-time by a JIT compiler. What are boxing and unboxing? Boxing used to convert value types to object. Unboxing used to convert the object back to the value type. Both are the expensive operation. What is garbage collection?...