-
What is "Common Language Runtime" (CLR)?
CLR is .NET equivalent of Java Virtual Machine (JVM). It is the runtime that converts a MSIL code into the host machine language code, which is then executed appropriately. The CLR is the execution engine for .NET Framework applications. It provides a number of services, including: · Code management (loading and execution) · ...
-
What are the Types of Assemblies?
Assemblies are of two types 1. Private Assemblies 2. Shared AssembliesPrivate Assemblies: The assembly is intended only for one application. The files of that assembly must be placed in the same folder as the application or in a sub folder. No other application will be able to make a call to this assembly. The advantage of having a private assembly is that, it makes naming the assembly very...
-
Execute scalar
What is the purpose of Execute scalar method of Command object ?
-
-
-
.Net languages
Name any 6 languages supported by .NET?
-
-
-
-
What is the difference between a namespace and assembly name?
A namespace is a logical naming scheme for types in which a simple type name, such as MyType, is preceded with a dot-separated hierarchical name. Such a naming scheme is completely under control of the developer. For example, types MyCompany.FileAccess.A and MyCompany.FileAccess.B might be logically expected to have functionally related to file access. The .NET Framework uses a hierarchical...
-
Remoting
Explain the concept of Remoting.
-
Class Library
What is Class Library? Define its Benefit?
-
-
-
-
.NET Programming Language
How dot net differs from other programming languages?
-
Manage state of login
If a web application is spread over 3 web servers, than what is be the best approach to manage state of login form?
-
Strong-Typing versus Weak-Typing
What is strong-typing versus weak-typing? Which is preferred? Why?
-
-
DotNet Interview Questions
Ans