What is CLR ? Differentiate between CLR & CTS.
Answer Posted / narendra
Common Language Runtime. The CLR is a set of standard
resources responsible for execution of code developed using
.NET language. .Net compiler generates intermediate
language
(IL) which is then compiled using JIT to m/c code. It
provides access to common functionalities to all languages
via Base Class Libraries. CLR is replacement to win32
APICross-language integration, especially cross-language
inheritance. Automatic memory management (garbage
collection), which manages object lifetime so that
reference
counting is unnecessary. Self-describing objects, which
make
using Interface Definition Language (IDL) unnecessary. The
ability to compile once and run on any CPU and operating
system that supports the runtime.
Common Language Specification. This is a subset of the CTS
which all .NET languages are expected to support. The idea
is that any program which uses CLS-compliant types can
interoperate with any .NET program written in any language.
In theory this allows very tight interop between different
.NET languages - for example allowing a C# class to inherit
from a VB class.
| Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
Explain asp.net web forms.
Apart from IDE what are the enhancements in asp.net 2.0?
How many types of session in ASP.NET
If I am developing an application that must accomodate multiple security levels though secure login and my asp.net web application is spanned across three web-servers (using round-robin load balancing). What would be the best approach to maintain login-in state for the users?
What tags do you need to add within the asp:datagrid tags to bind columns manually? Give an example.
Explain how is a property designated as read-only?
How does ASP.NET framework maps client side events to Server side events.?
What is base class of button control in .net?
Explain the Order of events in an asp.net page?
What are the main advantages of using asp.net?
How tooltip is set through code-behind in ASP.NET?
How can we create custom controls in asp net?
What is a windows service?
Can I combine classic asp and asp.net pages?
Explain difference between dataset and datareader?