How is a managed code executed?



How is a managed code executed?..

Answer / hrindows@gmail.com

Execute a Managed code by following these steps:
•Choosing a language compiler depending on the language in which the code is written.
•Converting the above code into Intermediate language by its own compiler.
•The IL is then targeted to CLR which converts the code into native code with the help of JIT.
•Execution of Native code.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net General Interview Questions

Explain why do we use msmq?

0 Answers  


questions on various scenarios on exception handling? like for example.... try { a; b; ...exception occurs here...what happens...will catch execute or will finally execute...will c execute c; } catch { a; b; c; } fianlly { a; b; }

1 Answers   Manhattan,


How can you automatically generate interface for the remotable object in .NET with Microsoft tools?

1 Answers  


Show different types of collection in .NET?

0 Answers   QuestPond,


Should I use readerwriterlock instead of monitor.enter/exit?

0 Answers  


When we use windows api in .net is it managed or unmanaged code?

0 Answers  


What is model-view -controller Architecture?

1 Answers  


What is managed code in .NET?

0 Answers  


How do you define the lease of the object in .net?

0 Answers  


Hi, Requirement is: try { \\SQL Query } catch(Exception i) { print a } catch(SQLQueryException e) { \\SQL Query } Got Exception in "try" block. Which "catch" throws exception and Why??? Please provide the answer in detail.. Thanks for the help!!!

3 Answers   3i Infotech,


Explain how do assemblies find each other?

0 Answers  


Difference between class and interface in .net?

0 Answers  


Categories