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
What are the built-in objects in asp.net?
What is protected configuration?
What is viewstate? What does the “enableviewstate” property do?
What is actually returned from server to the browser when a browser requests an .aspx file and the file is displayed?
What is the usie of activex control in .net?
How can we pass info between 2 asp.net pages?
how can we create wcf in asp.net and how can we cll that in to asp.net application?plsss tel me each step clearly
Explain significance of routing? : asp.net mvc
Explain difference between friend and protected friend?
What are the disadvantages of view state?
What does mvc represent in asp.net? : asp.net mvc
Take a Large textbox allow to type any data. Task 1:display the count of vowels in a lable on key press event of the textbox Task 2:dispaly count of dates in a lable when dates in following foramats:dd/mm/yy , mm/dd/yy , yy/mm/dd. Task3:compare 2 dates and display both are same or not which dates are in dd/mm/yy and mm/dd/yy farmats.
Explain parts of assembly?
Why mvc is better than asp.net? : Asp.Net MVC
What is asp.net futures?