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
How to register exception filter globally?
What are html helpers in asp.net?
What is data binding in asp net?
How do you implement postback with a text box?
Explain some of the major built-in objects in asp.net
Explain why datareader is useful?
What is use of <% %> in asp.net?
Explain diff. Between friend and protected friend?
Distinguish between Server-side and Client-side code with its functionality?
How are sessions stored?
What is recordset asp?
What is a web api? Which protocol is used in a web api?
What is difference between session and cookies?
How would you create a permanent cookie?
What is the difference between asp.net mvc and asp.net webforms? : asp.net mvc