What is CLR?

Answers were Sorted based on User's Feedback



What is CLR?..

Answer / guest

CLR means Common Language Runtime.It is Major component of
the .NET frameworkIt provides no of benefits to the
developers such as Exception handling,Security,Debugging
and Versioning...

Is This Answer Correct ?    59 Yes 7 No

What is CLR?..

Answer / guest

Common Language Runtime is Runtime engine which converts
Microsoft Intermediate Language in machine understandable
code, it is similar to JVM in Java

Is This Answer Correct ?    38 Yes 11 No

What is CLR?..

Answer / kamalakannan.a

CLR is an execution engine for .net.It is used to convert
the highlevel language code into MSIL(Microsoft
Intermediate Language).So this MSIL again converted into
m/c language by JIT compiler(Just In Time).

The CLR is the main coponent for .Net framework.So the .Net
framework supports 44 languages.

kamal...

Is This Answer Correct ?    26 Yes 5 No

What is CLR?..

Answer / jasbir singh thakur

Common Language Runtime (CLR)

working of CLR:-

When the .NET program is compiled, the output of the
compiler is not an executable file but a file that contains
a special type of code called the Microsoft Intermediate
Language (MSIL), which is a low-level set of instructions
understood by the common language run time. This MSIL
defines a set of portable instructions that are independent
of any specific CPU. It's the job of the CLR to translate
this Intermediate code into a executable code when the
program is executed making the program to run in any
environment for which the CLR is implemented. And that's
how the .NET Framework achieves Portability. This MSIL is
turned into executable code using a JIT (Just In Time)
complier. The process goes like this, when .NET programs
are executed, the CLR activates the JIT complier. The JIT
complier converts MSIL into native code on a demand basis
as each part of the program is needed. Thus the program
executes as a native code even though it is compiled into
MSIL making the program to run as fast as it would if it is
compiled to native code but achieves the portability
benefits of MSIL.

Is This Answer Correct ?    20 Yes 5 No

What is CLR?..

Answer / anitha

CLR is Comman Language Runtime engine is used to excute the
compiled code.

Is This Answer Correct ?    10 Yes 4 No

What is CLR?..

Answer / rajesh

Common Language Runtime is Runtime engine which converts
Microsoft Intermediate Language in machine understandable
code, it is similar to JVM in Java

Is This Answer Correct ?    1 Yes 0 No

What is CLR?..

Answer / vinay kumar

It provides an environment for the .net applications to run. It also provides functionalities, such as exception handling, security, debugging, and versioning support to the applications.

Is This Answer Correct ?    1 Yes 0 No

What is CLR?..

Answer / shruti kaushik

it is d most important component of .net framwork. it is a
heart & soul of .net architecture. it provide d execution or
run time enviornment to d .net application(c# program,
vb.net program etc...)
there r sm components of clr, dey r as follows:-
1.comman type system (cts)
2.intermediate language (il)
3.exection support function
4.security
5.garbbage collection
6.class loader
7.memory layout
it is also known as .net runtime.....
it cnverts d il into native executable code through jit(just
in tym) compiler........

Is This Answer Correct ?    1 Yes 0 No

What is CLR?..

Answer / balaji karpurapu

CLR means Common Language Runtime it is the heart of .net
framework in simply we can defined as clr manages the
execution of the program.

Is This Answer Correct ?    3 Yes 3 No

What is CLR?..

Answer / amshed

common language runtime .It is used for and its features are Automatic memory management,
standard type system,
Language interoperability,
platform independence,
security management,
Tye security;

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More VB.NET Interview Questions

I'm unable to open a .hlp file using vb.net application.

1 Answers  


How do you call a stored procedure in Visual Basic?

0 Answers   CGI,


difference between control and component more than one differences

0 Answers  


What is the class that allows an element to be accessed using unique key?

0 Answers  


How would you implement inheritance using vb.net?

0 Answers  






In Datagrid after adding row, how you will assign the value for each cell to currently added new row?

2 Answers  


hello friends.. when i deployment my project in the client machine that is successful but whenever i try to run my project using .exe file then it gives me error "<filename>.exe is not a valid win32 application." what i do somebody halp me pls

1 Answers  


when we will use console ?

3 Answers  


What is the difference between a "jagged array" and multidimensional array" ?can anyone show me it practically ?

0 Answers  


Explain nested classes?

0 Answers  


What is the top .net class that everything is derived from?

0 Answers  


Explain about garbage collection?

0 Answers  


Categories