What are clr?cts?cls?
Answer Posted / raj
CLR is .NET runtime execution environment. It manages code
verification, code-based security, code execution, memory
management through Garbage Collector. All the code that
runs under the control of CLR is termed as managed code.
Source code is first compiled to MSIL (microsoft
intermediate language) by JIT. Portion of the code is
executed as it is called by JIT compiler. Not all the code
gets executed for the first time. IL code is then converted
to native machine code.
CLS works with CTS to support language interoperability
that target .net. CTS defines predefined datatypes. CLS is
set of standards that all languages target .net must
support. all code must be CLS-compliant code to be able to
interoperable.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Why is xap important?
Explain significance of routing? : asp.net mvc
Explain the difference between server.transfer and response.redirect? Why would I choose one over the other?
How does viewstate work?
How many types of validators are there in asp net?
What is the difference between mechine.config and web.config?
Describe the difference between inline and code behind - which is best in?
What is a pixel url?
Differentiate strong typing and weak typing
Explain the Order of events in an asp.net page?
What is view state management in asp net?
Define tracing.
What is autopostback true?
What is the default authentication mode for asp.net?
What is the mvc model?