Interview Question
Qus: How is a Managed code executed?
Answers (2)
• Choose a language compiler depending on the language of the code.
• Convert the code into Intermediate language using its own compiler.
• The IL is then targeted to CLR which converts the code into native code using JIT.
• Execution of Native code.